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
| @import (reference) "_mixins";
|
| .irs {
| .pos-r();
| -webkit-touch-callout: none;
| .no-click();
| font-size: 12px;
| font-family: Arial, sans-serif;
|
| &-line {
| .pos-r();
| overflow: hidden;
| outline: none !important;
| }
|
| &-bar {
| .pos-a();
| left: 0;
| width: 0;
| }
|
| &-shadow {
| position: absolute;
| display: none;
| left: 0;
| width: 0;
| }
|
| &-handle {
| .pos-a();
| box-sizing: border-box;
| cursor: default;
| z-index: 1;
|
| &.single,
| &.from,
| &.to {}
|
| &.type_last {
| z-index: 2;
| }
| }
|
| &-min,
| &-max {
| .pos-a();
| cursor: default;
| }
|
| &-min {
| left: 0;
| }
|
| &-max {
| right: 0;
| }
|
| &-from,
| &-to,
| &-single {
| .pos-a();
| top: 0;
| left: 0;
| cursor: default;
| white-space: nowrap;
| }
|
| &-grid {
| position: absolute;
| display: none;
| bottom: 0;
| left: 0;
| width: 100%;
| height: 20px;
|
| .irs-with-grid & {
| display: block;
| }
|
| &-pol {
| position: absolute;
| top: 0;
| left: 0;
| width: 1px;
| height: 8px;
| background: #000;
|
| &.small {
| height: 4px;
| }
| }
|
| &-text {
| position: absolute;
| bottom: 0;
| left: 0;
| white-space: nowrap;
| text-align: center;
| font-size: 9px;
| line-height: 9px;
| padding: 0 3px;
| color: #000;
| }
| }
|
| &-disable-mask {
| .pos-a();
| top: 0;
| left: -1%;
| width: 102%;
| height: 100%;
| cursor: default;
| background: rgba(0,0,0,0.0);
| z-index: 2;
|
| .lt-ie9 & {
| background: #000;
| filter: alpha(opacity=0);
| cursor: not-allowed;
| }
| }
|
| &-disabled {
| opacity: 0.4;
| }
|
| &-hidden-input {
| position: absolute !important;
| display: block !important;
| top: 0 !important;
| left: 0 !important;
| width: 0 !important;
| height: 0 !important;
| font-size: 0 !important;
| line-height: 0 !important;
| padding: 0 !important;
| margin: 0 !important;
| overflow: hidden;
| outline: none !important;
| z-index: -9999 !important;
| background: none !important;
| border-style: solid !important;
| border-color: transparent !important;
| }
| }
|
|