Switch to unified view

a/GUI/dark.css b/GUI/dark.css
...
...
30
    selection-background-color: #424e72;
30
    selection-background-color: #424e72;
31
}
31
}
32
32
33
QListView:focus, QTableView:focus{
33
QListView:focus, QTableView:focus{
34
    border: 1px solid #424e72;
34
    border: 1px solid #424e72;
35
}
36
37
QSplitter::handle {
38
    background-color: #242424;
39
    width: 2px;
35
}
40
}
36
41
37
QScrollBar::vertical {
42
QScrollBar::vertical {
38
    margin: 15px 0px 15px 0px;
43
    margin: 15px 0px 15px 0px;
39
    padding-left: 3px;
44
    padding-left: 3px;
...
...
247
252
248
QMenu::indicator:non-exclusive:checked {
253
QMenu::indicator:non-exclusive:checked {
249
    image: url(:/icons/cb_checked.png);
254
    image: url(:/icons/cb_checked.png);
250
}
255
}
251
256
252
253
QComboBox {
257
QComboBox {
254
    border: 1px solid #2B2B2B;
258
    border: 1px solid #2B2B2B;
255
    border-radius: 3px;
259
    border-radius: 3px;
256
    padding: 1px 3px 1px 3px;
260
    padding: 1px 1px 1px 10px;
257
    background-color: #505050;
261
    background-color: #505050;
258
}
262
    min-width: 6em;
259
260
QComboBox:editable {
261
    background: #525252;
262
}
263
264
QComboBox:!editable, QComboBox::drop-down:editable {
265
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #555555, stop: 0.4 #383838);
266
    padding-top: 3px;
267
    padding-bottom: 2px;
268
}
269
270
QComboBox:!editable:on, QComboBox::drop-down:editable:on {
271
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #f1b42a, stop: 0.4 #e8841a, stop: 0.5 #e8841a, stop: 1.0 #e8841a);
272
}
273
274
QComboBox:!editable:off, QComboBox::drop-down:editable:off {
275
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #f1b42a, stop: 0.4 #e8841a, stop: 0.5 #e8841a, stop: 1.0 #e8841a);
276
}
277
278
QComboBox QAbstractItemView {
279
    border-radius: 0px;
280
}
281
282
QComboBox:on {
283
    /* shift the text when the popup opens */
284
    padding-top: 3px;
285
    padding-left: 4px;
286
}
263
}
287
264
288
QComboBox::drop-down {
265
QComboBox::drop-down {
289
    width: 18px;
290
    margin-left: 10px;
266
    margin-left: 0px;
291
    border-left-width: 1px;
267
    border-left-width: 1px;
292
    border-left-color: #242424;
268
    border-left-color: #242424;
293
    border-left-style: solid;
269
    border-left-style: solid;
294
    border-top-right-radius: 3px;
270
    border-top-right-radius: 3px;
295
    border-bottom-right-radius: 3px;
271
    border-bottom-right-radius: 3px;
...
...
305
QComboBox:focus {
281
QComboBox:focus {
306
    border-radius: 4px;
282
    border-radius: 4px;
307
    border: 1px solid #e8841a;
283
    border: 1px solid #e8841a;
308
}
284
}
309
285
310
311
QLineEdit {
286
QLineEdit {
312
    border: 1px solid #2B2B2B;
287
    border: 1px solid #2B2B2B;
313
    border-radius: 4px;
288
    border-radius: 4px;
314
    background: #525252;
289
    background: #525252;
315
}
290
}
...
...
321
296
322
QLineEdit:read-only {
297
QLineEdit:read-only {
323
    border-radius: 4px;
298
    border-radius: 4px;
324
    border: 1px solid #2B2B2B;
299
    border: 1px solid #2B2B2B;
325
}
300
}
326
327
301
328
QLineEdit:disabled {
302
QLineEdit:disabled {
329
    border-radius: 4px;
303
    border-radius: 4px;
330
    border: 1px solid #2B2B2B;
304
    border: 1px solid #2B2B2B;
331
    background: #383838;
305
    background: #383838;
...
...
337
    border: 1px solid #525252;
311
    border: 1px solid #525252;
338
}
312
}
339
313
340
QTabWidget::tab-bar {
314
QTabWidget::tab-bar {
341
    left: 5px;
315
    left: 5px;
342
/* move to the right by 5px */}
316
/* move to the right by 5px */
317
}
343
318
344
QTabBar::tab {
319
QTabBar::tab {
345
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #525252, stop: 0.4 #383838, stop: 0.5 #383838, stop: 1.0 #424242);
320
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #525252, stop: 0.4 #383838, stop: 0.5 #383838, stop: 1.0 #424242);
346
    border: 1px solid #242424;
321
    border: 1px solid #242424;
347
    border-top-left-radius: 4px;
322
    border-top-left-radius: 4px;
...
...
547
QCheckBox::indicator:checked:disabled {
522
QCheckBox::indicator:checked:disabled {
548
    border: 1px solid #2B2B2B;
523
    border: 1px solid #2B2B2B;
549
    image: url(:/icons/cb_checked_disabled.png);
524
    image: url(:/icons/cb_checked_disabled.png);
550
}
525
}
551
526
552
553
QCheckBox::indicator:checked:enabled {
527
QCheckBox::indicator:checked:enabled {
554
    image: url(:/icons/cb_checked.png);
528
    image: url(:/icons/cb_checked.png);
555
}
529
}
556
557
530
558
531
559
QRadioButton {
532
QRadioButton {
560
    spacing: 5px;
533
    spacing: 5px;
561
}
534
}
...
...
601
    padding: 1px;
574
    padding: 1px;
602
    padding-left: 1px;
575
    padding-left: 1px;
603
    padding-right: 1px;
576
    padding-right: 1px;
604
}
577
}
605
578
606
607
QPushButton[flat=true]:hover{
579
QPushButton[flat=true]:hover{
608
    background-color: qradialgradient(spread:pad, cx:0.5, cy:0.5, radius:0.54, fx:0.502, fy:0.500876, stop:0.45 rgba(243, 132, 26, 255), stop:1 rgba(255, 255, 255, 0));
580
    background-color: qradialgradient(spread:pad, cx:0.5, cy:0.5, radius:0.54, fx:0.502, fy:0.500876, stop:0.45 rgba(243, 132, 26, 255), stop:1 rgba(255, 255, 255, 0));
609
}
581
}
610
582
611
QPushButton[flat=true]:hover:checked{
583
QPushButton[flat=true]:hover:checked{
...
...
622
594
623
QPushButton[flat=false] {
595
QPushButton[flat=false] {
624
    border: 1px solid #282828;
596
    border: 1px solid #282828;
625
    border-radius: 6px;
597
    border-radius: 6px;
626
    background: #505050;
598
    background: #505050;
599
    margin: 2px;
600
    margin-left: 4px;
627
    padding: 4px;
601
    padding-top: 2px;
602
    padding-right: 8px;
603
    padding-bottom: 1px;
604
    padding-left: 6px;
628
}
605
}
629
606
630
QPushButton[flat=false]:hover {
607
QPushButton[flat=false]:hover {
631
    border: 1px solid #e8841a;
608
    border: 1px solid #e8841a;
632
    border-radius: 6px;
609
    border-radius: 6px;
633
    padding: 4px;
634
/*   background: #3b3b3b;*/
610
/*   background: #3b3b3b;*/
635
}
611
}
636
612
637
QPushButton[flat=false]:pressed {
613
QPushButton[flat=false]:pressed {
638
    border: 1px solid #e8841a;
614
    border: 1px solid #e8841a;
639
    border-radius: 6px;
615
    border-radius: 6px;
640
    padding: 4px;
616
    padding: 6px;
641
    background: #323232;
617
    background: #323232;
642
}
618
}
643
644
645
619
646
QPushButton[flat=false]:disabled {
620
QPushButton[flat=false]:disabled {
647
    border: 1px solid #303030;
621
    border: 1px solid #303030;
648
    color: #7f7f7f;
622
    color: #7f7f7f;
649
    background: #424242;
623
    background: #424242;
...
...
658
    vertical-align: center;
632
    vertical-align: center;
659
    color: #f8f8f8;
633
    color: #f8f8f8;
660
    
634
    
661
}
635
}
662
636
663
664
QProgressBar::chunk {
637
QProgressBar::chunk {
665
    background-color: #424e72;
638
    background-color: #424e72;
666
    width: 8px;
639
    width: 8px;
667
    margin: 0.5px;
640
    margin: 0.5px;
668
}
641
}