-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqislider.css
161 lines (153 loc) · 3.97 KB
/
qislider.css
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
.slider-holder {
margin-top: 10px;
margin-bottom: 10px; }
.slider-button {
cursor: pointer;
z-index: 10;
position: absolute;
width: 20px;
padding: 2px;
height: 20px; }
.slider div {
-webkit-user-select: none;
-moz-user-select: none; }
.slider-input {
position: absolute;
cursor: pointer;
font-family: arial;
padding-top: 0px;
font-size: 12px;
width: 70px;
right: 0px; }
.slider-input input {
width: 30px;
float: left; }
.slider-input .value {
font-size: 12px;
width: 60px;
text-align: right; }
.slider-input .edit {
float: left;
height: 5px;
width: 5px;
background-color: red; }
.slider-input input[type='text'] {
width: 30px;
border: 1px solid #999999; }
.slider {
-moz-user-select: none;
-webkit-user-select: none;
-webkit-user-drag: none;
width: 160px;
height: 25px;
position: relative;
-moz-user-select: none;
-khtml-user-select: none;
user-select: none; }
.slider .slider-bar {
background: url("images/slider/slider-bar.png");
position: absolute;
left: 25px;
width: 110px;
height: 30px;
margin-top: -12px;
background-repeat: no-repeat;
background-position: 0px 12px;
cursor: pointer; }
.slider .slider-toggle-button {
top: 12px;
cursor: pointer;
left: 80px;
background: url("images/slider/slider-toggle-button.png") no-repeat; }
.slider .slider-button-over {
background: url("images/slider/slider-toggle-button-over.png") no-repeat; }
.slider .slider-button-active {
background: url("images/slider/slider-toggle-button-active.png") no-repeat; }
.slider .slider-left-button {
left: 0px; }
.slider .slider-left-button-over {
background: url("images/slider/slider-left-button-over.png") no-repeat; }
.slider .slider-left-button-active {
background: url("images/slider/slider-left-button-active.png") no-repeat; }
.slider .slider-right-button {
left: 140px; }
.slider .slider-right-button-over {
background: url("images/slider/slider-right-button-over.png") no-repeat; }
.slider .slider-right-button-active {
background: url("images/slider/slider-right-button-active.png") no-repeat; }
.slider .municipality-toggle {
background: url("images/slider/slider_red.png") no-repeat; }
.slider-disabled .slider-toggle-button {
cursor: pointer;
left: 80px;
background: url("images/slider/slider-disabled.png"); }
.slider-advanced {
text-align: left;
position: relative; }
.slider-advanced .slider-elements {
width: 290px;
float: right; }
.slider-advanced .toprow {
position: relative;
height: auto; }
.slider-advanced .name {
font-size: 12px;
padding-left: 3px;
padding-top: 5px;
cursor: pointer;
right: 300px; }
.slider-advanced .name .text {
float: left;
width: 149px; }
.slider-advanced .name .label {
float: left;
font-size: 10px;
color: #cccccc;
margin-left: 10px; }
.slider-advanced .slider {
float: left;
left: 5px;
top: 3px;
position: relative; }
.slider-advanced .slider-reset-button {
float: left;
top: 2px;
position: relative;
left: 0px;
background: url("images/slider/slider-reset.gif") no-repeat;
background-position: -5px 0px;
width: 20px;
height: 20px; }
.slider-advanced .slider-input {
float: left;
left: 20px;
position: relative;
width: 80px;
margin-top: 3px; }
.slider-info-box {
font-size: 12px;
margin-top: 10px;
margin-bottom: 20px;
width: 430px;
display: none;
padding: 4px;
background-color: #eeeeee; }
.slider-info-box .text {
width: 280px;
float: left; }
.slider-info-box .text-without-data {
width: 430px; }
.slider-info-box .data {
width: 130px;
float: right; }
.slider-info-box .data .label {
clear: both;
width: 70px;
float: left;
font-weight: bold; }
.slider-info-box .data .value {
text-align: right;
width: 60px;
float: right; }
.clear {
clear: both; }