-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfusiondark.qss
64 lines (53 loc) · 1.39 KB
/
fusiondark.qss
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
QToolTip {
color: palette(text);
background: palette(base);
border: 1px solid palette(highlight);
}
QToolBar::top {
border-bottom: 3px solid qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 palette(base), stop:1 palette(window));
}
QToolBar::bottom {
border-top: 3px solid qlineargradient(x1:0, y1:1, x2:0, y2:0, stop:0 palette(base), stop:1 palette(window));
}
QToolBar::left {
border-right: 3px solid qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 palette(base), stop:1 palette(window));
}
QToolBar::right {
border-left: 3px solid qlineargradient(x1:1, y1:0, x2:0, y2:0, stop:0 palette(base), stop:1 palette(window));
}
QSlider::handle:horizontal {
border-radius: 4px;
border: 1px solid palette(base);
background: #555;
min-height: 12px;
width: 12px;
margin-top: -3px;
margin-bottom: -3px;
}
QSlider::handle:horizontal:hover {
background: #777;
}
QSlider::groove:horizontal {
background: palette(base);
border: 1px solid palette(base);
border-radius: 2px;
height: 9px;
}
QSlider::add-page:horizontal {
background: palette(base);
border: 1px solid palette(base);
border-radius: 2px;
height: 9px;
}
QSlider::sub-page:horizontal {
background: palette(highlight);
border: 1px solid palette(base);
border-radius: 2px;
height: 9px;
}
QSlider::add-page:horizontal:disabled {
background: #333;
}
QSlider::sub-page:horizontal:disabled {
background: palette(alternate-base);
}