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
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
|
/*!*************************************
Skyrim
****************************************
Author: chintsu_kun
Version: 2.1.0
Licence: GNU General Public License v3.0 (https://www.gnu.org/licenses/gpl-3.0.en.html)
Url: https://github.com/nikolay-borzov/modorganizer-themes
****************************************
*/
/* For some reason applying background-color or border fixes paddings properties */
QListWidget::item {
border-width: 0; }
/* Don't override install label on download widget.
MO2 assigns color depending on download state */
#installLabel {
color: none; }
/* Make `background-color` work for :hover, :focus and :pressed states */
QToolButton {
border: none; }
QWidget {
background-color: #000;
color: #F1F1F1; }
* {
/* Remove outline */
outline: 0;
/* Text highlight */
selection-background-color: #000;
selection-color: white; }
/* Disabled text */
*:disabled,
QListView::item:disabled,
*::item:selected:disabled {
color: #656565; }
/* Line heights */
QListView::item,
QTreeWidget::item,
QTreeView::item {
padding: 0.3em 0; }
/* Increase row height to fit inputs */
#modList::item,
#settingsTree::item,
#pluginSettingsList::item,
#espList::item,
#savegameList::item {
min-height: 34px;
padding: 0; }
#modList::item QComboBox,
#modList::item QLineEdit,
#modList::item QComboBox:editable,
#modList::item QAbstractSpinBox,
#settingsTree::item QComboBox,
#settingsTree::item QLineEdit,
#settingsTree::item QComboBox:editable,
#settingsTree::item QAbstractSpinBox,
#pluginSettingsList::item QComboBox,
#pluginSettingsList::item QLineEdit,
#pluginSettingsList::item QComboBox:editable,
#pluginSettingsList::item QAbstractSpinBox,
#espList::item QComboBox,
#espList::item QLineEdit,
#espList::item QComboBox:editable,
#espList::item QAbstractSpinBox {
margin: 2px; }
QAbstractItemView {
color: #C0C0C0;
background-color: #000;
alternate-background-color: #000;
border-color: #999; }
QAbstractItemView,
QListView,
QTreeView {
show-decoration-selected: 1; }
QAbstractItemView[filtered=true] {
background-color: #f00 !important;
}
QAbstractItemView::item:hover,
QListView::item:hover,
QTreeView::branch:hover,
QTreeWidget::item:hover {
color: #fff;
background-color: #121212; }
QAbstractItemView::item:selected:disabled,
QListView::item:selected:disabled,
QTreeView::branch:selected:disabled,
QTreeWidget::item:selected:disabled {
background-color: #121212; }
QAbstractItemView::item:selected {
background-color: #5F5F5E;
color: #fff; }
/* Trees and Lists #QTreeView, #QListView*/
QTreeView::branch:selected {
background-color: #5F5F5E; }
QTreeView::branch:closed:has-children {
image: url(./skyrim/arrow-right.png); }
QTreeView::branch:open:has-children {
image: url(./skyrim/branch-opened.png); }
QListView::item {
color: #C0C0C0; }
/* Text areas and text fields #QTextEdit, #QLineEdit, #QWebView */
QLabel {
background-color: transparent; }
LinkLabel {
qproperty-linkColor: #3399FF; }
/* Font size */
QLabel,
QTextEdit,
QLineEdit,
QWebView,
QComboBox,
QComboBox:editable,
QAbstractSpinBox,
QGroupBox,
QCheckBox,
QRadioButton {
font-size: 14px; }
/* Inputs */
QTextEdit,
QLineEdit,
QWebView,
QComboBox,
QComboBox:editable,
QAbstractSpinBox {
min-height: 24px;
border: none;
background-color: #141414;
padding: 3px 5px; }
QTextEdit:hover, QTextEdit:focus,
QLineEdit:hover,
QLineEdit:focus,
QWebView:hover,
QWebView:focus,
QComboBox:hover,
QComboBox:focus,
QComboBox:editable:hover,
QComboBox:editable:focus,
QAbstractSpinBox:hover,
QAbstractSpinBox:focus {
background-color: #212121; }
QLineEdit {
margin-top: 0;
/* Clear button */
/* Increase version text field width */
/* Fix margins on tabs pane */ }
QLineEdit QToolButton,
QLineEdit QToolButton:hover {
background: none;
margin-top: 1px; }
QLineEdit#espFilterEdit QToolButton {
margin-top: -2px;
margin-bottom: 1px; }
QLineEdit#modFilterEdit {
margin-top: 2px; }
QLineEdit#versionEdit {
max-width: 90px; }
QLineEdit#espFilterEdit {
margin: 0 0 6px 0; }
QLineEdit#downloadView {
margin: 4px 4px 0 4px; }
QLineEdit#showHiddenBox {
margin: 0 0 4px 4px; }
QLineEdit#downloadFilterEdit {
margin: 0 4px 4px 0; }
/* Drop-downs #QComboBox*/
QComboBox {
padding-left: 5px;
margin: 3px 0 1px 0; }
QComboBox:on {
background-color: #212121; }
QComboBox:editable {
padding-left: 3px; }
QComboBox::drop-down {
width: 20px;
subcontrol-origin: padding;
subcontrol-position: top right;
border: none; }
QComboBox::down-arrow {
image: url(./skyrim/arrow-down.png); }
QComboBox QAbstractItemView {
background-color: #000;
selection-background-color: #212121; }
/* Toolbar */
QToolBar {
border: none; }
QToolBar::separator {
image: url(./skyrim/separator.png); }
QToolButton {
margin: 0 4px 0 4px;
padding: 5px;
/* Scrollers */ }
QToolButton:hover, QToolButton:focus {
background-color: #121212; }
QToolButton:pressed {
background-color: #5F5F5E; }
QToolButton::menu-indicator {
image: url(./skyrim/arrow-down.png);
margin: 0 4px 4px 0; }
QToolButton::menu-indicator:pressed, QToolButton::menu-indicator:open {
image: url(./skyrim/arrow-right.png); }
QTabBar QToolButton {
background-color: #000;
padding: 1px;
margin: 0; }
QTabBar QToolButton::right-arrow {
image: url(./skyrim/arrow-right.png); }
QTabBar QToolButton::left-arrow {
image: url(./skyrim/arrow-left.png); }
/* Group Boxes #QGroupBox */
QGroupBox {
padding: 1em .3em .3em .3em;
margin-top: .65em;
border: 1px solid #999; }
QGroupBox::title {
subcontrol-origin: margin;
subcontrol-position: top left;
padding: 5px;
left: 10px; }
/* LCD Count */
QLCDNumber {
border-color: #999;
border-style: solid;
border-width: 1px; }
/* Buttons #QPushButton */
QPushButton {
min-height: 18px;
padding: 2px 5px;
border-style: solid;
background-color: transparent;
border-width: 0 15px 0 15px;
border-color: transparent;
/* Dialog buttons */
/* Show categories */
/* Run */
/* Mod info dialog images tab */ }
QPushButton:hover, QPushButton:checked:hover {
border-image: url(./skyrim/button-border.png) 0 15 no-repeat; }
QPushButton:checked {
border-image: url(./skyrim/button-checked-border.png) 0 15 repeat; }
QPushButton:disabled {
color: #656565; }
QPushButton::menu-indicator {
image: url(./skyrim/arrow-down.png);
subcontrol-origin: padding;
subcontrol-position: center right;
padding-right: 5%; }
QDialog QPushButton {
font-weight: bold;
font-size: 15px;
min-width: 1.5em;
padding-left: .5em;
padding-right: .5em; }
QPushButton#displayCategoriesBtn {
min-width: 20px; }
QPushButton#startButton:hover {
border-image: url(./skyrim/button-big-border.png) 0 15 repeat; }
QPushButton#startButton:checked {
border-image: url(./skyrim/button-big-border.png) 0 15 repeat; }
QPushButton#unlockButton {
margin: 10px 20px; }
QPushButton + QPushButton {
margin: 10px 0 0 0; }
#tabImages QPushButton {
background-color: transparent;
border: none;
margin: 0 .3em;
padding: 0; }
#tabImages QPushButton:hover {
background-color: #121212; }
#settingsTree::item QPushButton {
border-image: none; }
/* Check boxes and Radio buttons common #QCheckBox, #QRadioButton */
QGroupBox::indicator,
QTreeView::indicator,
QCheckBox::indicator {
background-color: transparent;
border: none;
width: 20px;
height: 20px; }
QGroupBox::indicator:checked, QGroupBox::indicator:indeterminate,
QTreeView::indicator:checked,
QTreeView::indicator:indeterminate,
QCheckBox::indicator:checked,
QCheckBox::indicator:indeterminate {
image: url(./skyrim/checkbox-checked.png); }
QGroupBox::indicator:checked:hover, QGroupBox::indicator:indeterminate:hover,
QTreeView::indicator:checked:hover,
QTreeView::indicator:indeterminate:hover,
QCheckBox::indicator:checked:hover,
QCheckBox::indicator:indeterminate:hover {
image: url(./skyrim/checkbox-checked-hover.png); }
QGroupBox::indicator:checked:disabled, QGroupBox::indicator:indeterminate:disabled,
QTreeView::indicator:checked:disabled,
QTreeView::indicator:indeterminate:disabled,
QCheckBox::indicator:checked:disabled,
QCheckBox::indicator:indeterminate:disabled {
image: url(./skyrim/checkbox-checked-disabled.png); }
QGroupBox::indicator:unchecked,
QTreeView::indicator:unchecked,
QCheckBox::indicator:unchecked {
image: url(./skyrim/checkbox.png); }
QGroupBox::indicator:unchecked:hover,
QTreeView::indicator:unchecked:hover,
QCheckBox::indicator:unchecked:hover {
image: url(./skyrim/checkbox-hover.png); }
QGroupBox::indicator:unchecked:disabled,
QTreeView::indicator:unchecked:disabled,
QCheckBox::indicator:unchecked:disabled {
image: url(./skyrim/checkbox-disabled.png); }
/* Check boxes special */
QTreeWidget#bsaList::indicator {
width: 10px;
height: 15px; }
QTreeWidget#bsaList::indicator:checked {
image: url(./skyrim/checkbox-alt-checked.png); }
QTreeWidget#bsaList::indicator:unchecked {
image: url(./skyrim/checkbox-alt-unchecked.png); }
QTreeWidget#bsaList::indicator:unchecked:hover {
image: url(./skyrim/checkbox-alt-unchecked-hover.png); }
/* Radio buttons #QRadioButton */
QRadioButton::indicator {
width: 16px;
height: 16px; }
QRadioButton::indicator::checked {
image: url(./skyrim/radio-checked.png); }
QRadioButton::indicator::unchecked {
image: url(./skyrim/radio.png); }
QRadioButton::indicator::unchecked:hover {
image: url(./skyrim/radio-hover.png); }
/* Spinners #QSpinBox, #QDoubleSpinBox */
QAbstractSpinBox {
margin: 1px; }
QAbstractSpinBox::up-button, QAbstractSpinBox::down-button {
border-style: solid;
border-width: 1px;
subcontrol-origin: padding; }
QAbstractSpinBox::up-button:hover, QAbstractSpinBox::down-button:hover {
background-color: #141414; }
QAbstractSpinBox::up-button {
subcontrol-position: top right; }
QAbstractSpinBox::down-button {
subcontrol-position: bottom right; }
QAbstractSpinBox::up-arrow {
image: url(./skyrim/arrow-up.png); }
QAbstractSpinBox::down-arrow {
image: url(./skyrim/arrow-down.png); }
/* Scroll Bars #QAbstractScrollArea, #QScrollBar*/
/* Assigning background still leaves not filled area */
QAbstractScrollArea::corner {
background-color: transparent; }
QScrollBar {
background-color: transparent;
border: none;
/* Since QTextEdit:hover doesn't work set focus input background */ }
QScrollBar:horizontal {
height: 12px;
border: none;
margin: 0 17px 0 17px; }
QScrollBar:vertical {
width: 12px;
border: none;
margin: 17px 0 17px 0; }
QScrollBar::handle {
border: 1px solid rgba(243, 243, 243, 0.88);
background-color: rgba(255, 255, 255, 0.6); }
QScrollBar::handle:horizontal {
min-width: 32px;
margin: 1px 0 1px 0; }
QScrollBar::handle:vertical {
min-height: 32px;
margin: 0 1px 0 1px; }
QScrollBar::add-line, QScrollBar::sub-line {
background-color: transparent;
border: none;
subcontrol-origin: margin; }
QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal {
width: 17px; }
QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical {
height: 17px; }
QScrollBar::add-line:horizontal {
subcontrol-position: right; }
QScrollBar::add-line:vertical {
subcontrol-position: bottom; }
QScrollBar::sub-line:horizontal {
subcontrol-position: left; }
QScrollBar::sub-line:vertical {
subcontrol-position: top; }
QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal {
background: url(./skyrim/scrollbar-horizontal.png) center center repeat-x; }
QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
background: url(./skyrim/scrollbar-vertical.png) center center repeat-y; }
QScrollBar::up-arrow:vertical {
image: url(./skyrim/scrollbar-up.png); }
QScrollBar::down-arrow:vertical {
image: url(./skyrim/scrollbar-down.png); }
QScrollBar::right-arrow:horizontal {
image: url(./skyrim/scrollbar-right.png); }
QScrollBar::left-arrow:horizontal {
image: url(./skyrim/scrollbar-left.png); }
QTextEdit QScrollBar::up-arrow:vertical,
QTextEdit QScrollBar::down-arrow:vertical,
QTextEdit QScrollBar::right-arrow:horizontal,
QTextEdit QScrollBar::left-arrow:horizontal {
background-color: #212121; }
/* Scroll Area #QScrollArea*/
QScrollArea {
border-color: transparent;
border-style: solid;
border-width: 1px; }
/* Sliders #QSlider */
QSlider::groove:horizontal {
background: url(./skyrim/scrollbar-horizontal.png) repeat-x;
border-style: solid;
border-width: 0 17px;
border-color: transparent;
height: 12px;
margin: 0;
border-image: url(./skyrim/slider-border.png) 0 17 round; }
QSlider::handle:horizontal {
background: url(./skyrim/slider-handle.png);
width: 18px;
height: 20px;
margin: -4px 0;
subcontrol-origin: margin; }
/* Header Rows and Tables (Configure Mod Categories) #QTableView, #QHeaderView */
QTableView {
gridline-color: transparent;
selection-background-color: #5F5F5E;
selection-color: #C0C0C0; }
QTableView QTableCornerButton::section {
background-color: transparent;
border-color: #999;
border-style: solid;
border-width: 0 1px 1px 0; }
QHeaderView {
border: none; }
QHeaderView::section {
background-color: transparent;
border-color: #999;
/* 17px to have some place for sort indicator */
padding: 3px 17px 3px 5px;
border-style: solid; }
QHeaderView::section:horizontal {
border-width: 0 0 1px 0; }
QHeaderView::section:vertical {
border-width: 0 1px 0 0; }
QHeaderView::section:hover {
background: #121212;
color: #fff; }
QHeaderView::up-arrow, QHeaderView::down-arrow {
subcontrol-origin: content;
subcontrol-position: center right;
width: 7px;
height: 7px;
margin-right: 7px; }
QHeaderView::up-arrow {
image: url(./skyrim/arrow-up.png); }
QHeaderView::down-arrow {
image: url(./skyrim/arrow-down.png); }
/* Context menus, toolbar drop-downs #QMenu */
QMenuBar {
background-color: #000;
}
QMenuBar::item:selected {
background-color: #121212;
}
QMenu {
background-color: transparent; }
QMenu::item,
QMenu QPushButton {
padding: 6px 20px; }
QMenu::item:selected {
background-color: #121212; }
QMenu::item:disabled {
background-color: transparent; }
QMenu::separator {
height: 3px;
margin: 1px 0;
background: url(./skyrim/context-menu-separator.png) repear-x; }
QMenu::icon {
margin: 1px; }
QMenu::right-arrow {
image: url(./skyrim/arrow-right.png);
subcontrol-origin: padding;
subcontrol-position: center right;
padding-right: .5em; }
QMenu QPushButton {
/* Cancel styles */
border: none;
text-align: left; }
QMenu QPushButton:hover {
background-color: #121212; }
QMenu QCheckBox,
QMenu QRadioButton {
background-color: transparent;
padding: 5px 2px; }
/* Tool tips #QToolTip, #SaveGameInfoWidget */
QToolTip {
background-color: transparent;
color: #C0C0C0;
padding: 0; }
SaveGameInfoWidget {
background-color: #121212;
color: #C0C0C0; }
QStatusBar::item {border: None;}
/* Progress Bars (Downloads) #QProgressBar */
QProgressBar {
background-color: transparent;
color: transparent;
height: 14px;
margin: 0 0px;
border-width: 4px 21px;
border-style: solid;
border-color: transparent;
border-image: url(./skyrim/progress-bar-border.png) 4 21 repeat repeat; }
QProgressBar::chunk {
background: url(./skyrim/progress-bar-chunk.png) center center repeat-x qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 #95BED9, stop:0.78781 #6EB9CE); }
DownloadListView[downloadView=standard]::item {
padding: 15px;
}
DownloadListView[downloadView=compact]::item {
padding: 4px;
}
/* Right Pane and Tab Bars #QTabWidget, #QTabBar */
QTabWidget::pane {
border: none;
top: 0; }
QTabBar {
text-transform: uppercase;
max-height: 22px; }
QTabBar::tab {
color: #C0C0C0;
background-color: transparent;
padding: 4px .5em;
margin: 0 0 .3em 0;
border-style: solid;
border-width: 0 15px 0 15px;
border-color: transparent; }
QTabBar::tab:hover {
color: #fff; }
QTabBar::tab:selected {
color: #fff;
border-image: url(./skyrim/button-checked-border.png) 0 15 repeat; }
QTabBar::tab:disabled {
color: #656565; }
QTabBar::scroller {
width: 23px; }
/* Border images */
ModListView,
QTreeView,
ModListView#modList,
QTreeWidget,
QListView,
QTableView,
QDialog#LockedDialog {
border-width: 20px;
border-color: transparent;
border-image: url(./skyrim/border-image.png) 27 repeat repeat; }
QMenu,
QToolTip {
border-width: 17px;
border-color: transparent;
border-image: url(./skyrim/border-image.png) 27 repeat repeat; }
/* Special styles */
/* Increase categories tab width */
QTreeWidget#categoriesList {
min-width: 200px; }
QTreeWidget#categoriesList::item {
background-position: center left;
background-repeat: no-repeat;
padding: .35em 10px; }
QTreeWidget#categoriesList::item:has-children {
background-image: url(./skyrim/arrow-right.png); }
QTreeWidget#categoriesList::item:has-children:open {
background-image: url(./skyrim/branch-opened.png); }
/* Add some space around buttons */
#QueryOverwriteDialog QPushButton {
margin-left: 0.5em; }
#SimpleInstallDialog QPushButton {
margin-top: 0.5em; }
#ProfilesDialog QPushButton {
margin-bottom: 0.5em; }
#ProfilesDialog QPushButton#closeButton {
margin-bottom: 0; }
#EditExecutablesDialog QPushButton#addButton,
#EditExecutablesDialog QPushButton#removeButton {
margin-bottom: 0.5em;
margin-top: 1em; }
/* Increase dialogs width to prevent buttons cutting */
QDialog#QueryOverwriteDialog {
min-width: 565px; }
QDialog#ModInfoDialog {
min-width: 940px; }
QDialog#BainComplexInstallerDialog {
min-width: 500px; }
QDialog#EditExecutablesDialog {
min-width: 500px; }
QDialog#SettingsDialog {
min-width: 670px; }
QDialog#CredentialsDialog {
min-width: 400px; }
#pluginsList {
min-width: 260px; }
QLineEdit[valid-filter=false] {
background-color: #661111 !important;
}
|