-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.qss
More file actions
53 lines (44 loc) · 810 Bytes
/
style.qss
File metadata and controls
53 lines (44 loc) · 810 Bytes
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
QWidget {
background-color: #fafafa;
}
QLabel {
color: black;
}
QLineEdit {
background-color: white;
border: 1px solid gray;
border-radius: 4px;
padding: 4px;
color: black;
}
QPushButton {
background-color: #28a428;
color: white;
border-radius: 5px;
padding: 6px;
}
QPushButton:hover {
background-color: #66e066
}
QListWidget {
background-color: #f9f9f9;
border-top: 1px solid #ccc;
color: black;
}
QComboBox {
border: 1px solid #ccc;
border-radius: 4px;
padding: 6px;
background-color: white;
color: black;
font-size: 14px;
}
QComboBox::drop-down {
color: black;
}
QComboBox QAbstractItemView {
background-color: white;
color: black;
selection-background-color: #0078d7;
selection-color: white;
}