rapido-css 0.1.1 → 0.1.2
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/stylesheets/_default-styles.scss +352 -352
- data/stylesheets/_functions.scss +77 -50
- data/stylesheets/_susy.scss +15 -12
- data/stylesheets/components/_alerts.scss +21 -21
- data/stylesheets/components/_breadcrumbs.scss +15 -15
- data/stylesheets/components/_button-groups.scss +51 -53
- data/stylesheets/components/_buttons.scss +94 -97
- data/stylesheets/components/_captions.scss +45 -45
- data/stylesheets/components/_close.scss +27 -27
- data/stylesheets/components/_dropdowns.scss +121 -121
- data/stylesheets/components/_forms.scss +246 -248
- data/stylesheets/components/_grids.scss +35 -35
- data/stylesheets/components/_labels.scss +38 -38
- data/stylesheets/components/_modals.scss +242 -248
- data/stylesheets/components/_navs.scss +86 -91
- data/stylesheets/components/_pager.scss +53 -53
- data/stylesheets/components/_pagination.scss +83 -85
- data/stylesheets/components/_responsive-navs.scss +84 -84
- data/stylesheets/components/_sliders.scss +54 -58
- data/stylesheets/components/_tables.scss +69 -74
- data/stylesheets/components/_tabs.scss +54 -54
- data/stylesheets/components/_type.scss +134 -140
- data/stylesheets/{_rapido.scss → rapido.scss} +0 -8
- data/stylesheets/settings/_base.scss +23 -23
- data/stylesheets/settings/_colors.scss +13 -13
- data/stylesheets/settings/_components.scss +43 -42
- data/stylesheets/settings/_dimensions.scss +91 -91
- data/stylesheets/settings/_effects.scss +28 -14
- data/stylesheets/susy/{_susy_background.scss → _background.scss} +0 -0
- data/stylesheets/susy/{_susy_functions.scss → _functions.scss} +0 -0
- data/stylesheets/susy/{_susy_grid.scss → _grid.scss} +0 -0
- data/stylesheets/susy/{_susy_isolation.scss → _isolation.scss} +1 -0
- data/stylesheets/susy/{_susy_margin.scss → _margin.scss} +0 -0
- data/stylesheets/susy/{_susy_media.scss → _media.scss} +0 -0
- data/stylesheets/susy/{_susy_padding.scss → _padding.scss} +0 -0
- data/stylesheets/susy/{_susy_settings.scss → _settings.scss} +0 -0
- data/stylesheets/susy/{_susy_support.scss → _support.scss} +0 -0
- data/stylesheets/susy/{_susy_units.scss → _units.scss} +0 -0
- data/stylesheets/utilities/_animations.scss +638 -597
- data/stylesheets/utilities/_debug.scss +43 -43
- data/stylesheets/utilities/_helper-classes.scss +70 -54
- data/stylesheets/utilities/_icon-fonts.scss +90 -90
- data/stylesheets/utilities/_mixins.scss +390 -357
- metadata +20 -17
- checksums.yaml +0 -15
- data/stylesheets/config.rb +0 -8
@@ -1,4 +1,4 @@
|
|
1
|
-
/*
|
1
|
+
/*
|
2
2
|
|
3
3
|
Default Styles
|
4
4
|
|
@@ -10,11 +10,11 @@ to enable or disable.
|
|
10
10
|
|
11
11
|
Styleguide 30
|
12
12
|
|
13
|
-
|
13
|
+
*/
|
14
14
|
|
15
15
|
@if $default-styles {
|
16
16
|
|
17
|
-
/*
|
17
|
+
/*
|
18
18
|
|
19
19
|
Titles
|
20
20
|
|
@@ -27,16 +27,16 @@ Titles
|
|
27
27
|
|
28
28
|
Styleguide 30.1
|
29
29
|
|
30
|
-
|
30
|
+
*/
|
31
31
|
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
32
|
+
%h1 {}
|
33
|
+
%h2 {}
|
34
|
+
%h3 {}
|
35
|
+
%h4 {}
|
36
|
+
%h5 {}
|
37
|
+
%h6 {}
|
38
38
|
|
39
|
-
/*
|
39
|
+
/*
|
40
40
|
|
41
41
|
Inputs and Selects
|
42
42
|
|
@@ -46,30 +46,30 @@ Inputs and Selects
|
|
46
46
|
|
47
47
|
Styleguide 30.2
|
48
48
|
|
49
|
-
|
49
|
+
*/
|
50
50
|
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
51
|
+
%input {
|
52
|
+
border-color: $gray;
|
53
|
+
background-color: $grayLighter;
|
54
|
+
@include box-shadow(inset 0 1px 0 #fff);
|
55
|
+
@include background-image(linear-gradient(bottom, $white 0%, $grayLighter 100%));
|
56
56
|
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
57
|
+
&:focus {
|
58
|
+
@include background-image(linear-gradient(bottom, $white 50%, $grayLighter 100%));
|
59
|
+
}
|
60
|
+
}
|
61
61
|
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
62
|
+
%input-addon {
|
63
|
+
color: $text-color;
|
64
|
+
border-color: $grayLight;
|
65
|
+
background-color: $grayLighter;
|
66
|
+
}
|
67
67
|
|
68
68
|
%select {
|
69
69
|
@extend %input;
|
70
70
|
}
|
71
71
|
|
72
|
-
/*
|
72
|
+
/*
|
73
73
|
|
74
74
|
Buttons
|
75
75
|
|
@@ -83,103 +83,103 @@ Buttons
|
|
83
83
|
|
84
84
|
Styleguide 30.3
|
85
85
|
|
86
|
-
|
86
|
+
*/
|
87
87
|
|
88
88
|
// Default
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
// Active state
|
105
|
-
&.active,
|
106
|
-
&:active {
|
107
|
-
@include background-image(linear-gradient(top, $grayLight 0%, $grayLighter 100%));
|
108
|
-
}
|
109
|
-
}
|
110
|
-
|
111
|
-
%btn__disabled {
|
112
|
-
color: $grayLight;
|
113
|
-
border-color: $grayLight;
|
114
|
-
background: #FFF;
|
115
|
-
}
|
116
|
-
|
117
|
-
%btn__current {
|
118
|
-
@include box-shadow(0 0 0);
|
119
|
-
background: $gray;
|
120
|
-
color: $white;
|
121
|
-
}
|
122
|
-
|
123
|
-
%btn--primary {
|
124
|
-
color: #fff;
|
125
|
-
border-color: darken(green, 10%);
|
126
|
-
background-color: green;
|
127
|
-
@include background-image(linear-gradient(bottom, darken(green, 10%) 0%, green 100%));
|
128
|
-
|
129
|
-
// Hover/focus state
|
130
|
-
&:hover,
|
131
|
-
&.hover,
|
132
|
-
&:focus {
|
133
|
-
color: #fff;
|
134
|
-
@include background-image(linear-gradient(bottom, darken(green, 10%) 0%, lighten(green, 6) 100%));
|
135
|
-
}
|
136
|
-
|
137
|
-
// Active state
|
138
|
-
&.active,
|
139
|
-
&:active {
|
140
|
-
@include background-image(linear-gradient(top, darken(green, 10%) 0%, green 100%));
|
141
|
-
}
|
142
|
-
}
|
143
|
-
|
144
|
-
%btn--secondary {
|
145
|
-
color: #fff;
|
146
|
-
border-color: darken(red, 10%);
|
147
|
-
background-color: red;
|
148
|
-
@include background-image(linear-gradient(bottom, darken(red, 10%) 0%, red 100%));
|
149
|
-
|
150
|
-
// Hover/focus state
|
151
|
-
&:hover,
|
152
|
-
&.hover,
|
153
|
-
&:focus {
|
154
|
-
color: #fff;
|
155
|
-
@include background-image(linear-gradient(bottom, darken(red, 10%) 0%, lighten(red, 20) 100%));
|
156
|
-
}
|
157
|
-
|
158
|
-
// Active state
|
159
|
-
&.active,
|
160
|
-
&.hover,
|
161
|
-
&:active {
|
162
|
-
@include background-image(linear-gradient(bottom, darken(red, 10%) 0%, red 100%));
|
163
|
-
}
|
164
|
-
}
|
89
|
+
%btn--default {
|
90
|
+
color: $text-color;
|
91
|
+
border-color: $gray;
|
92
|
+
background-color: $grayLight;
|
93
|
+
@include box-shadow(inset 0 1px 0 rgba(255,255,255,.5));
|
94
|
+
@include background-image(linear-gradient(bottom, $grayLight 0%, $grayLighter 100%));
|
95
|
+
|
96
|
+
// Hover/focus state
|
97
|
+
&:hover,
|
98
|
+
&.hover,
|
99
|
+
&:focus {
|
100
|
+
color: inherit;
|
101
|
+
@include background-image(linear-gradient(bottom, $grayLight 0%, $white 100%));
|
102
|
+
}
|
165
103
|
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
text-align: center;
|
173
|
-
text-decoration: none;
|
104
|
+
// Active state
|
105
|
+
&.active,
|
106
|
+
&:active {
|
107
|
+
@include background-image(linear-gradient(top, $grayLight 0%, $grayLighter 100%));
|
108
|
+
}
|
109
|
+
}
|
174
110
|
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
111
|
+
%btn__disabled {
|
112
|
+
color: $grayLight;
|
113
|
+
border-color: $grayLight;
|
114
|
+
background: #FFF;
|
115
|
+
}
|
180
116
|
|
117
|
+
%btn__current {
|
118
|
+
@include box-shadow(0 0 0);
|
119
|
+
background: $gray;
|
120
|
+
color: $white;
|
121
|
+
}
|
181
122
|
|
182
|
-
|
123
|
+
%btn--primary {
|
124
|
+
color: #fff;
|
125
|
+
border-color: darken(green, 10%);
|
126
|
+
background-color: green;
|
127
|
+
@include background-image(linear-gradient(bottom, darken(green, 10%) 0%, green 100%));
|
128
|
+
|
129
|
+
// Hover/focus state
|
130
|
+
&:hover,
|
131
|
+
&.hover,
|
132
|
+
&:focus {
|
133
|
+
color: #fff;
|
134
|
+
@include background-image(linear-gradient(bottom, darken(green, 10%) 0%, lighten(green, 6) 100%));
|
135
|
+
}
|
136
|
+
|
137
|
+
// Active state
|
138
|
+
&.active,
|
139
|
+
&:active {
|
140
|
+
@include background-image(linear-gradient(top, darken(green, 10%) 0%, green 100%));
|
141
|
+
}
|
142
|
+
}
|
143
|
+
|
144
|
+
%btn--secondary {
|
145
|
+
color: #fff;
|
146
|
+
border-color: darken(red, 10%);
|
147
|
+
background-color: red;
|
148
|
+
@include background-image(linear-gradient(bottom, darken(red, 10%) 0%, red 100%));
|
149
|
+
|
150
|
+
// Hover/focus state
|
151
|
+
&:hover,
|
152
|
+
&.hover,
|
153
|
+
&:focus {
|
154
|
+
color: #fff;
|
155
|
+
@include background-image(linear-gradient(bottom, darken(red, 10%) 0%, lighten(red, 20) 100%));
|
156
|
+
}
|
157
|
+
|
158
|
+
// Active state
|
159
|
+
&.active,
|
160
|
+
&.hover,
|
161
|
+
&:active {
|
162
|
+
@include background-image(linear-gradient(bottom, darken(red, 10%) 0%, red 100%));
|
163
|
+
}
|
164
|
+
}
|
165
|
+
|
166
|
+
// Generic style for buttons For the scripts
|
167
|
+
%btn--scripts {
|
168
|
+
@include alpha-color(#000, .6, background);
|
169
|
+
color: #fff;
|
170
|
+
cursor: pointer;
|
171
|
+
display: block;
|
172
|
+
text-align: center;
|
173
|
+
text-decoration: none;
|
174
|
+
|
175
|
+
&:hover {
|
176
|
+
color: #fff;
|
177
|
+
@include alpha-color(#000, .8, background);
|
178
|
+
}
|
179
|
+
}
|
180
|
+
|
181
|
+
|
182
|
+
/*
|
183
183
|
|
184
184
|
Captions
|
185
185
|
|
@@ -187,15 +187,15 @@ Captions
|
|
187
187
|
|
188
188
|
Styleguide 30.4
|
189
189
|
|
190
|
-
|
190
|
+
*/
|
191
191
|
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
192
|
+
%caption {
|
193
|
+
@include alpha-color(#000, .8, background);
|
194
|
+
color: #fff;
|
195
|
+
padding: $captions-padding;
|
196
|
+
}
|
197
197
|
|
198
|
-
/*
|
198
|
+
/*
|
199
199
|
|
200
200
|
Labels (Badges & Pills)
|
201
201
|
|
@@ -203,14 +203,14 @@ Labels (Badges & Pills)
|
|
203
203
|
|
204
204
|
Styleguide 30.5
|
205
205
|
|
206
|
-
|
206
|
+
*/
|
207
207
|
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
208
|
+
%pill {
|
209
|
+
@include alpha-color(#000, .35);
|
210
|
+
color: $white;
|
211
|
+
}
|
212
212
|
|
213
|
-
/*
|
213
|
+
/*
|
214
214
|
|
215
215
|
Dropdowns
|
216
216
|
|
@@ -219,33 +219,33 @@ Dropdowns
|
|
219
219
|
|
220
220
|
Styleguide 30.6
|
221
221
|
|
222
|
-
|
222
|
+
*/
|
223
223
|
|
224
224
|
|
225
225
|
|
226
|
-
|
227
|
-
|
228
|
-
|
226
|
+
%dropdown {
|
227
|
+
background: $grayLighter;
|
228
|
+
border-color: $gray;
|
229
229
|
|
230
|
-
|
230
|
+
.divider { @include nav-divider($gray); margin-top: -1px }
|
231
231
|
|
232
|
-
|
233
|
-
|
232
|
+
> li > a,
|
233
|
+
> li > label { border-bottom: 1px dotted $gray; }
|
234
234
|
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
235
|
+
> li > a:hover,
|
236
|
+
> li > a:focus {
|
237
|
+
text-decoration: none;
|
238
|
+
background-color: $grayLight;
|
239
|
+
}
|
240
|
+
}
|
241
241
|
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
242
|
+
%dropdown--open {
|
243
|
+
background: $grayLighter;
|
244
|
+
border-bottom: 1px solid $grayLighter;
|
245
|
+
}
|
246
246
|
|
247
247
|
|
248
|
-
/*
|
248
|
+
/*
|
249
249
|
|
250
250
|
Tables
|
251
251
|
|
@@ -256,37 +256,37 @@ Tables
|
|
256
256
|
|
257
257
|
Styleguide 30.7
|
258
258
|
|
259
|
-
|
259
|
+
*/
|
260
260
|
|
261
261
|
|
262
262
|
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
263
|
+
%table--bordered {
|
264
|
+
thead {
|
265
|
+
th, td {
|
266
|
+
background-color: $gray;
|
267
|
+
color: #FFF;
|
268
|
+
}
|
269
|
+
}
|
270
|
+
tbody {
|
271
|
+
td { border-bottom: 1px solid $grayLight; }
|
272
|
+
}
|
273
|
+
}
|
274
274
|
|
275
|
-
|
275
|
+
%table--striped { background-color: $grayLighter;}
|
276
276
|
|
277
|
-
|
277
|
+
%table--hover { background-color: $grayLighter;}
|
278
278
|
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
279
|
+
%table--sortable {
|
280
|
+
thead {
|
281
|
+
th {
|
282
|
+
&:hover {background: $grayDark }
|
283
|
+
&.sorting-asc:after {content: "\25BC"; }
|
284
|
+
&.sorting-desc:after {content: "\25B2";}
|
285
|
+
}
|
286
|
+
}
|
287
|
+
}
|
288
288
|
|
289
|
-
/*
|
289
|
+
/*
|
290
290
|
|
291
291
|
Navs
|
292
292
|
|
@@ -297,21 +297,21 @@ Navs
|
|
297
297
|
|
298
298
|
Styleguide 30.8
|
299
299
|
|
300
|
-
|
300
|
+
*/
|
301
301
|
|
302
|
-
|
302
|
+
%nav--btn {}
|
303
303
|
|
304
|
-
|
304
|
+
%nav--btn__hover { background-color: $grayLighter;}
|
305
305
|
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
306
|
+
%nav--btn__active {
|
307
|
+
color: $white;
|
308
|
+
background-color: $link-color;
|
309
|
+
}
|
310
310
|
|
311
|
-
|
311
|
+
%nav--btn__disabled {color: $grayLight;}
|
312
312
|
|
313
313
|
|
314
|
-
/*
|
314
|
+
/*
|
315
315
|
|
316
316
|
Breadcrumbs
|
317
317
|
|
@@ -320,27 +320,27 @@ Breadcrumbs
|
|
320
320
|
|
321
321
|
Styleguide 30.9
|
322
322
|
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
323
|
+
*/
|
324
|
+
|
325
|
+
%breadcrumbs {
|
326
|
+
> li {
|
327
|
+
&:after {
|
328
|
+
color: #ccc;
|
329
|
+
content: "›";
|
330
|
+
padding: 0 10px;
|
331
|
+
}
|
332
|
+
&:last-child {
|
333
|
+
&:after {
|
334
|
+
content: "";
|
335
|
+
padding-right: 0;
|
336
|
+
}
|
337
|
+
}
|
338
|
+
}
|
339
|
+
}
|
340
340
|
|
341
341
|
%breadcrumbs__current { color: $grayLight; }
|
342
342
|
|
343
|
-
/*
|
343
|
+
/*
|
344
344
|
|
345
345
|
Pagination
|
346
346
|
|
@@ -352,17 +352,17 @@ Pagination
|
|
352
352
|
|
353
353
|
Styleguide 30.10
|
354
354
|
|
355
|
-
|
355
|
+
*/
|
356
356
|
|
357
357
|
|
358
358
|
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
359
|
+
%pagination--btn { @extend %btn--default; }
|
360
|
+
%pagination--btn__hover { @extend %btn--default:hover;}
|
361
|
+
%pagination--btn__active { }
|
362
|
+
%pagination--btn__current { @extend %btn__current; }
|
363
|
+
%pagination--btn__disabled { @extend %btn__disabled; }
|
364
364
|
|
365
|
-
/*
|
365
|
+
/*
|
366
366
|
|
367
367
|
Pager
|
368
368
|
|
@@ -373,14 +373,14 @@ Pager
|
|
373
373
|
|
374
374
|
Styleguide 30.11
|
375
375
|
|
376
|
-
|
376
|
+
*/
|
377
377
|
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
378
|
+
%pager--btn { @extend %btn--default; }
|
379
|
+
%pager--btn__hover { }
|
380
|
+
%pager--btn__active { }
|
381
|
+
%pager--btn__disabled { @extend %btn__disabled; }
|
382
382
|
|
383
|
-
/*
|
383
|
+
/*
|
384
384
|
|
385
385
|
Modals
|
386
386
|
|
@@ -396,74 +396,74 @@ Modals
|
|
396
396
|
|
397
397
|
Styleguide 30.12
|
398
398
|
|
399
|
-
|
400
|
-
|
399
|
+
*/
|
401
400
|
|
402
401
|
|
403
|
-
// Buttons
|
404
|
-
%modal__btn {
|
405
|
-
@extend %btn--scripts;
|
406
|
-
@include square($modal-btn-size);
|
407
|
-
line-height: $modal-btn-size;
|
408
|
-
}
|
409
402
|
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
403
|
+
// Buttons
|
404
|
+
%modal__btn {
|
405
|
+
@extend %btn--scripts;
|
406
|
+
@include square($modal-btn-size);
|
407
|
+
line-height: $modal-btn-size;
|
408
|
+
}
|
414
409
|
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
&:hover {
|
420
|
-
color: $link-color-hover;
|
421
|
-
}
|
422
|
-
}
|
410
|
+
%modal__close {
|
411
|
+
$offset: -$modal-btn-size;
|
412
|
+
@include position(absolute, $offset .5em 0 0);
|
413
|
+
}
|
423
414
|
|
424
|
-
|
415
|
+
%modal__close--alt {
|
416
|
+
@include position(absolute, 0px 0px 0 0);
|
417
|
+
background-color: transparent;
|
418
|
+
color: $link-color;
|
419
|
+
&:hover {
|
420
|
+
color: $link-color-hover;
|
421
|
+
}
|
422
|
+
}
|
425
423
|
|
426
|
-
|
427
|
-
%modal__overlay {
|
428
|
-
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR4nGNiqAcAAIgAgoGu+rEAAAAASUVORK5CYII=');
|
429
|
-
}
|
424
|
+
%modal__btnbar-size {@include size($modal-btn-size, $modal-btn-size * 5);}
|
430
425
|
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
426
|
+
// Other styles
|
427
|
+
%modal__overlay {
|
428
|
+
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR4nGNiqAcAAIgAgoGu+rEAAAAASUVORK5CYII=');
|
429
|
+
}
|
435
430
|
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
431
|
+
%modal__skin {
|
432
|
+
@include box-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
|
433
|
+
@include border-radius($base-border-radius);
|
434
|
+
background: #fff;
|
435
|
+
|
436
|
+
// Icons
|
437
|
+
.fancybox-close:after { @include icon-font(\f00d); }
|
438
|
+
.fancybox-prev span:after { @include icon-font(\f053); }
|
439
|
+
.fancybox-next span:after { @include icon-font(\f054); }
|
440
|
+
.btnPrev:after { @include icon-font(\f04a); }
|
441
|
+
.btnNext:after { @include icon-font(\f051); }
|
442
|
+
.btnPlay:after { @include icon-font(\f04b); }
|
443
|
+
.btnPlayOn:after { @include icon-font(\f04c); }
|
444
|
+
.btnToggle:after { @include icon-font(\f065); }
|
445
|
+
.btnToggleOn:after { @include icon-font(\f066); }
|
446
|
+
.btnClose:after { @include icon-font(\f00d); }
|
447
|
+
}
|
448
448
|
|
449
|
-
|
449
|
+
%modal__nav { margin-top: (0 - ($modal-btn-size / 2)); }
|
450
450
|
|
451
|
-
|
451
|
+
%modal__caption { @extend %caption; }
|
452
452
|
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
453
|
+
%modal__loading {
|
454
|
+
margin-top: -($loader-ico-size / 2);
|
455
|
+
margin-left: -($loader-ico-size / 2);
|
456
|
+
@include opacity(.8);
|
457
457
|
|
458
|
-
|
459
|
-
|
460
|
-
|
458
|
+
div {
|
459
|
+
@extend %loader-ico;
|
460
|
+
@include square($loader-ico-size);
|
461
461
|
|
462
|
-
|
463
|
-
|
462
|
+
}
|
463
|
+
}
|
464
464
|
|
465
465
|
|
466
|
-
/*
|
466
|
+
/*
|
467
467
|
|
468
468
|
Sliders
|
469
469
|
|
@@ -474,45 +474,45 @@ Sliders
|
|
474
474
|
|
475
475
|
Styleguide 30.13
|
476
476
|
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
/*
|
477
|
+
*/
|
478
|
+
|
479
|
+
// Buttons
|
480
|
+
%slider__btn {
|
481
|
+
@extend %btn--scripts;
|
482
|
+
@include square($slider-btn-size);
|
483
|
+
line-height: $slider-btn-size;
|
484
|
+
margin-top: -($slider-btn-size / 2);
|
485
|
+
|
486
|
+
&.bx-prev i:after { @include icon-font(\f053); }
|
487
|
+
&.bx-next i:after { @include icon-font(\f054); }
|
488
|
+
}
|
489
|
+
|
490
|
+
// Pager
|
491
|
+
%slider__pager {
|
492
|
+
@include position(absolute, 0 0 -30px 0);
|
493
|
+
padding-top: 20px;
|
494
|
+
.bx-pager-item {
|
495
|
+
a {
|
496
|
+
@include border-radius(5px);
|
497
|
+
@include square(10px);
|
498
|
+
@include hide-text;
|
499
|
+
background: $grayLight;
|
500
|
+
margin: 0 5px;
|
501
|
+
&:hover, &.active { background: $gray; }
|
502
|
+
}
|
503
|
+
}
|
504
|
+
}
|
505
|
+
|
506
|
+
// Other styles
|
507
|
+
%slider__caption { @extend %caption; }
|
508
|
+
|
509
|
+
%slider__loading {
|
510
|
+
@extend %loader-ico;
|
511
|
+
@include alpha-color(#000, .60);
|
512
|
+
min-height: $loader-ico-size;
|
513
|
+
}
|
514
|
+
|
515
|
+
/*
|
516
516
|
|
517
517
|
Tabs
|
518
518
|
|
@@ -524,34 +524,34 @@ Tabs
|
|
524
524
|
|
525
525
|
Styleguide 30.14
|
526
526
|
|
527
|
-
|
527
|
+
*/
|
528
528
|
|
529
|
-
|
529
|
+
%tab__nav { }
|
530
530
|
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
531
|
+
%tab__btn {
|
532
|
+
background: $grayLighter;
|
533
|
+
border: solid 1px $grayLight;
|
534
|
+
border-bottom: none;
|
535
|
+
}
|
536
536
|
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
537
|
+
%tab__btn__hover {
|
538
|
+
background: $grayLighter;
|
539
|
+
border: solid 1px $grayLight;
|
540
|
+
border-bottom: none;
|
541
|
+
}
|
542
542
|
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
543
|
+
%tab__btn__current {
|
544
|
+
border-color: $gray;
|
545
|
+
&:after { background: $grayLighter; }
|
546
|
+
}
|
547
547
|
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
548
|
+
%tab__container {
|
549
|
+
border: solid 1px $gray;
|
550
|
+
background: $grayLighter;
|
551
|
+
}
|
552
552
|
|
553
553
|
|
554
|
-
/*
|
554
|
+
/*
|
555
555
|
|
556
556
|
Alerts
|
557
557
|
|
@@ -559,14 +559,14 @@ Alerts
|
|
559
559
|
|
560
560
|
Styleguide 30.15
|
561
561
|
|
562
|
-
|
562
|
+
*/
|
563
563
|
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
564
|
+
%alert {
|
565
|
+
background-color: $grayLighter;
|
566
|
+
border: 1px solid $grayLight;
|
567
|
+
}
|
568
568
|
|
569
|
-
/*
|
569
|
+
/*
|
570
570
|
|
571
571
|
Responsive Nav
|
572
572
|
|
@@ -575,35 +575,35 @@ Responsive Nav
|
|
575
575
|
|
576
576
|
Styleguide 30.16
|
577
577
|
|
578
|
-
|
578
|
+
*/
|
579
579
|
|
580
580
|
|
581
|
-
|
582
|
-
|
581
|
+
%nav--responsive {
|
582
|
+
background-color: $grayLighter;
|
583
583
|
|
584
|
-
|
584
|
+
a { padding: nth($btn-padding, 1) $wrapper-padding; }
|
585
585
|
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
586
|
+
> ul > li > a {
|
587
|
+
font-weight: bold;
|
588
|
+
background-color: $grayLight;
|
589
|
+
}
|
590
590
|
|
591
|
-
|
591
|
+
}
|
592
592
|
|
593
|
-
|
594
|
-
|
593
|
+
%nav__toggle {
|
594
|
+
@extend .btn;
|
595
595
|
|
596
|
-
|
597
|
-
|
598
|
-
|
596
|
+
span {
|
597
|
+
@include hide-text();
|
598
|
+
}
|
599
599
|
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
600
|
+
&:before {
|
601
|
+
@include icon-font(\f0c9);
|
602
|
+
}
|
603
|
+
}
|
604
604
|
|
605
605
|
|
606
|
-
/*
|
606
|
+
/*
|
607
607
|
|
608
608
|
Shared
|
609
609
|
|
@@ -614,7 +614,7 @@ Classes For other classes of generic elements
|
|
614
614
|
|
615
615
|
Styleguide 30.17
|
616
616
|
|
617
|
-
|
617
|
+
*/
|
618
618
|
|
619
619
|
%caret {
|
620
620
|
&:after {
|