-
Notifications
You must be signed in to change notification settings - Fork 37
/
style.css
206 lines (174 loc) · 3.63 KB
/
style.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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
QWidget[class='bar']{
background-color:#d7d7d7;
border:0px solid #d7d7d7;
border-radius:2px;
}
QFrame#vSplit {
margin-top:5px;
margin-bottom:5px;
padding:0px;
color:rgba(0,0,0,10%);
}
QFrame#vSplit2 {
margin:2px;
padding:0px;
color:rgba(0,0,0,10%);
}
QCheckBox {
color:#333333;
}
PenCombobox{
color:#333333;
min-height:23px;
border:0px solid #808080;
border-radius:2;
margin:0px;
padding:0px;
background-color:rgba(255,255,255,60%);
}
PenCombobox::menu-indicator{
margin-right:5px;
subcontrol-position: right center;
image:url(:/images/dropdown.png);
}
SizeInputWidget {
border:0px solid rgba(51,51,51,77);
border-radius:2;
background-color:rgba(255,255,255,60%);
}
QSpinBox {
color:#333333;
font-size:12px;
height:23px;
border-left:1px solid rgba(0,0,0,10%);
border-radius:0;
background-color:rgba(255,255,255,0%);
}
QSpinBox::up-button
{
border-left:1px solid rgba(0,0,0,10%);
padding-left:2px;
padding-right:3px;
subcontrol-origin:border;
subcontrol-position:top right;
image: none;
width: 12px;
background-color:rgba(255,255,255,60%);
}
QSpinBox::down-button
{
border-left:1px solid rgba(0,0,0,10%);
padding-left:2px;
padding-right:3px;
subcontrol-origin:border;
subcontrol-position:bottom right;
image: none;
width: 12px;
background-color:rgba(255,255,255,60%);
}
QSpinBox::up-arrow
{
image:url(:/images/up-arrow.png);
width:14px;
}
QSpinBox::down-arrow
{
image:url(:/images/down-arrow.png);
width:14px;
}
QComboBox{
color:#333333;
font-size:12px;
min-height:23px;
border:1px solid rgba(51,51,51,77);
border-radius:2;
}
QComboBox::drop-down{
border:1px solid #ffffff;
background-color: #ffffff;
margin-right:5px;
subcontrol-position: right center;
image:url(:/images/dropdown.png);
width:16px;
}
QComboBox QScrollBar::vertical{
width:10px;
}
QComboBox QScrollBar::handle::vertical{
width:10px;
border-radius:5px;
}
QComboBox QAbstractItemView
{
selection-background-color:rgb(0,125,255);
}
QComboBox QListWidget::item:selected{background:rgb(0,125,255); }
QPushButton[forTip='mainBtn'] {
font-family:ZenShotIcon;
color:#333333;
font-size:16px; /*15px*/
font-weight:500;
background-color:#d7d7d7;
border: 0px;
margin:0px;
padding:0px;
height:26px;
width:26px;
}
QPushButton[forTip='mainBtn']:hover{
color:#007AFF;
}
QPushButton[forTip='mainBtn']:pressed
background-color:#007AFF;
}
QPushButton[forTip='mainBtn']:checked{
color:#007AFF;
}
QPushButton[forTip='mainBtn']:disabled{
color:rgba(51,51,51,25%);
}
QPushButton[forTip='mainBtnLight'] {
font-family:ZenShotIcon;
color:#007AFF;
font-size:16px; /*15px*/
font-weight:500;
background-color:transparent;
margin:0px;
padding:0px;
height:26px;
width:26px;
}
QPushButton[forTip='mainBtnLight']:hover{
color:#2463C7;
}
SizeButton[forTip='thickness'] {
color:#2f3343;
font-size:22px;
background-color:transparent;
border:1px solid transparent;
margin:0px;
padding:0px;
height:26px;
width:26px;
}
SizeButton[forTip='thickness']:hover{
color:#2f3343;
background-color:#dee1e8;
border:1px solid #9d9fa0;
}
SizeButton[forTip='thickness']:pressed{
color:#2f3343;
background-color:#dee1e8;
border:1px solid #9d9fa0;
}
SizeButton[forTip='thickness']:checked{
color:#2f3343;
background-color:#dee1e8;
border:1px solid #9d9fa0;
}
QPushButton#cancelBtn {
color:#F2453D;
}
/*QPushButton#saveBtn {
color:#1fb41e;
}*/