mobiscroll-rails 2.3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README.md +43 -0
- data/lib/mobiscroll-rails.rb +9 -0
- data/lib/mobiscroll-rails/version.rb +5 -0
- data/vendor/assets/javascripts/mobiscroll.android-ics.js +16 -0
- data/vendor/assets/javascripts/mobiscroll.android.js +12 -0
- data/vendor/assets/javascripts/mobiscroll.core.js +966 -0
- data/vendor/assets/javascripts/mobiscroll.datetime.js +656 -0
- data/vendor/assets/javascripts/mobiscroll.ios.js +14 -0
- data/vendor/assets/javascripts/mobiscroll.jqm.js +30 -0
- data/vendor/assets/javascripts/mobiscroll.js +18 -0
- data/vendor/assets/javascripts/mobiscroll.list.js +377 -0
- data/vendor/assets/javascripts/mobiscroll.select.js +257 -0
- data/vendor/assets/javascripts/mobiscroll.wp.js +30 -0
- data/vendor/assets/javascripts/mobiscroll.zepto.js +72 -0
- data/vendor/assets/stylesheets/mobiscroll.android-ics.css +173 -0
- data/vendor/assets/stylesheets/mobiscroll.android.css +90 -0
- data/vendor/assets/stylesheets/mobiscroll.core.css +349 -0
- data/vendor/assets/stylesheets/mobiscroll.css +13 -0
- data/vendor/assets/stylesheets/mobiscroll.ios.css +215 -0
- data/vendor/assets/stylesheets/mobiscroll.jqm.css +249 -0
- data/vendor/assets/stylesheets/mobiscroll.sense-ui.css +62 -0
- data/vendor/assets/stylesheets/mobiscroll.wp.css +249 -0
- data/vendor/assets/stylesheets/wp_icons.png +0 -0
- data/vendor/assets/stylesheets/wp_icons_light.png +0 -0
- metadata +82 -0
@@ -0,0 +1,13 @@
|
|
1
|
+
/*
|
2
|
+
* Core CSS required to use Mobiscroll
|
3
|
+
*= require mobiscroll.core
|
4
|
+
*
|
5
|
+
* Themes
|
6
|
+
*= require mobiscroll.android-ics
|
7
|
+
*= require mobiscroll.android
|
8
|
+
*= require mobiscroll.ios
|
9
|
+
*= require mobiscroll.jqm
|
10
|
+
*= require mobiscroll.sense-ui
|
11
|
+
*= require mobiscroll.wp
|
12
|
+
*/
|
13
|
+
|
@@ -0,0 +1,215 @@
|
|
1
|
+
/* iOS Skin */
|
2
|
+
.ios .dw {
|
3
|
+
min-width: 134px;
|
4
|
+
padding: 0;
|
5
|
+
border: 1px solid #2d3034;
|
6
|
+
background: none;
|
7
|
+
color: #fff;
|
8
|
+
border-radius: 0;
|
9
|
+
-webkit-border-radius: 0;
|
10
|
+
}
|
11
|
+
.ios .dwo {
|
12
|
+
background: none;
|
13
|
+
}
|
14
|
+
.ios .dwwr {
|
15
|
+
position: relative;
|
16
|
+
margin-top: 40px;
|
17
|
+
background: #50515d;
|
18
|
+
background: linear-gradient(#9f9fa6,#484a55 50%,#272836 50%,#282a39);
|
19
|
+
background: -webkit-gradient(linear,left top,left bottom,from(#9f9fa6),color-stop(0.5, #484a55),color-stop(0.5, #272836),to(#282a39));
|
20
|
+
background: -moz-linear-gradient(#9f9fa6,#484a55 50%,#272836 50%,#282a39);
|
21
|
+
background: -o-linear-gradient(#9f9fa6,#484a55 50%,#272836 50%,#282a39);
|
22
|
+
}
|
23
|
+
.ios .dwi .dwwr
|
24
|
+
{
|
25
|
+
margin-top: 0;
|
26
|
+
}
|
27
|
+
|
28
|
+
.ios .dwv {
|
29
|
+
display: none;
|
30
|
+
}
|
31
|
+
.ios .dwc {
|
32
|
+
padding: 30px 0;
|
33
|
+
margin: 0 2px;
|
34
|
+
}
|
35
|
+
.ios .dwhl {
|
36
|
+
padding: 10px 0;
|
37
|
+
}
|
38
|
+
.ios .dwwc {
|
39
|
+
background: transparent;
|
40
|
+
}
|
41
|
+
.ios .dwwl {
|
42
|
+
margin: 4px 0;
|
43
|
+
border-left: 1px solid #000;
|
44
|
+
border-right: 1px solid #000;
|
45
|
+
background: #cbcce0;
|
46
|
+
background: linear-gradient(#2c2c38 0%,#cbcce0 35%, #cbcce0 65%,#2c2c38 100%);
|
47
|
+
background: -webkit-gradient(linear,left bottom,left top,from(#2c2c38),color-stop(0.35, #cbcce0),color-stop(0.65, #cbcce0),to(#2c2c38));
|
48
|
+
background: -moz-linear-gradient(#2c2c38 0%,#cbcce0 35%, #cbcce0 65%,#2c2c38 100%);
|
49
|
+
background: -o-linear-gradient(#2c2c38 0%,#cbcce0 35%, #cbcce0 65%,#2c2c38 100%);
|
50
|
+
box-shadow: 0 1px 1px rgba(255,255,255,0.3);
|
51
|
+
border-radius: 0;
|
52
|
+
-webkit-border-radius: 0;
|
53
|
+
-webkit-box-shadow: 0 1px 1px rgba(255,255,255,0.3);
|
54
|
+
}
|
55
|
+
.ios td: first-child .dwwl {
|
56
|
+
border-radius: 3px 0 0 3px;
|
57
|
+
-webkit-border-radius: 3px 0 0 3px;
|
58
|
+
}
|
59
|
+
.ios td: last-child .dwwl {
|
60
|
+
border-radius: 0 3px 3px 0;
|
61
|
+
-webkit-border-radius: 0 3px 3px 0;
|
62
|
+
}
|
63
|
+
.ios .dwsc .dww {
|
64
|
+
margin: 0 3px;
|
65
|
+
background: #fff;
|
66
|
+
background: linear-gradient(#333 0%,#999 10%,#fff 30%,#fff 70%,#999 90%,#333 100%);
|
67
|
+
background: -webkit-gradient(linear,left bottom,left top,from(#333),color-stop(0.10, #999),color-stop(0.30, #fff),color-stop(0.70, #fff),color-stop(0.90, #999),to(#333));
|
68
|
+
background: -moz-linear-gradient(#333 0%,#999 10%,#fff 30%,#fff 70%,#999 90%,#333 100%);
|
69
|
+
background: -o-linear-gradient(#333 0%,#999 10%,#fff 30%,#fff 70%,#999 90%,#333 100%);
|
70
|
+
border-radius: 0;
|
71
|
+
-webkit-border-radius: 0;
|
72
|
+
}
|
73
|
+
.ios .dw .dwpm .dww {
|
74
|
+
background: linear-gradient(#000,#fff 48%,#fff 52%,#000);
|
75
|
+
background: -webkit-gradient(linear,left bottom,left top,from(#333),color-stop(0.48, #fff),color-stop(0.52, #fff),to(#333));
|
76
|
+
background: -moz-linear-gradient(#000 0%,#fff 48%,#fff 52%,#000 100%);
|
77
|
+
background: -o-linear-gradient(#000 0%,#fff 48%,#fff 52%,#000 100%);
|
78
|
+
}
|
79
|
+
.ios .dw .dwpm .dwwl {
|
80
|
+
margin: 4px 2px;
|
81
|
+
}
|
82
|
+
.ios .dw .dwpm .dww {
|
83
|
+
margin: 0;
|
84
|
+
border: 0;
|
85
|
+
}
|
86
|
+
.ios .dww li {
|
87
|
+
color: #000;
|
88
|
+
font-size: 20px;
|
89
|
+
font-weight: bold;
|
90
|
+
text-align: right;
|
91
|
+
text-shadow: none;
|
92
|
+
}
|
93
|
+
.ios .dww li.dw-hl {
|
94
|
+
background: linear-gradient(#0288f3,#005de6);
|
95
|
+
background: -webkit-gradient(linear,left bottom,left top,from(#0288f3),to(#005de6));
|
96
|
+
background: -moz-linear-gradient(#0288f3,#005de6);
|
97
|
+
background: -o-linear-gradient(#0288f3,#005de6);
|
98
|
+
color: #fff;
|
99
|
+
}
|
100
|
+
.ios .dwwo {
|
101
|
+
display: none;
|
102
|
+
}
|
103
|
+
.ios .dwwol {
|
104
|
+
height: 28px;
|
105
|
+
padding: 1px;
|
106
|
+
margin-top: -16px;
|
107
|
+
border-color: #7b8699;
|
108
|
+
background: #6f75b0;
|
109
|
+
background: linear-gradient(rgba(151, 157, 197, 0.5) 50%,rgba(111, 117, 176, 0.5) 50%);
|
110
|
+
background: -webkit-gradient(linear,left bottom,left top,color-stop(0.5, rgba(111, 117, 176, 0.5)),color-stop(0.5, rgba(151, 157, 197, 0.5)));
|
111
|
+
background: -moz-linear-gradient(rgba(151, 157, 197, 0.5) 50%,rgba(111, 117, 176, 0.5) 50%);
|
112
|
+
background: -o-linear-gradient(rgba(151, 157, 197, 0.5) 50%,rgba(111, 117, 176, 0.5) 50%);
|
113
|
+
z-index: 10;
|
114
|
+
left: -1px;
|
115
|
+
box-shadow: 0 1px 3px rgba(0,0,0,0.5);
|
116
|
+
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
|
117
|
+
filter: alpha(opacity=50);
|
118
|
+
}
|
119
|
+
.ios .dw .dwbc {
|
120
|
+
position: absolute;
|
121
|
+
top: -40px;
|
122
|
+
left: 0;
|
123
|
+
width: 100%;
|
124
|
+
padding: 5px 0;
|
125
|
+
background: #454545;
|
126
|
+
background: linear-gradient(rgba(69,69,69,0.7),rgba(37,37,37,0.7) 50%,rgba(16,16,16,0.7) 50%,rgba(0,0,0,0.7));
|
127
|
+
background: -webkit-gradient(linear,left top,left bottom,from(rgba(69,69,69,0.7)),color-stop(0.5, rgba(37,37,37,0.7)),color-stop(0.5, rgba(16,16,16,0.7)),to(rgba(0,0,0,0.7)));
|
128
|
+
background: -moz-linear-gradient(rgba(69,69,69,0.7),rgba(37,37,37,0.7) 50%,rgba(16,16,16,0.7) 50%,rgba(0,0,0,0.7));
|
129
|
+
background: -o-linear-gradient(rgba(69,69,69,0.7),rgba(37,37,37,0.7) 50%,rgba(16,16,16,0.7) 50%,rgba(0,0,0,0.7));
|
130
|
+
border-bottom: 1px solid #888;
|
131
|
+
border-bottom: 1px solid rgba(255,255,255,0.5);
|
132
|
+
border-top: 1px solid #888;
|
133
|
+
border-top: 1px solid rgba(255,255,255,0.5);
|
134
|
+
}
|
135
|
+
.ios .dw .dwb {
|
136
|
+
margin: 0 5px;
|
137
|
+
padding: 0 10px;
|
138
|
+
display: inline-block;
|
139
|
+
font-size: 12px;
|
140
|
+
height: 26px;
|
141
|
+
line-height: 26px;
|
142
|
+
border: 1px solid #254a93;
|
143
|
+
background: #2461e6;
|
144
|
+
background: linear-gradient(#779be9,#376fe0 50%,#2260dd 50%);
|
145
|
+
background: -webkit-gradient(linear,left top,left bottom,from(#779be9),color-stop(0.5, #376fe0),color-stop(0.5, #2260dd));
|
146
|
+
background: -moz-linear-gradient(#779be9,#376fe0 50%,#2260dd 50%);
|
147
|
+
background: -o-linear-gradient(#779be9,#376fe0 50%,#2260dd 50%);
|
148
|
+
box-shadow: 0 1px 0 rgba(255,255,255,0.3);
|
149
|
+
-webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.3);
|
150
|
+
}
|
151
|
+
.ios .dwb-c .dwb,.ios .dwb-n .dwb {
|
152
|
+
border: 1px solid #1f1f1f;
|
153
|
+
background: #1a1a1a;
|
154
|
+
background: linear-gradient(#7b7b7b,#1a1a1a 50%,#000 50%);
|
155
|
+
background: -webkit-gradient(linear,left top,left bottom,from(#7b7b7b),color-stop(0.5, #1a1a1a),color-stop(0.5, #000));
|
156
|
+
background: -moz-linear-gradient(#7b7b7b,#1a1a1a 50%,#000 50%);
|
157
|
+
background: -o-linear-gradient(#7b7b7b,#1a1a1a 50%,#000 50%);
|
158
|
+
}
|
159
|
+
.ios .dwb-a {
|
160
|
+
opacity: .8;
|
161
|
+
filter: alpha(opacity=80);
|
162
|
+
}
|
163
|
+
.ios .dw .dwwb {
|
164
|
+
color: #fff;
|
165
|
+
border: 0;
|
166
|
+
background: #3f4e68;
|
167
|
+
background: linear-gradient(#c7d1e2 0%,#808ea6 50%,#75859f 50%,#3f4e68 100%);
|
168
|
+
background: -webkit-gradient(linear,left bottom,left top,from(#3f4e68),color-stop(0.5, #75859f),color-stop(0.5, #808ea6),to(#c7d1e2));
|
169
|
+
background: -moz-linear-gradient(#c7d1e2 0%,#808ea6 50%,#75859f 50%,#3f4e68 100%);
|
170
|
+
background: -o-linear-gradient(#c7d1e2 0%,#808ea6 50%,#75859f 50%,#3f4e68 100%);
|
171
|
+
}
|
172
|
+
.ios .dw .dwwl .dwb-a {
|
173
|
+
background: #252c36;
|
174
|
+
background: linear-gradient(#6b6e75 0%,#272e38 50%,#171e28 50%,#252c36 100%);
|
175
|
+
background: -webkit-gradient(linear,left bottom,left top,from(#252c36),color-stop(0.5, #171e28),color-stop(0.5, #272e38),to(#6b6e75));
|
176
|
+
background: -moz-linear-gradient(#6b6e75 0%,#272e38 50%,#171e28 50%,#252c36 100%);
|
177
|
+
background: -o-linear-gradient(#6b6e75 0%,#272e38 50%,#171e28 50%,#252c36 100%);
|
178
|
+
}
|
179
|
+
.ios .dwb-s, .ios .dwb-n {
|
180
|
+
width: auto;
|
181
|
+
float: right;
|
182
|
+
text-align: right;
|
183
|
+
}
|
184
|
+
.ios .dwb-c {
|
185
|
+
width: auto;
|
186
|
+
float: left;
|
187
|
+
text-align: left;
|
188
|
+
}
|
189
|
+
/* Bubble positioning */
|
190
|
+
.ios.dw-bubble .dw {
|
191
|
+
padding: 6px;
|
192
|
+
background: #afafaf;
|
193
|
+
background: linear-gradient(#afafaf, #1b2530 30%);
|
194
|
+
background: -webkit-gradient(linear,left top,left bottom,from(#afafaf),color-stop(0.3, #1b2530));
|
195
|
+
background: -moz-linear-gradient(#afafaf, #1b2530 30%);
|
196
|
+
background: -o-linear-gradient(#afafaf, #1b2530 30%);
|
197
|
+
box-shadow: 0 0 25px rgba(0,0,0,0.7);
|
198
|
+
border-radius: 5px;
|
199
|
+
-webkit-border-radius: 5px;
|
200
|
+
-webkit-box-shadow: 0 0 25px rgba(0,0,0,0.7);
|
201
|
+
}
|
202
|
+
.ios .dw-bubble-bottom .dw-arr {
|
203
|
+
border-color: transparent transparent #2d3034 transparent;
|
204
|
+
}
|
205
|
+
.ios .dw-bubble-bottom .dw-arr:after {
|
206
|
+
content: '';
|
207
|
+
position: absolute;
|
208
|
+
top: -16px;
|
209
|
+
left: -17px;
|
210
|
+
border: 17px solid #afafaf;
|
211
|
+
border-color: transparent transparent #afafaf transparent;
|
212
|
+
}
|
213
|
+
.ios .dw-bubble-top .dw-arr {
|
214
|
+
border-color: #1b2530 transparent transparent transparent;
|
215
|
+
}
|
@@ -0,0 +1,249 @@
|
|
1
|
+
.wp .dw {
|
2
|
+
background: #1f1f1f;
|
3
|
+
border-radius: 0;
|
4
|
+
-webkit-border-radius: 0;
|
5
|
+
}
|
6
|
+
.wp .dwwr {
|
7
|
+
padding: 10px;
|
8
|
+
}
|
9
|
+
.wp .dwv {
|
10
|
+
display: none;
|
11
|
+
}
|
12
|
+
.wp .dwc {
|
13
|
+
padding: 0;
|
14
|
+
margin: 0;
|
15
|
+
vertical-align: middle;
|
16
|
+
}
|
17
|
+
.wp .dwwc {
|
18
|
+
padding: 3px;
|
19
|
+
background: none;
|
20
|
+
}
|
21
|
+
.wp .dwwl {
|
22
|
+
margin: 0;
|
23
|
+
background: none;
|
24
|
+
}
|
25
|
+
.wp .dwl {
|
26
|
+
display: none;
|
27
|
+
}
|
28
|
+
.wp .dw .dwwl .dww {
|
29
|
+
margin: 0 3px;
|
30
|
+
background: none;
|
31
|
+
border: 0;
|
32
|
+
color: #fff;
|
33
|
+
}
|
34
|
+
.wp .dw .dww li {
|
35
|
+
position: relative;
|
36
|
+
padding: 0;
|
37
|
+
font-size: 26px;
|
38
|
+
letter-spacing: -1px;
|
39
|
+
text-align: left;
|
40
|
+
text-shadow: none;
|
41
|
+
opacity: 0;
|
42
|
+
box-sizing: border-box;
|
43
|
+
filter: Alpha(Opacity=0);
|
44
|
+
transition: opacity .3s linear;
|
45
|
+
-webkit-box-sizing: border-box;
|
46
|
+
-webkit-transition: opacity .3s linear;
|
47
|
+
-moz-box-sizing: border-box;
|
48
|
+
-moz-transition: opacity .3s linear;
|
49
|
+
}
|
50
|
+
.wp .dw-i {
|
51
|
+
position: relative;
|
52
|
+
top: 4%;
|
53
|
+
height: 92%;
|
54
|
+
padding: 0 5px;
|
55
|
+
border: 1px solid #4c4c4c;
|
56
|
+
box-sizing: border-box;
|
57
|
+
-webkit-box-sizing: border-box;
|
58
|
+
-moz-box-sizing: border-box;
|
59
|
+
filter: inherit;
|
60
|
+
}
|
61
|
+
.wp .dw .wpa li, .wp .dw .dwa li {
|
62
|
+
opacity: .3;
|
63
|
+
filter: Alpha(Opacity=30);
|
64
|
+
}
|
65
|
+
.wp .dw .wpa li.dw-v, .wp .dw .dwa li.dw-v {
|
66
|
+
opacity: 1;
|
67
|
+
filter: Alpha(Opacity=100);
|
68
|
+
}
|
69
|
+
.wp .dw-day, .wp .dw-mon {
|
70
|
+
display: block;
|
71
|
+
color: #a9a9a9;
|
72
|
+
line-height: 18px;
|
73
|
+
font-size: 11px;
|
74
|
+
letter-spacing: normal;
|
75
|
+
position: absolute;
|
76
|
+
bottom: 0;
|
77
|
+
filter: inherit;
|
78
|
+
}
|
79
|
+
.wp .dww li.dw-sel {
|
80
|
+
opacity: 1;
|
81
|
+
filter: Alpha(Opacity=100);
|
82
|
+
}
|
83
|
+
.wp .dww li.dw-sel .dw-i {
|
84
|
+
background: #4c4c4c;
|
85
|
+
transition: background-color .1s linear;
|
86
|
+
-webkit-transition: background-color .1s linear;
|
87
|
+
-moz-transition: background-color .1s linear;
|
88
|
+
}
|
89
|
+
.wp .dww li.dw-hl {
|
90
|
+
background: none;
|
91
|
+
}
|
92
|
+
.wp .dww li.dw-hl .dw-i {
|
93
|
+
background: #4c4c4c;
|
94
|
+
}
|
95
|
+
.wp .dwa li.dw-sel .dw-i {
|
96
|
+
background-color: transparent;
|
97
|
+
}
|
98
|
+
.wp .dwwo {
|
99
|
+
display: none;
|
100
|
+
}
|
101
|
+
.wp .dwwol {
|
102
|
+
display: none;
|
103
|
+
}
|
104
|
+
.wp .dwbc {
|
105
|
+
padding: 0;
|
106
|
+
}
|
107
|
+
.wp .dwbw {
|
108
|
+
float: none;
|
109
|
+
width: auto;
|
110
|
+
}
|
111
|
+
.wp .dw .dwb {
|
112
|
+
position: relative;
|
113
|
+
top: 0;
|
114
|
+
min-width: 32px;
|
115
|
+
display: inline-block;
|
116
|
+
height: 20px;
|
117
|
+
padding: 29px 5px 0 5px;
|
118
|
+
background: none;
|
119
|
+
box-shadow: none;
|
120
|
+
line-height: 20px;
|
121
|
+
font-size: 11px;
|
122
|
+
font-weight: normal;
|
123
|
+
text-transform: lowercase;
|
124
|
+
text-shadow: none;
|
125
|
+
transition: top .1s linear;
|
126
|
+
-webkit-box-shadow: none;
|
127
|
+
-webkit-transition: top .1s linear;
|
128
|
+
-moz-transition: top .1s linear;
|
129
|
+
}
|
130
|
+
.wp .dwb:after {
|
131
|
+
content: '';
|
132
|
+
position: absolute;
|
133
|
+
top: 3px;
|
134
|
+
left: 50%;
|
135
|
+
width: 26px;
|
136
|
+
height: 26px;
|
137
|
+
margin: 0 -13px;
|
138
|
+
background: url(wp_icons.png) center center no-repeat;
|
139
|
+
}
|
140
|
+
.wp .dwb-s .dwb:after {
|
141
|
+
background-position: 0 0;
|
142
|
+
}
|
143
|
+
.wp .dwb-c .dwb:after {
|
144
|
+
background-position: -26px 0;
|
145
|
+
}
|
146
|
+
.wp .dwb-n .dwb:after {
|
147
|
+
background-position: -52px 0;
|
148
|
+
}
|
149
|
+
.wp .dwb-s .dwb-a:after {
|
150
|
+
background-position: 0 -26px;
|
151
|
+
}
|
152
|
+
.wp .dwb-c .dwb-a:after {
|
153
|
+
background-position: -26px -26px;
|
154
|
+
}
|
155
|
+
.wp .dwb-n .dwb-a:after {
|
156
|
+
background-position: -52px -26px;
|
157
|
+
}
|
158
|
+
.wp .dwb.dwb-a {
|
159
|
+
top: -3px;
|
160
|
+
}
|
161
|
+
/* +/- buttons */
|
162
|
+
.wp .dw .dwwl .dwb-a {
|
163
|
+
background: #1f1f1f;
|
164
|
+
}
|
165
|
+
.wp .dw .dwwb {
|
166
|
+
background: #1f1f1f;
|
167
|
+
border-radius: 0;
|
168
|
+
box-shadow: none;
|
169
|
+
box-sizing: border-box;
|
170
|
+
color: #a9a9a9;
|
171
|
+
-webkit-box-shadow: none;
|
172
|
+
-webkit-border-radius: 0;
|
173
|
+
-webkit-box-sizing: border-box;
|
174
|
+
-moz-box-sizing: border-box;
|
175
|
+
}
|
176
|
+
.wp .dwwb span {
|
177
|
+
position: absolute;
|
178
|
+
top: 50%;
|
179
|
+
left: 50%;
|
180
|
+
width: 26px;
|
181
|
+
height: 26px;
|
182
|
+
margin: -13px;
|
183
|
+
display: block;
|
184
|
+
background: url(wp_icons.png) center center no-repeat;
|
185
|
+
text-indent: -9999px;
|
186
|
+
}
|
187
|
+
.wp .dwwbp span {
|
188
|
+
background-position: -78px 0;
|
189
|
+
}
|
190
|
+
.wp .dwwbp.dwb-a span {
|
191
|
+
background-position: -78px -26px;
|
192
|
+
}
|
193
|
+
.wp .dwwbm span {
|
194
|
+
background-position: -104px 0;
|
195
|
+
}
|
196
|
+
.wp .dwwbm.dwb-a span {
|
197
|
+
background-position: -104px -26px;
|
198
|
+
}
|
199
|
+
/* Bubble positioning */
|
200
|
+
.wp .dw-bubble-bottom .dw-arr {
|
201
|
+
border-color: transparent transparent #1f1f1f transparent;
|
202
|
+
}
|
203
|
+
.wp .dw-bubble-top .dw-arr {
|
204
|
+
border-color: #1f1f1f transparent transparent transparent;
|
205
|
+
}
|
206
|
+
/* Light version */
|
207
|
+
.wp.light .dw {
|
208
|
+
background: #dedede;
|
209
|
+
}
|
210
|
+
.wp.light .dwv {
|
211
|
+
color: #000;
|
212
|
+
}
|
213
|
+
.wp.light .dww li {
|
214
|
+
color: #000;
|
215
|
+
}
|
216
|
+
.wp.light li .dw-i {
|
217
|
+
border-color: #b5b5b5;
|
218
|
+
}
|
219
|
+
.wp.light li.dw-sel .dw-i {
|
220
|
+
background: #b5b5b5;
|
221
|
+
}
|
222
|
+
.wp.light li.dw-hl .dw-i {
|
223
|
+
background: #b5b5b5;
|
224
|
+
}
|
225
|
+
.wp.light .dw-day, .wp.light .dw-mon {
|
226
|
+
color: #6b6b6b;
|
227
|
+
}
|
228
|
+
.wp.light .dwa li.dw-sel .dw-i {
|
229
|
+
background-color: transparent;
|
230
|
+
}
|
231
|
+
.wp.light .dwb {
|
232
|
+
color: #000;
|
233
|
+
}
|
234
|
+
.wp.light .dwb:after {
|
235
|
+
background-image: url(wp_icons_light.png);
|
236
|
+
}
|
237
|
+
.wp.light .dw .dwwb {
|
238
|
+
background: #dedede;
|
239
|
+
}
|
240
|
+
.wp.light .dwwb span {
|
241
|
+
background-image: url(wp_icons_light.png);
|
242
|
+
}
|
243
|
+
/* Bubble positioning */
|
244
|
+
.wp.light .dw-bubble-bottom .dw-arr {
|
245
|
+
border-color: transparent transparent #dedede transparent;
|
246
|
+
}
|
247
|
+
.wp.light .dw-bubble-top .dw-arr {
|
248
|
+
border-color: #dedede transparent transparent transparent;
|
249
|
+
}
|