Skip to content

Commit cf03879

Browse files
committed
update ccafs-climate app chirps
1 parent a61efec commit cf03879

20 files changed

+4627
-69
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
/* Ion.RangeSlider
2+
// css version 2.0.3
3+
// © 2013-2014 Denis Ineshin | IonDen.com
4+
// ===================================================================================================================*/
5+
6+
/* =====================================================================================================================
7+
// RangeSlider */
8+
9+
.irs {
10+
position: relative; display: block;
11+
-webkit-touch-callout: none;
12+
-webkit-user-select: none;
13+
-khtml-user-select: none;
14+
-moz-user-select: none;
15+
-ms-user-select: none;
16+
user-select: none;
17+
}
18+
.irs-line {
19+
position: relative; display: block;
20+
overflow: hidden;
21+
outline: none !important;
22+
}
23+
.irs-line-left, .irs-line-mid, .irs-line-right {
24+
position: absolute; display: block;
25+
top: 0;
26+
}
27+
.irs-line-left {
28+
left: 0; width: 11%;
29+
}
30+
.irs-line-mid {
31+
left: 9%; width: 82%;
32+
}
33+
.irs-line-right {
34+
right: 0; width: 11%;
35+
}
36+
37+
.irs-bar {
38+
position: absolute; display: block;
39+
left: 0; width: 0;
40+
}
41+
.irs-bar-edge {
42+
position: absolute; display: block;
43+
top: 0; left: 0;
44+
}
45+
46+
.irs-shadow {
47+
position: absolute; display: none;
48+
left: 0; width: 0;
49+
}
50+
51+
.irs-slider {
52+
position: absolute; display: block;
53+
cursor: default;
54+
z-index: 1;
55+
}
56+
.irs-slider.single {
57+
58+
}
59+
.irs-slider.from {
60+
61+
}
62+
.irs-slider.to {
63+
64+
}
65+
.irs-slider.type_last {
66+
z-index: 2;
67+
}
68+
69+
.irs-min {
70+
position: absolute; display: block;
71+
left: 0;
72+
cursor: default;
73+
}
74+
.irs-max {
75+
position: absolute; display: block;
76+
right: 0;
77+
cursor: default;
78+
}
79+
80+
.irs-from, .irs-to, .irs-single {
81+
position: absolute; display: block;
82+
top: 0; left: 0;
83+
cursor: default;
84+
white-space: nowrap;
85+
}
86+
87+
.irs-grid {
88+
position: absolute; display: none;
89+
bottom: 0; left: 0;
90+
width: 100%; height: 20px;
91+
}
92+
.irs-with-grid .irs-grid {
93+
display: block;
94+
}
95+
.irs-grid-pol {
96+
position: absolute;
97+
top: 0; left: 0;
98+
width: 1px; height: 8px;
99+
background: #000;
100+
}
101+
.irs-grid-pol.small {
102+
height: 4px;
103+
}
104+
.irs-grid-text {
105+
position: absolute;
106+
bottom: 0; left: 0;
107+
white-space: nowrap;
108+
text-align: center;
109+
font-size: 9px; line-height: 9px;
110+
padding: 0 3px;
111+
color: #000;
112+
}
113+
114+
.irs-disable-mask {
115+
position: absolute; display: block;
116+
top: 0; left: -1%;
117+
width: 102%; height: 100%;
118+
cursor: default;
119+
background: rgba(0,0,0,0.0);
120+
z-index: 2;
121+
}
122+
.irs-disabled {
123+
opacity: 0.4;
124+
}
125+
.lt-ie9 .irs-disabled {
126+
filter: alpha(opacity=40);
127+
}
128+
129+
130+
.irs-hidden-input {
131+
position: absolute !important;
132+
display: block !important;
133+
top: 0 !important;
134+
left: 0 !important;
135+
width: 0 !important;
136+
height: 0 !important;
137+
font-size: 0 !important;
138+
line-height: 0 !important;
139+
padding: 0 !important;
140+
margin: 0 !important;
141+
outline: none !important;
142+
z-index: -9999 !important;
143+
background: none !important;
144+
border-style: solid !important;
145+
border-color: transparent !important;
146+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
/* Ion.RangeSlider, Flat UI 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-flat.png) repeat-x;
16+
}
17+
18+
.irs {
19+
height: 40px;
20+
}
21+
.irs-with-grid {
22+
height: 60px;
23+
}
24+
.irs-line {
25+
height: 12px; top: 25px;
26+
}
27+
.irs-line-left {
28+
height: 12px;
29+
background-position: 0 -30px;
30+
}
31+
.irs-line-mid {
32+
height: 12px;
33+
background-position: 0 0;
34+
}
35+
.irs-line-right {
36+
height: 12px;
37+
background-position: 100% -30px;
38+
}
39+
40+
.irs-bar {
41+
height: 12px; top: 25px;
42+
background-position: 0 -60px;
43+
}
44+
.irs-bar-edge {
45+
top: 25px;
46+
height: 12px; width: 9px;
47+
background-position: 0 -90px;
48+
}
49+
50+
.irs-shadow {
51+
height: 3px; top: 34px;
52+
background: #000;
53+
opacity: 0.25;
54+
}
55+
.lt-ie9 .irs-shadow {
56+
filter: alpha(opacity=25);
57+
}
58+
59+
.irs-slider {
60+
width: 16px; height: 18px;
61+
top: 22px;
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: #999;
70+
font-size: 10px; line-height: 1.333;
71+
text-shadow: none;
72+
top: 0; padding: 1px 3px;
73+
background: #e1e4e9;
74+
-moz-border-radius: 4px;
75+
border-radius: 4px;
76+
}
77+
78+
.irs-from, .irs-to, .irs-single {
79+
color: #fff;
80+
font-size: 10px; line-height: 1.333;
81+
text-shadow: none;
82+
padding: 1px 5px;
83+
background: #ed5565;
84+
-moz-border-radius: 4px;
85+
border-radius: 4px;
86+
}
87+
.irs-from:after, .irs-to:after, .irs-single:after {
88+
position: absolute; display: block; content: "";
89+
bottom: -6px; left: 50%;
90+
width: 0; height: 0;
91+
margin-left: -3px;
92+
overflow: hidden;
93+
border: 3px solid transparent;
94+
border-top-color: #ed5565;
95+
}
96+
97+
98+
.irs-grid-pol {
99+
background: #e1e4e9;
100+
}
101+
.irs-grid-text {
102+
color: #999;
103+
}
104+
105+
.irs-disabled {
106+
}

0 commit comments

Comments
 (0)