-
Notifications
You must be signed in to change notification settings - Fork 51
/
base.css
67 lines (52 loc) · 1.28 KB
/
base.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
QWidget, QMenu {
background-color: rgba(51, 51, 51, 0.3);
}
QMenuBar {
background-color: rgba(51, 51, 51, 1.0);
}
QWidget {
font-size: 14pt;
}
QPushButton {
background-color: rgba(85, 85, 85, 1.0);
color: #eee;
padding: 5px 15px;
border-radius: 5px;
}
QPushButton:hover {
background-color: rgba(119, 119, 119, 1.0);
}
QLabel, QLineEdit, QListWidget, QMenuBar, QMenu::item, QProgressBar, QComboBox, QTableWidget {
color: #eee;
}
QListWidget::item:selected, QListWidget::item:hover, QTableWidget::item:selected, QTableWidget::item:hover {
background-color: rgba(85, 85, 85, 1.0);
color: #eee;
}
QMenuBar::item {
background-color: transparent;
}
QMenuBar::item:selected, QMenu::item:selected {
background-color: rgba(85, 85, 85, 1.0);
}
QComboBox QAbstractItemView {
border: 2px solid darkgray;
background-color: rgba(51, 51, 51, 1.0);
color: #eee
}
QHeaderView::section {
background-color: rgba(51, 51, 51, 1.0);
color: #eee;
padding: 4px;
border: 1px solid #555;
}
QMenuBar:disabled, QMenu:disabled {
background-color: rgba(30, 30, 30, 1.0);
}
QMenu::item:disabled {
color: #3e3c3c;
}
QMenuBar::item:disabled, QMenu::item:disabled {
background-color: rgba(30, 30, 30, 1.0);
color: #717171;
}