-
Notifications
You must be signed in to change notification settings - Fork 13
/
style.qss
108 lines (95 loc) · 1.73 KB
/
style.qss
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/* Yara4IDA Stylesheet by Kevin Weatherman */
/* May 30, 2022 */
/* Parent Dialog */
QWidget
{
color: #F2F2F1;
background-color: #303030;
font-family: Noto Sans, Tahoma;
font-size: 13px;
font-style: normal;
}
/* Bottom row push buttons */
/* MD flat style */
QPushButton
{
color: #FFF176;
font-weight: bold;
padding: 7px;
min-width: 37px;
border-style: none;
}
QPushButton:hover
{
background-color: #4A4A4A;
}
QPushButton:pressed
{
background-color: #595959;
}
QPushButton:focus
{
background-color: #4A4A4A;
}
/* "ALT RULES" push button */
QPushButton#pushButton1
{
color: #F2F2F1;
background-color: #3E3E3E;
}
QPushButton#pushButton1:hover
{
background-color: #75726D;
}
QPushButton#pushButton1:pressed
{
background-color: #5E5E5E;
}
QDialogButtonBox
{
/* MD typeically has the cancel/reject button first */
button-layout: 1;
}
/* Version label */
QLabel#versionLabel
{
color: #4A4C56;
font-size: 10px;
background-color: transparent;
}
/* Hyperlink */
/* The actual link color is set inside the link text, see UI file */
QLabel#linkLabel
{
height: 50px;
}
/* Despite what the Qt docs says ':hover' does work, albeit with limited control */
QLabel#linkLabel:hover
{
background-color: #4A4A4A;
}
/* Check boxes */
QCheckBox::indicator
{
background-color: #303030;
border: 2px solid #777777;
border-radius: 1px;
width: 10px;
height: 10px;
}
QCheckBox::indicator:checked
{
border: 2px solid #F2F2F1;
border-radius: 1px;
width: 10px;
height: 10px;
image: url(:/template/checkbox-checked.png);
}
QCheckBox::hover
{
background-color: #4A4A4A;
}
QCheckBox::indicator:unchecked:hover
{
background-color: #4A4A4A;
}