@@ -99,13 +99,17 @@ QMenu::item:disabled
99
99
padding: 0.2em 1.3em 0.2em 1.3em;
100
100
}
101
101
102
-
103
102
QMenu::item:selected
104
103
{
105
104
background-color: @selection;
106
105
color: @text;
107
106
}
108
107
108
+ QMenu::item:checked
109
+ {
110
+ text-decoration:underline;
111
+ }
112
+
109
113
QWidget:disabled
110
114
{
111
115
color: #404040;
@@ -261,6 +265,7 @@ QComboBox:item:selected {
261
265
QComboBox:item:checked {
262
266
padding-left: 1.3em;
263
267
height:1.25em;
268
+ text-decoration:underline;
264
269
}
265
270
266
271
QLineEdit:focus
@@ -279,15 +284,15 @@ QTextEdit:focus
279
284
/* ==================================================================================== */
280
285
281
286
QScrollBar:horizontal {
282
- background-color: #333 ;
287
+ background-color: @itemdarkbackground ;
283
288
height: 0.5em;
284
289
margin: 0px;
285
290
padding: 0px;
286
291
}
287
292
288
293
QScrollBar::handle:horizontal {
289
- border: 1px solid #111 ;
290
- background: @itembackground ;
294
+ border: 1px solid @itemdarkbackground ;
295
+ background: @background ;
291
296
}
292
297
293
298
QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal,
@@ -297,14 +302,14 @@ QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal {
297
302
}
298
303
299
304
QScrollBar:vertical {
300
- background-color: #333 ;
305
+ background-color: @itemdarkbackground ;
301
306
width: 0.5em;
302
307
margin: 0;
303
308
}
304
309
305
310
QScrollBar::handle:vertical {
306
- border: 1px solid #111 ;
307
- background: @itembackground ;
311
+ border: 1px solid @itemdarkbackground ;
312
+ background: @background ;
308
313
}
309
314
310
315
QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical,
@@ -553,27 +558,33 @@ QCheckBox::indicator:checked {
553
558
/* SLIDER */
554
559
/* ==================================================================================== */
555
560
556
- QSlider::groove:horizontal,
557
- QSlider::groove:vertical {
561
+ QSlider::groove:horizontal {
558
562
border: 1px solid @itemdarkbackground;
559
563
height: 0.4em; /* the groove expands to the size of the slider by default. by giving it a height, it has a fixed size */
560
- background-color: @itembackground;
564
+ background-color: @itemdarkbackground;
565
+ margin: 2px 0;
566
+ }
567
+
568
+ QSlider::groove:vertical {
569
+ border: 1px solid @itemdarkbackground;
570
+ width: 0.4em; /* the groove expands to the size of the slider by default. by giving it a height, it has a fixed size */
571
+ background-color: @itemdarkbackground;
561
572
margin: 2px 0;
562
573
}
563
574
564
575
QSlider::handle:horizontal {
565
- background: qlineargradient(x1:0, y1:0, x2:1, y2:1, stop:0 #b4b4b4, stop:1 #8f8f8f) ;
566
- border: 1px solid itemdarkbackground;
567
- width: 1em ;
576
+ background: @gradient ;
577
+ border: 1px solid @ itemdarkbackground;
578
+ width: 1.3em ;
568
579
margin: -2px 0; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */
569
- border-radius: 0px ;
580
+ border-radius: 0.15em ;
570
581
}
571
582
QSlider::handle:vertical {
572
- background: qlineargradient(x1:0, y1:0, x2:1, y2:1, stop:0 #b4b4b4, stop:1 #8f8f8f) ;
573
- border: 1px solid itemdarkbackground;
574
- height: 1em ;
575
- margin: -2px 0 ; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */
576
- border-radius: 0px ;
583
+ background: @gradient ;
584
+ border: 1px solid @ itemdarkbackground;
585
+ height: 1.3em ;
586
+ margin: 0 -2px; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */
587
+ border-radius: 0.15em ;
577
588
}
578
589
579
590
/* ==================================================================================== */
0 commit comments