blob: 26fb01f8c56ecc4b671f0d10c91327d98e8dd5d0 (
plain)
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
|
div.jslider-bg i, div.jslider-pointer {
background: url("../img/jslider.png") no-repeat 0 0;
}
div.jslider-bg {
position: relative;
i {
@include position(absolute, 0 null null null);
height: 5px;
&.left {
left: 0;
width: 50%;
background-position: 0 0;
}
&.right {
left: 50%;
width: 50%;
background-position: right 0;
}
&.range {
@include position(absolute, 0 null null 20%);
@include size(60% 5px);
background-repeat: repeat-x;
background-position: 0 -40px;
z-index: 1;
}
&.default {
left: 0;
width: 1px;
z-index: 1;
background-color: $color-pointers-default-value;
}
}
}
|