File: ion.rangeSlider.skinSquare.css

package info (click to toggle)
r-cran-shiny 1.2.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 7,668 kB
  • sloc: makefile: 32; sh: 24
file content (87 lines) | stat: -rw-r--r-- 1,669 bytes parent folder | download | duplicates (2)
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
/* Ion.RangeSlider, Square Skin
// css version 2.2.0
// © Denis Ineshin, 2014           https://github.com/IonDen
// © Veaceslav Grimalschi, 2018    https://github.com/grimalschi
// ===================================================================================================================*/

/* =====================================================================================================================
// Skin details */

.irs {
    height: 45px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.irs-with-grid {
    height: 62px;
}

.irs-line {
    top: 31px;
    height: 4px;
    background: #DEDEDE;
}

.irs-bar, .irs-bar-edge {
    top: 31px;
    height: 4px;
    background: black;
}
.irs-bar-edge {
    width: 8px;
}

.irs-shadow {
    height: 2px;
    top: 37px;
    background: #DEDEDE;
}

.irs-slider {
    top: 30px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border: 3px solid black;
    background: white;
    cursor: pointer;
    box-sizing: content-box;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.irs-slider.state_hover, .irs-slider:hover {
    background: #f0f0f0;
}

.irs-min, .irs-max {
    color: #333;
    font-size: 13px;
    top: 0;
    padding: 3px 4px;
    background: rgba(0,0,0,0.1);
    line-height: 1;
}

.irs-from, .irs-to, .irs-single {
    color: #fff;
    font-size: 13px;
    text-shadow: none;
    padding: 3px 4px;
    background: black;
    line-height: 1;
}

.irs-grid {
    height: 27px;
}
.irs-grid-pol {
    background: #DEDEDE;
}

.irs-grid-text {
    bottom: 4px;
    color: silver;
    font-size: 11px;
}