• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/* //from http://thesmithfam.org/blog/2010/03/10/fancy-qslider-stylesheet/ */
2
3QSlider::groove:horizontal {
4border: 1px solid #bbb;
5background: white;
6height: 10px;
7border-radius: 4px;
8}
9
10QSlider::sub-page:horizontal {
11background: qlineargradient(x1: 0, y1: 0,    x2: 0, y2: 1,
12stop: 0 #66e, stop: 1 #bbf);
13background: qlineargradient(x1: 0, y1: 0.2, x2: 1, y2: 1,
14stop: 0 #bbf, stop: 1 #55f);
15border: 1px solid #777;
16height: 10px;
17border-radius: 4px;
18}
19
20QSlider::add-page:horizontal {
21background: #fff;
22border: 1px solid #777;
23height: 10px;
24border-radius: 4px;
25}
26
27QSlider::handle:horizontal {
28background: qlineargradient(x1:0, y1:0, x2:1, y2:1,
29stop:0 #eee, stop:1 #ccc);
30border: 1px solid #777;
31width: 13px;
32margin-top: -2px;
33margin-bottom: -2px;
34border-radius: 4px;
35}
36
37QSlider::handle:horizontal:hover {
38background: qlineargradient(x1:0, y1:0, x2:1, y2:1,
39stop:0 #fff, stop:1 #ddd);
40border: 1px solid #444;
41border-radius: 4px;
42}
43
44QSlider::sub-page:horizontal:disabled {
45background: #bbb;
46border-color: #999;
47}
48
49QSlider::add-page:horizontal:disabled {
50background: #eee;
51border-color: #999;
52}
53
54QSlider::handle:horizontal:disabled {
55background: #eee;
56border: 1px solid #aaa;
57border-radius: 4px;
58}
59