Subversion-Projekte lars-tiefland.ci

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
776 lars 1
/* Ion.RangeSlider, Simple Skin
2
// css version 2.0.3
3
// © Denis Ineshin, 2014    https://github.com/IonDen
4
// ===================================================================================================================*/
5
 
6
/* =====================================================================================================================
7
// Skin details */
8
 
9
.irs-line-mid,
10
.irs-line-left,
11
.irs-line-right,
12
.irs-bar,
13
.irs-bar-edge,
14
.irs-slider {
15
    background: url(../img/sprite-skin-simple.png) repeat-x;
16
}
17
 
18
.irs {
19
    height: 40px;
20
}
21
.irs-with-grid {
22
    height: 60px;
23
}
24
.irs-line {
25
    height: 6px; top: 25px;
26
}
27
    .irs-line-left {
28
        height: 6px;
29
        background-position: 0 -30px;
30
    }
31
    .irs-line-mid {
32
        height: 6px;
33
        background-position: 0 0;
34
    }
35
    .irs-line-right {
36
        height: 6px;
37
        background-position: 100% -30px;
38
    }
39
 
40
.irs-bar {
41
    height: 6px; top: 25px;
42
    background-position: 0 -60px;
43
}
44
    .irs-bar-edge {
45
        top: 25px;
46
        height: 6px; width: 7px;
47
        background-position: 0 -90px;
48
    }
49
 
50
.irs-shadow {
51
    height: 1px; top: 34px;
52
    background: #000;
53
    opacity: 0.75;
54
}
55
.lt-ie9 .irs-shadow {
56
    filter: alpha(opacity=75);
57
}
58
 
59
.irs-slider {
60
    width: 8px; height: 15px;
61
    top: 21px;
62
    background-position: 0 -120px;
63
}
64
.irs-slider.state_hover, .irs-slider:hover {
65
    background-position: 0 -150px;
66
}
67
 
68
.irs-min, .irs-max {
69
    color: #c0c0c0;
70
    font-size: 10px; line-height: 1.333;
71
    text-shadow: none;
72
    top: 0; padding: 1px 3px;
73
    background: rgba(0,0,0,0.1);
74
    -moz-border-radius: 3px;
75
    border-radius: 3px;
76
}
77
.lt-ie9 .irs-min, .lt-ie9 .irs-max {
78
    background: #3654b0;
79
}
80
 
81
.irs-from, .irs-to, .irs-single {
82
    color: #000;
83
    font-size: 10px; line-height: 1.333;
84
    text-shadow: none;
85
    padding: 1px 5px;
86
    background: rgba(255,255,255,0.8);
87
    -moz-border-radius: 3px;
88
    border-radius: 3px;
89
}
90
.lt-ie9 .irs-from, .lt-ie9 .irs-to, .lt-ie9 .irs-single {
91
    background: #d8dff3;
92
}
93
 
94
.irs-grid-pol {
95
    background: #777;
96
}
97
.irs-grid-text {
98
    color: #e0e0e0;
99
}
100
 
101
.irs-disabled {
102
}