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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
|
/*
background darker = #004646
background dark and slighly darker = #007A7A
background dark = #006666
background normal and slighly darker = #008F8F
background normal = #00B8B8
background light = #EBFFFF
background lighter = #ffffff
lists background = #006666
lists background (alternate) = #008F8F
lists backgrounds selection = #00E0E0
foreground = black
selection darker = #004646
selection dark = #006666
selection normal = #008F8F
selection inbetween normal and light = #00B8B8 (used to build SpinBoxes)
selection light = #00E0E0
selection lighter = #D6FFFF
*/
QLineEdit {
color: #ffffff;
background-color: #b6b6b6;
selection-color: black;
selection-background-color: #00E0E0;
/* Padding and margin defined */
border-style: solid;
border: 1px solid #b6b6b6; /* border top color defined after QAbstractSpinBox, QLineEdit and QComboBox */
border-top-color: #a2a2a0; /* Creates an inset effect inside the elements */
padding: 2px 6px 2px 6px; /* This makes text colour work on QComboBox */
margin: 0px 2px 0px 2px;
border-radius: 3px;
}
QLineEdit:focus{
border-color: #7cabf9;
}
TabBarPlus {
qproperty-drawBase: 0;
left: 5px;
background-color: transparent;
font-size: 15px;
}
TabBarPlus:focus {
border: 0px transparent black;
}
TabBarPlus::close-button {
background-image: url(:/closeIcon);
padding: 0px;
margin: 0px;
border-radius: 2px;
background-position: center center;
background-repeat: none;
}
TabBarPlus::close-button:hover {
background-color: #006666;
}
TabBarPlus::close-button:pressed {
background-color: #adc5ed;
}
TabBarPlus::scroller { /* the width of the scroll buttons */
width: 20px;
}
TabBarPlus::tab:top,
TabBarPlus::tab:bottom {
color: black;
border: 1px solid #b6b6b6;
border-left-color: #e6e6e6;
border-right-width: 0px;
background-color: white;
padding:5px 15px;
width: 100px;
}
TabBarPlus::tab:top:first,
TabBarPlus::tab:bottom:first {
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
TabBarPlus::tab:top:last,
TabBarPlus::tab:bottom:last {
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
border-right-width: 1px;
}
TabBarPlus::tab:top:selected,
TabBarPlus::tab:bottom:selected {
color: white;
background-color: qlineargradient(spread:pad, x1:1, y1:0.545, x2:1, y2:0, stop:0 #00b0b0, stop:1 #00BaBa);
border-color: #006666;
}
TabBarPlus::tab:top:!selected:hover,
TabBarPlus::tab:bottom:!selected:hover {
color: black;
}
TabBarPlus::tab:top:only-one ,
TabBarPlus::tab:bottom:only-one {
border: 1px solid #1b3774;
border-radius: 6px;
}
FileWindow {
border-width: 2px;
outline: 0;
color: white;
background-color: white;
}
FileWindow::title{
color: black;
border-width: 0px;
text-align: center;
background-color: white;
}
FileWindow::close-button {
padding: 0px;
margin: 0px;
border-radius: 2px;
background-position: center center;
background-repeat: none;
}
FileWindow::close-button:hover {
background-color: #004646;
}
FileWindow::close-button:pressed {
background-color: #adc5ed;
}
QMainWindow {
background-color: white;
}
QDockWidget#Title {
background-color: #004646;
}
QDockWidget#Toolbar{
background-color: white;
border: 1px solid #e6e6e6;
}
QDockWidget::float-button {
border: 1px transparent #e6e6e6;
border-radius: 2px;
background: transparent;
subcontrol-origin: padding;
subcontrol-position: right center;
right: 4px;
}
QDockWidget::float-button:hover {
background: #f5f5f5;
}
QDockWidget::float-button:pressed {
background-color: #e0e0e0;
}
QScrollArea{
border-style: none;
border-width: 0px;
}
QWidget#ToolbarScrollWidget {
background-color: white;
}
QToolButton {
color: #f2f2f2;
text-align: center;
background-color: rgba(213, 213, 213, 0);
border: 0px solid #828282;
outline: none;
border-radius: 8px;
}
QToolButton:hover,
QToolButton:focus {
color: black;
border: 3px solid #00BaBa;
}
QToolButton:disabled,
QToolButton:disabled:checked {
color: #b6b6b6;
background-color: #e6e6e6;
border-color: #b6b6b6;
}
QToolButton:pressed {
border-color: #004646;
}
QToolButton:checked {
background-color: #006666;
border-color: #004646;
}
SectionLabel{
border-color: #00B8B8;
border-style: solid;
border-width: 0px 0px 2px 0px;
padding-bottom: 3px;
margin-bottom: 3px;
margin-top: 10px;
text-align: left;
font-size: 20px;
color: gray;
}
SectionLabel:first{
margin-top: 0px;
}
CustomView QPushButton{
background-color: rgba(214, 54, 40, 50%);
border: 1px dashed white;
border-radius: 2px;
font-size: 18px;
font-weight: Bold;
padding: 1px 2px 3px 3px;
color: rgba(255, 255, 255, 50%);
}
CustomView QPushButton:Hover{
background-color: rgba(214, 54, 40, 90%);
}
CustomTabWidget QPushButton{
background: rgba(230, 230, 227, 0%);
padding: 1px;
border: 0px solid #E6E6E3;
border-radius: 10px;
}
CustomTabWidget QPushButton:hover{
background: rgba(230, 230, 227, 60%);
}
CustomTabWidget::pane {
margin: 0px,1px,1px,1px;
border: 2px solid #E6E6E3;
border-radius: 7px;
padding: 1px;
background-color: #E6E6E3;
}
canvas{
bottom: -20px;
}
CustomTabWidget CustomView {
border-width: 0px;
padding: 5px;
border-radius: 2px;
}
QHeaderView {
qproperty-defaultAlignment: AlignHCenter;
}
QHeaderView::section {
padding: 4px;
border-style: none;
background-color: white;
}
QTableView {
border: none;
}
QTableView::item {
border: none;
color: black;
}
QTableView::item:selected {
background-color: transparent;
color: black;
}
|