-
-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathstyle.css
More file actions
564 lines (458 loc) · 10.2 KB
/
Copy pathstyle.css
File metadata and controls
564 lines (458 loc) · 10.2 KB
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
QWidget {
background-color: #DFE1E5;
color: #202124;
}
/* ------------------------------------
The topBar
*/
TopWidget {
min-height: 48px;
max-height: 48px;
margin: 0;
padding: 5px;
border: none;
border-bottom: 1px solid #DADCE0;
background-color: #FFFFFF;
}
TopWidget::separator {
background: none;
border: none;
width: 40px;
}
QToolButton {
background: none;
height: 40px;
width: 40px;
border: none;
}
SearchBar {
background-color: #F1F3F4;
margin: 2px; /* XXX: duplicated in css_constants.h */
border: none;
border-radius: 18px;
max-height: 36px;
}
SearchBar > QLabel#searchIcon {
padding: 0;
border: none;
background-color: transparent;
margin: 0px 6px;
max-height: 36px;
max-width: 36px;
}
SearchBar > SearchBarLineEdit {
background-color: transparent;
margin: 0;
padding: 0;
color: #3C4043;
border: none;
font-size: 15px;
max-height: 36px;
}
SearchBar > QToolButton {
padding: 0;
border: none;
background-color: transparent;
max-height: 36px;
max-width: 36px;
border-radius: 18px;
}
SearchBar > QToolButton:pressed,
SearchBar > QToolButton:hover {
background-color: #E8EAED;
}
MultiZimButton QListWidget {
border: 0px;
outline: 0px;
padding: 5px 0px; /* XXX: duplicated in css_constants.h */
background-color: white;
}
MultiZimButton QListWidget::item {
padding: 0px 5px; /* XXX: duplicated in css_constants.h */
border: 1px solid transparent; /* XXX: duplicated in css_constants.h */
background-color: white;
}
MultiZimButton QListWidget::item:hover,
MultiZimButton QListWidget::item:selected:active {
border: 1px solid #3366CC;
background-color: #D9E9FF;
}
MultiZimButton QScrollBar {
width: 5px; /* XXX: duplicated in css_constants.h */
border: none;
outline: none;
}
MultiZimButton QScrollBar::handle {
background-color: grey;
}
ZimItemWidget * {
background-color: transparent;
}
ZimItemWidget QLabel {
font-size: 16px;
line-height: 24px; /* XXX: duplicated in css_constants.h */
}
ZimItemWidget QRadioButton::indicator {
image: none;
}
ZimItemWidget QRadioButton::indicator:checked {
image: url(:/icons/tick.svg);
}
TopWidget QToolButton:pressed,
TopWidget QToolButton::hover {
background-color: rgba(0, 0, 0, 0.06);
border-radius: 20px;
border: none;
}
TopWidget QToolButton::menu-button {
width: 100%;
background: rgba(0, 0, 0, 0);
}
TopWidget QToolButton::menu-arrow {
image: none;
}
TopWidget QToolButton::menu-indicator {
width: 0; /* it can be hidden at all by setting 0px */
height: 0;
subcontrol-origin: padding;
}
TopWidget QToolButton#backButton {
margin-left: 6px; /* XXX: duplicated in css_constants.h */
}
TopWidget QToolButton#fullScreenButton {
margin-right: 6px;
}
/* ----------------------------------------
Menu
*/
QMenu {
border: none;
min-width: 320px;
}
QMenu::item {
min-width: 320px;
min-height: 40px;
max-height: 40px;
border: 1px solid transparent;
padding: 2px 12px 2px 40px; /* top right bottom left */
}
QMenu::icon {
min-width: 40px;
min-height: 40px;
}
QMenu::item:selected {
background-color: #D9E9FF;
border: 1px solid #3366CC;
}
QMenu::item:disabled {
color: gray;
}
MainMenu::indicator {
color: #666666;
width: 13px;
height: 13px;
}
WebViewForwardMenu::item, WebViewBackMenu::item {
padding: 2px 12px;
}
WebViewForwardMenu::icon, WebViewBackMenu::icon {
min-width: 2px;
min-height: 2px;
}
/* -----------------------------------------
TabWidget
*/
QTabBar {
font-size: 15px;
icon-size: 20px;
border: none;
background-color: transparent;
}
QTabBar::tear {
width: 0px;
height: 0px;
border: none;
}
QTabWidget::pane {
top: 0px;
border: none;
}
QTabBar::tab {
background-color: transparent;
border: none;
border-top-left-radius: 12px;
border-top-right-radius: 12px;
padding: 8px 16px;
margin-right: 2px;
margin-top: 6px;
min-width: 120px;
}
QTabBar::tab:hover {
background-color: rgba(255, 255, 255, 0.5);
}
QTabBar::tab:selected {
background-color: #FFFFFF;
color: #202124;
}
#closeTabButton, #newTabButton {
font-size: 20px;
width: 28px; min-width: 28px; max-width: 28px;
height: 28px; min-height:28px; max-height:28px;
border-radius: 14px;
}
#nextTabButton, #prevTabButton, #newTabSideButton {
border: none;
background: transparent;
}
#closeTabButton:hover, #newTabButton:hover,
#nextTabButton:hover, #prevTabButton:hover,
#newTabSideButton:hover {
background-color: rgba(0, 0, 0, 0.08);
border-radius: 14px;
border: none;
}
QTabBar::scroller {
width: 0px;
height: 0px;
/* Last tab size is off by 1 if border not set. */
border: 1px solid transparent;
}
/* -----------------------------------------
TabWidget
*/
#aboutText {
padding: 20px;
background-color: white;
}
/* ----------------------------------------
Find Search page
*/
#FindInPageBar {
border-top: 1px solid #ccc;
}
#findEdit {
background-color: white;
padding: 2px;
max-height: 36px;
color: #666;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 0;
}
#fNextButton,
#fPreviousButton,
#hideButton {
outline: none;
max-height: 36px;
max-width: 36px;
border: 1px solid #ccc;
border-radius: 0;
}
#fNextButton:pressed,
#fPreviousButton:pressed,
#hideButton:pressed {
background-color: #D9E9FF;
border: 1px solid #3366CC;
}
/* ----------------------------------------
Find Search page
*/
#contentmanagerside QWidget {
background-color: white;
outline: none;
}
#contentmanagerside QRadioButton,
#contentmanagerside QCheckBox {
padding: 10px;
}
#contentmanagerside QRadioButton:checked {
border: none;
}
#contentmanagerside QRadioButton::indicator {
image: none;
}
#contentmanagerside QCheckBox::indicator {
image: none;
}
#contentmanagerside QListWidget {
border: none;
padding-left: 30px;
show-decoration-selected: 0;
}
#contentTypeSelector QCheckBox {
padding: 0;
}
#categorySelector QScrollBar,
#languageSelector QScrollBar {
width: 5px;
border: none;
outline: none;
}
#categorySelector QScrollBar::handle,
#languageSelector QScrollBar::handle {
background-color: grey;
}
#categorySelector::item:selected,
#languageSelector::item:selected {
background-color: white;
color: black;
outline: none;
}
#contentTypeAllButton,
ContentTypeFilter {
spacing: 10;
}
#tableofcontentbar {
background-color: white;
}
#tableofcontentbar QTreeWidget,
#tableofcontentbar QLabel,
#tableofcontentbar QFrame {
background-color: white;
}
#tableofcontentbar QTreeWidget {
outline: none;
}
#tableofcontentbar QTreeWidget::item {
height: 26px;
padding: 0px 10px;
outline: none;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
}
#tableofcontentbar QTreeWidget::item:selected,
#tableofcontentbar QTreeWidget::item:hover {
outline: none;
border-top: 1px solid #3366CC;
border-bottom: 1px solid #3366CC;
background-color: #D9E9FF;
color: black;
}
#tableofcontentbar QTreeWidget::branch:selected,
#tableofcontentbar QTreeWidget::branch:hover {
outline: none;
border-top: 1px solid #3366CC;
border-bottom: 1px solid #3366CC;
background-color: #D9E9FF;
}
#tableofcontentbar QTreeWidget::branch {
image: none;
}
#tableofcontentbar #titleLabel {
padding: 0px;
margin: 10px;
}
#tableofcontentbar #hideLabel {
margin: 13px 10px 10px; /* 3px to match bottom with titleLabel */
}
#tableofcontentbar QScrollBar {
width: 5px;
border: none;
outline: none;
}
#tableofcontentbar QScrollBar::handle {
background-color: grey;
}
/*this selector worked after changing class ReadingListBar to a QFrame instead of QWidget in readinglistbar.h file*/
#readinglistbar {
background-color: white;
}
#readinglistbar QPushButton::menu-indicator {
width: 0;
height: 0;
}
#readinglistbar QTreeWidget,
#readinglistbar QLabel,
#readinglistbar QFrame,
#readinglistbar QListWidget,
#readinglistbar QPushButton {
background-color: white;
}
#readinglistbar QPushButton{
margin: 13px 10px 10px;
}
#readinglistbar QListWidget {
outline: none;
}
#readinglistbar QListWidget::item,
#readinglistbar QListWidget::item:selected{
height: 26px;
padding: 0px 10px;
outline: none;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
color: black;
}
#readinglistbar QListWidget::item:hover {
outline: none;
border-top: 1px solid #3366CC;
border-bottom: 1px solid #3366CC;
background-color: #D9E9FF;
color: black;
}
#readinglistbar #titleLabel {
padding: 0px;
margin: 10px;
}
#readinglistbar QScrollBar {
width: 5px;
border: none;
outline: none;
}
#readinglistbar QScrollBar::handle {
background-color: grey;
}
#readinglistbar QLabel#titleLabel {
font-family: "Selawik";
font-size: 24px; /*equivalent to font-size 18*/
font-weight: 500; /*equivalent to font-weight medium*/
}
/* ----------------------------------------
Text to Speech Page
*/
TextToSpeechBar {
border-top: 1px solid #ccc;
}
TextToSpeechBar #closeButton {
outline: none;
max-height: 36px;
max-width: 36px;
border: 1px solid #ccc;
border-radius: 0;
}
TextToSpeechBar #stopButton {
outline: none;
max-height: 36px;
padding: 0px 10px;
background-color: white;
border: 1px solid #ccc;
border-radius: 0;
}
TextToSpeechBar #stopButton:hover {
background-color: #D9E9FF;
border: 1px solid #3366CC;
}
TextToSpeechBar #stopButton:disabled {
color: grey;
background-color: darkgrey;
}
TextToSpeechBar QComboBox::drop-down {
height: 22px;
width: 15px;
padding: 0px 2px;
margin: 0px;
image: url(":/icons/drop-down.svg");
background-color: white;
}
TextToSpeechBar QComboBox {
background-color: white;
border: 1px solid #ccc;
}
TextToSpeechBar QAbstractItemView QScrollBar {
width: 5px;
border: none;
outline: none;
}
TextToSpeechBar QAbstractItemView QScrollBar::handle {
background-color: grey;
}