uikit-sass-rails 1.1.0 → 1.2.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.
Files changed (31) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +5 -1
  3. data/lib/uikit/sass/rails/version.rb +1 -1
  4. data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
  5. data/vendor/assets/fonts/fontawesome-webfont.otf +0 -0
  6. data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
  7. data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
  8. data/vendor/assets/javascripts/uikit.js +1 -0
  9. data/vendor/assets/javascripts/uikit/addons/autocomplete.js +1 -1
  10. data/vendor/assets/javascripts/uikit/addons/cover.js +1 -1
  11. data/vendor/assets/javascripts/uikit/addons/datepicker.js +1 -1
  12. data/vendor/assets/javascripts/uikit/addons/form-password.js +1 -1
  13. data/vendor/assets/javascripts/uikit/addons/form-select.js +1 -1
  14. data/vendor/assets/javascripts/uikit/addons/htmleditor.js +1 -1
  15. data/vendor/assets/javascripts/uikit/addons/nestable.js +1 -1
  16. data/vendor/assets/javascripts/uikit/addons/notify.js +1 -1
  17. data/vendor/assets/javascripts/uikit/addons/pagination.js +1 -1
  18. data/vendor/assets/javascripts/uikit/addons/search.js +1 -1
  19. data/vendor/assets/javascripts/uikit/addons/sortable.js +12 -6
  20. data/vendor/assets/javascripts/uikit/addons/sticky.js +2 -3
  21. data/vendor/assets/javascripts/uikit/addons/timepicker.js +1 -1
  22. data/vendor/assets/javascripts/uikit/addons/upload.js +4 -1
  23. data/vendor/assets/javascripts/uikit/uikit.js +5 -7
  24. data/vendor/assets/stylesheets/extra/font-awesome.scss +2 -1
  25. data/vendor/assets/stylesheets/uikit/addons/uikit.addons.scss +61 -27
  26. data/vendor/assets/stylesheets/uikit/addons/uikit.almost-flat.addons.scss +61 -27
  27. data/vendor/assets/stylesheets/uikit/addons/uikit.gradient.addons.scss +65 -31
  28. data/vendor/assets/stylesheets/uikit/uikit.almost-flat.scss +579 -526
  29. data/vendor/assets/stylesheets/uikit/uikit.gradient.scss +589 -536
  30. data/vendor/assets/stylesheets/uikit/uikit.scss +573 -518
  31. metadata +4 -3
@@ -1,21 +1,25 @@
1
- /*! UIkit 2.9.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
1
+ /*! UIkit 2.10.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
2
2
 
3
3
  /* ========================================================================
4
- Component: Normalize
5
- ========================================================================== */
6
- /* Base
4
+ Component: Base
7
5
  ========================================================================== */
8
6
  /*
9
- * 1. Sets default font family to sans-serif.
10
- * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom.
7
+ * 1. Normalizes default `font-family` and sets `font-size` here to support `rem` units
8
+ * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
9
+ * 3. Style
11
10
  */
12
11
 
13
12
  html {
14
13
  /* 1 */
15
- font-family: sans-serif;
14
+ font: normal 14px / 20px "Helvetica Neue", Helvetica, Arial, sans-serif;
16
15
  /* 2 */
17
16
  -webkit-text-size-adjust: 100%;
18
17
  -ms-text-size-adjust: 100%;
18
+ /* 3 */
19
+ background: #ffffff;
20
+ color: #444444;
21
+ background-image: -webkit-radial-gradient(100% 100%, center, #ffffff, #ffffff);
22
+ background-image: radial-gradient(100% 100% at center, #ffffff, #ffffff);
19
23
  }
20
24
 
21
25
  /*
@@ -26,47 +30,6 @@ body {
26
30
  margin: 0;
27
31
  }
28
32
 
29
- /* HTML5 display definitions
30
- ========================================================================== */
31
- /*
32
- * Corrects `block` display not defined in IE 8/9.
33
- */
34
-
35
- article, aside, details, figcaption, figure, footer, header, main, nav, section, summary {
36
- display: block;
37
- }
38
-
39
- /*
40
- * 1. Correct `inline-block` display not defined in IE 8/9.
41
- * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
42
- */
43
-
44
- audio, canvas, progress, video {
45
- /* 1 */
46
- display: inline-block;
47
- /* 2 */
48
- vertical-align: baseline;
49
- }
50
-
51
- /*
52
- * Prevents modern browsers from displaying `audio` without controls.
53
- * Remove excess height in iOS 5 devices.
54
- */
55
-
56
- audio:not([controls]) {
57
- display: none;
58
- height: 0;
59
- }
60
-
61
- /*
62
- * Address `[hidden]` styling not present in IE 8/9.
63
- * Hide the `template` element in IE, Safari, and Firefox < 22.
64
- */
65
-
66
- [hidden], template {
67
- display: none;
68
- }
69
-
70
33
  /* Links
71
34
  ========================================================================== */
72
35
  /*
@@ -78,363 +41,69 @@ a {
78
41
  &:active, &:hover {
79
42
  outline: 0;
80
43
  }
44
+ color: #0077dd;
45
+ text-decoration: none;
46
+ cursor: pointer;
81
47
  }
82
48
 
83
49
  /*
84
50
  * Improves readability when focused and also mouse hovered in all browsers.
85
51
  */
86
52
 
87
- /* Text-level semantics
88
- ========================================================================== */
89
- /*
90
- * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
91
- */
92
-
93
- abbr[title] {
94
- border-bottom: 1px dotted;
95
- }
96
-
97
53
  /*
98
- * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
54
+ * Style
99
55
  */
100
56
 
101
- b, strong {
102
- font-weight: bold;
103
- }
104
-
105
- /*
106
- * Addresses styling not present in Safari 5 and Chrome.
107
- */
108
-
109
- dfn {
110
- font-style: italic;
111
- }
112
-
113
- /*
114
- * Addresses inconsistent and variable font size in all browsers.
115
- */
116
-
117
- small {
118
- font-size: 80%;
119
- }
120
-
121
- /*
122
- * Prevents `sub` and `sup` affecting `line-height` in all browsers.
123
- */
124
-
125
- sub {
126
- font-size: 75%;
127
- line-height: 0;
128
- position: relative;
129
- vertical-align: baseline;
130
- }
131
-
132
- sup {
133
- font-size: 75%;
134
- line-height: 0;
135
- position: relative;
136
- vertical-align: baseline;
137
- top: -0.5em;
138
- }
139
-
140
- sub {
141
- bottom: -0.25em;
142
- }
143
-
144
- /* Embedded content
145
- ========================================================================== */
146
- /*
147
- * Removes border when inside `a` element in IE 8/9.
148
- */
149
-
150
- img {
151
- border: 0;
57
+ .uk-link {
58
+ color: #0077dd;
59
+ text-decoration: none;
60
+ cursor: pointer;
152
61
  }
153
62
 
154
- /*
155
- * Corrects overflow displayed oddly in IE 9.
156
- */
157
-
158
- svg:not(:root) {
159
- overflow: hidden;
63
+ a:hover, .uk-link:hover {
64
+ color: #005599;
65
+ text-decoration: underline;
160
66
  }
161
67
 
162
- /* Grouping content
68
+ /* Text-level semantics
163
69
  ========================================================================== */
164
70
  /*
165
- * Addresses margin not present in IE 8/9 and Safari 5.
166
- */
167
-
168
- figure {
169
- margin: 0;
170
- }
171
-
172
- /*
173
- * Address differences between Firefox and other browsers.
71
+ * Addresses styling not present in Chrome, Safari, Opera and IE 8/9/10.
174
72
  */
175
73
 
176
- hr {
177
- -moz-box-sizing: content-box;
178
- box-sizing: content-box;
179
- height: 0;
180
- }
181
-
182
- /*
183
- * Contain overflow in all browsers.
184
- */
185
-
186
- pre {
187
- overflow: auto;
188
- }
189
-
190
- /*
191
- * Address odd `em`-unit font size rendering in all browsers.
192
- * 1. Consolas has a better baseline in running text compared to `Courier`
193
- */
194
-
195
- code, kbd, pre, samp {
196
- font-size: 1em;
197
- /* 1 */
198
- font-family: Consolas, monospace, serif;
74
+ abbr[title] {
75
+ border-bottom: 1px dotted;
199
76
  }
200
77
 
201
- /* Forms
202
- ========================================================================== */
203
78
  /*
204
- * 1. Correct color not being inherited. Known issue: affects color of disabled elements.
205
- * 2. Correct font properties not being inherited.
206
- * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
207
- * 4. Define consistent box sizing
208
- * Defaults: `button`, `input` and `textarea` have box sizing set to `content-box`
209
- * `select`, `input[type="checkbox"]` and `input[type="radio"]` have box sizing set to `border-box`
210
- * Exceptions: `input[type="checkbox"]` and `input[type="radio"]` have box sizing set to `content-box` in IE 8/9.
211
- * `input[type="search"]` has box sizing set to `border-box` in Safari 5 and Chrome.
79
+ * Addresses style set to `bolder` in Firefox
212
80
  */
213
81
 
214
- button, input, optgroup, select, textarea {
215
- /* 1 */
216
- color: inherit;
217
- /* 2 */
218
- font: inherit;
219
- /* 3 */
220
- margin: 0;
221
- /* 4 */
222
- -moz-box-sizing: border-box;
223
- -webkit-box-sizing: border-box;
224
- box-sizing: border-box;
225
- }
226
-
227
- /**
228
- * Don't inherit the `font-weight` (applied by a rule above).
229
- * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
230
- */
231
-
232
- optgroup {
82
+ b, strong {
233
83
  font-weight: bold;
234
84
  }
235
85
 
236
- /**
237
- * Address `overflow` set to `hidden` in IE 8/9/10.
238
- */
239
-
240
- button {
241
- overflow: visible;
242
- text-transform: none;
243
- }
244
-
245
- /*
246
- * Address inconsistent `text-transform` inheritance for `button` and `select`.
247
- * All other form control elements do not inherit `text-transform` values.
248
- * Correct `button` style inheritance in Firefox, IE 8+, and Opera
249
- * Correct `select` style inheritance in Firefox.
250
- */
251
-
252
- select {
253
- text-transform: none;
254
- }
255
-
256
- /*
257
- * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls.
258
- * 2. Correct inability to style clickable `input` types in iOS.
259
- * 3. Improve usability and consistency of cursor style between image-type `input` and others.
260
- */
261
-
262
- button, html input[type="button"] {
263
- /* 2 */
264
- -webkit-appearance: button;
265
- /* 3 */
266
- cursor: pointer;
267
- }
268
-
269
- input {
270
- &[type="reset"], &[type="submit"] {
271
- /* 2 */
272
- -webkit-appearance: button;
273
- /* 3 */
274
- cursor: pointer;
275
- }
276
- }
277
-
278
- /*
279
- * Re-set default cursor for disabled elements.
280
- */
281
-
282
- button:disabled, html input:disabled {
283
- cursor: default;
284
- }
285
-
286
86
  /*
287
- * Removes inner padding and border in Firefox 4+.
87
+ * 1. Address odd `em`-unit font size rendering in all browsers.
88
+ * 2. Consolas has a better baseline in running text compared to `Courier`
288
89
  */
289
90
 
290
- button::-moz-focus-inner {
291
- border: 0;
292
- padding: 0;
293
- }
294
-
295
- input {
296
- &::-moz-focus-inner {
297
- border: 0;
298
- padding: 0;
299
- }
300
- line-height: normal;
301
- &[type="checkbox"], &[type="radio"] {
91
+ :not(pre) > {
92
+ code, kbd, samp {
302
93
  /* 1 */
303
- padding: 0;
94
+ font-size: 12px;
304
95
  /* 2 */
305
- cursor: pointer;
306
- }
307
- &[type="number"] {
308
- &::-webkit-inner-spin-button, &::-webkit-outer-spin-button {
309
- height: auto;
310
- }
311
- }
312
- &[type="search"] {
313
- -webkit-appearance: textfield;
314
- &::-webkit-search-cancel-button, &::-webkit-search-decoration {
315
- -webkit-appearance: none;
316
- }
96
+ font-family: Consolas, monospace, serif;
97
+ /* 3 */
98
+ color: #dd0055;
99
+ white-space: nowrap;
100
+ padding: 0 4px;
101
+ border: 1px solid #dddddd;
102
+ border-radius: 3px;
103
+ background: #fafafa;
317
104
  }
318
105
  }
319
106
 
320
- /*
321
- * Address Firefox 4+ setting `line-height` on `input` using `!important` in the UA stylesheet.
322
- */
323
-
324
- /*
325
- * 1. Removes excess padding in IE 8/9.
326
- * 2. Improves consistency of cursor style for clickable elements
327
- */
328
-
329
- /*
330
- * Fix the cursor style for Chrome's increment/decrement buttons. For certain
331
- * `font-size` values of the `input`, it causes the cursor style of the
332
- * decrement button to change from `default` to `text`.
333
- */
334
-
335
- /*
336
- * Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
337
- */
338
-
339
- /*
340
- * Remove inner padding and search cancel button in Safari and Chrome on OS X.
341
- * Safari (but not Chrome) clips the cancel button when the search input has
342
- * padding (and `textfield` appearance).
343
- */
344
-
345
- /*
346
- * Define consistent border, margin, and padding.
347
- */
348
-
349
- fieldset {
350
- border: none;
351
- margin: 0;
352
- padding: 0;
353
- }
354
-
355
- /*
356
- * 1. Corrects color not being inherited in IE 8/9.
357
- * 2. Remove padding so people aren't caught out if they zero out fieldsets.
358
- */
359
-
360
- legend {
361
- /* 1 */
362
- border: 0;
363
- /* 2 */
364
- padding: 0;
365
- }
366
-
367
- /**
368
- * 1. Remove default vertical scrollbar in IE 8/9.
369
- * 2. Improve readability and alignment in all browsers.
370
- */
371
-
372
- textarea {
373
- overflow: auto;
374
- /* 1 */
375
- vertical-align: top;
376
- /* 2 */
377
- }
378
-
379
- /*
380
- * Removes placeholder transparency in Firefox.
381
- */
382
-
383
- ::-moz-placeholder {
384
- opacity: 1;
385
- }
386
-
387
- /* Tables
388
- ========================================================================== */
389
- /*
390
- * Remove most spacing between table cells.
391
- */
392
-
393
- table {
394
- border-collapse: collapse;
395
- border-spacing: 0;
396
- }
397
-
398
- /* ========================================================================
399
- Component: Base
400
- ========================================================================== */
401
- /* Body
402
- ========================================================================== */
403
- /*
404
- * `font-size` is set in `html` element to support the `rem` unit for font-sizes
405
- */
406
-
407
- html {
408
- font-size: 14px;
409
- }
410
-
411
- body {
412
- background: #ffffff;
413
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
414
- font-weight: normal;
415
- line-height: 20px;
416
- color: #444444;
417
- background-image: -webkit-radial-gradient(100% 100%, center, white, white);
418
- background-image: radial-gradient(100% 100% at center, white, white);
419
- }
420
-
421
- /* Text-level semantics
422
- ========================================================================== */
423
- /*
424
- * Links
425
- */
426
-
427
- a, .uk-link {
428
- color: #0077dd;
429
- text-decoration: none;
430
- cursor: pointer;
431
- }
432
-
433
- a:hover, .uk-link:hover {
434
- color: #005599;
435
- text-decoration: underline;
436
- }
437
-
438
107
  /*
439
108
  * Emphasize
440
109
  */
@@ -464,35 +133,51 @@ mark {
464
133
  }
465
134
 
466
135
  /*
467
- * Selection highlight
136
+ * Quote
468
137
  */
469
138
 
470
- ::-moz-selection, ::selection {
471
- background: #3399ff;
472
- color: #ffffff;
473
- text-shadow: none;
139
+ q {
140
+ font-style: italic;
474
141
  }
475
142
 
476
143
  /*
477
- * Abbreviation and definition
144
+ * Addresses inconsistent and variable font size in all browsers.
478
145
  */
479
146
 
480
- abbr[title] {
481
- cursor: help;
147
+ small {
148
+ font-size: 80%;
482
149
  }
483
150
 
484
- dfn[title] {
485
- cursor: help;
486
- border-bottom: 1px dotted;
487
- font-style: normal;
151
+ /*
152
+ * Prevents `sub` and `sup` affecting `line-height` in all browsers.
153
+ */
154
+
155
+ sub {
156
+ font-size: 75%;
157
+ line-height: 0;
158
+ position: relative;
159
+ vertical-align: baseline;
488
160
  }
489
161
 
490
- /* Embedded content
162
+ sup {
163
+ font-size: 75%;
164
+ line-height: 0;
165
+ position: relative;
166
+ vertical-align: baseline;
167
+ top: -0.5em;
168
+ }
169
+
170
+ sub {
171
+ bottom: -0.25em;
172
+ }
173
+
174
+ /* Images
491
175
  ========================================================================== */
492
176
  /*
493
177
  * 1. Responsiveness: Sets a maximum width relative to the parent and auto scales the height
494
178
  * 2. Corrects `max-width` behavior if padding and border are used
495
- * 3. Remove the gap between images and the bottom of their containers
179
+ * 3. Remove border when inside `a` element in IE 8/9/10.
180
+ * 4. Remove the gap between images and the bottom of their containers
496
181
  */
497
182
 
498
183
  img {
@@ -503,6 +188,8 @@ img {
503
188
  -moz-box-sizing: border-box;
504
189
  box-sizing: border-box;
505
190
  /* 3 */
191
+ border: 0;
192
+ /* 4 */
506
193
  vertical-align: middle;
507
194
  }
508
195
 
@@ -517,20 +204,34 @@ img {
517
204
  }
518
205
  }
519
206
 
520
- /* Spacing for block elements
207
+ /*
208
+ * Correct overflow not hidden in IE 9/10/11.
209
+ */
210
+
211
+ svg:not(:root) {
212
+ overflow: hidden;
213
+ }
214
+
215
+ /* Block elements
521
216
  ========================================================================== */
217
+ /*
218
+ * Reset margin
219
+ */
522
220
 
523
- p, hr, ul, ol, dl, blockquote, pre, address, fieldset, figure {
524
- margin: 0 0 15px 0;
221
+ blockquote, figure {
222
+ margin: 0;
525
223
  }
526
224
 
527
225
  /*
528
- * Don't worry about the universal selector.
529
- * There is no mentionable performance impact.
226
+ * Margins
530
227
  */
531
228
 
229
+ p, ul, ol, dl, blockquote, pre, address, fieldset, figure {
230
+ margin: 0 0 15px 0;
231
+ }
232
+
532
233
  * + {
533
- p, hr, ul, ol, dl, blockquote, pre, address, fieldset, figure {
234
+ p, ul, ol, dl, blockquote, pre, address, fieldset, figure {
534
235
  margin-top: 15px;
535
236
  }
536
237
  }
@@ -547,8 +248,7 @@ h1, h2, h3, h4, h5, h6 {
547
248
  }
548
249
 
549
250
  /*
550
- * Don't worry about the universal selector.
551
- * There is no mentionable performance impact.
251
+ * Margins
552
252
  */
553
253
 
554
254
  * + {
@@ -557,6 +257,10 @@ h1, h2, h3, h4, h5, h6 {
557
257
  }
558
258
  }
559
259
 
260
+ /*
261
+ * Sizes
262
+ */
263
+
560
264
  h1, .uk-h1 {
561
265
  font-size: 36px;
562
266
  line-height: 42px;
@@ -589,15 +293,14 @@ h6, .uk-h6 {
589
293
 
590
294
  /* Lists
591
295
  ========================================================================== */
592
- /*
593
- * Ordered and unordered lists
594
- */
595
296
 
596
297
  ul, ol {
597
298
  padding-left: 30px;
598
299
  }
599
300
 
600
- /* Reset margin for nested lists */
301
+ /*
302
+ * Reset margin for nested lists
303
+ */
601
304
 
602
305
  ul > li > {
603
306
  ul, ol {
@@ -611,9 +314,8 @@ ol > li > {
611
314
  }
612
315
  }
613
316
 
614
- /*
615
- * Description lists
616
- */
317
+ /* Description lists
318
+ ========================================================================== */
617
319
 
618
320
  dt {
619
321
  font-weight: bold;
@@ -623,12 +325,20 @@ dd {
623
325
  margin-left: 0;
624
326
  }
625
327
 
626
- /* Horizontal rule
328
+ /* Horizontal rules
627
329
  ========================================================================== */
330
+ /*
331
+ * 1. Address differences between Firefox and other browsers.
332
+ * 2. Style
333
+ */
628
334
 
629
335
  hr {
630
- display: block;
631
- padding: 0;
336
+ /* 1 */
337
+ -moz-box-sizing: content-box;
338
+ box-sizing: content-box;
339
+ height: 0;
340
+ /* 2 */
341
+ margin: 15px 0;
632
342
  border: 0;
633
343
  border-top: 1px solid #dddddd;
634
344
  }
@@ -640,78 +350,76 @@ address {
640
350
  font-style: normal;
641
351
  }
642
352
 
643
- /* Quotes
353
+ /* Blockquotes
644
354
  ========================================================================== */
645
355
 
646
- q {
647
- font-style: italic;
648
- }
649
-
650
356
  blockquote {
651
- font-style: italic;
652
357
  padding-left: 15px;
653
358
  border-left: 5px solid #dddddd;
654
359
  font-size: 16px;
655
360
  line-height: 22px;
656
- small {
657
- display: block;
658
- color: #999999;
659
- font-style: normal;
660
- }
661
- p:last-of-type {
662
- margin-bottom: 5px;
663
- }
361
+ font-style: italic;
664
362
  }
665
363
 
666
- /* Small print for identifying the source */
667
-
668
- /* Smaller margin if `small` follows */
669
-
670
- /* Code and preformatted text
364
+ /* Preformatted text
671
365
  ========================================================================== */
672
-
673
- code {
674
- color: #dd0055;
675
- font-size: 12px;
676
- white-space: nowrap;
677
- padding: 0 4px;
678
- border: 1px solid #dddddd;
679
- border-radius: 3px;
680
- background: #fafafa;
681
- }
682
-
683
- /* Reset code elements if parent of pre elements */
366
+ /*
367
+ * 1. Contain overflow in all browsers.
368
+ */
684
369
 
685
370
  pre {
686
- code {
687
- color: inherit;
688
- white-space: pre-wrap;
689
- padding: 0;
690
- border: 0;
691
- background: transparent;
692
- }
693
371
  padding: 10px;
694
372
  background: #fafafa;
373
+ font: 12px / 18px Consolas, monospace, serif;
695
374
  color: #444444;
696
- font-size: 12px;
697
- line-height: 18px;
698
375
  -moz-tab-size: 4;
699
376
  tab-size: 4;
377
+ /* 1 */
378
+ overflow: auto;
700
379
  border: 1px solid #dddddd;
701
380
  border-radius: 3px;
702
381
  }
703
382
 
704
- /* Forms
383
+ /* Selection pseudo-element
384
+ ========================================================================== */
385
+
386
+ ::-moz-selection, ::selection {
387
+ background: #3399ff;
388
+ color: #ffffff;
389
+ text-shadow: none;
390
+ }
391
+
392
+ /* HTML5 elements
705
393
  ========================================================================== */
706
394
  /*
707
- * Vertical alignment
708
- * Exclude `radio` and `checkbox` elements because the default `baseline` value aligns better with text
395
+ * Corrects `block` display not defined in IE 8/9.
709
396
  */
710
397
 
711
- button, input:not([type="radio"]):not([type="checkbox"]), select {
712
- vertical-align: middle;
398
+ article, aside, details, figcaption, figure, footer, header, main, nav, section, summary {
399
+ display: block;
400
+ }
401
+
402
+ /*
403
+ * Addresses inconsistent vertical alignment of `progress` in Chrome, Firefox and Opera.
404
+ */
405
+
406
+ progress {
407
+ vertical-align: baseline;
408
+ }
409
+
410
+ /*
411
+ * Prevent displaying `audio` without controls in Chrome, Safari and Opera
412
+ */
413
+
414
+ audio:not([controls]), [hidden], template {
415
+ display: none;
713
416
  }
714
417
 
418
+ /*
419
+ * Address `[hidden]` styling not present in IE 8/9.
420
+ * Hide the `template` element in IE and Safari
421
+ */
422
+
715
423
  /* Iframe
716
424
  ========================================================================== */
717
425
 
@@ -1878,7 +1586,7 @@ ul.uk-nav-sub {
1878
1586
  /* 2 */
1879
1587
  outline: none;
1880
1588
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
1881
- text-shadow: 0 -1px 0 white;
1589
+ text-shadow: 0 -1px 0 #ffffff;
1882
1590
  }
1883
1591
  }
1884
1592
  &.uk-active > a {
@@ -2139,8 +1847,8 @@ html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
2139
1847
  border-bottom-color: rgba(0, 0, 0, 0.3);
2140
1848
  border-radius: 4px;
2141
1849
  background-origin: border-box;
2142
- background-image: -webkit-linear-gradient(top, white, #eeeeee);
2143
- background-image: linear-gradient(to bottom, white, #eeeeee);
1850
+ background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
1851
+ background-image: linear-gradient(to bottom, #ffffff, #eeeeee);
2144
1852
  &:before {
2145
1853
  content: " ";
2146
1854
  display: table;
@@ -2638,8 +2346,8 @@ html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
2638
2346
  border: 1px solid rgba(0, 0, 0, 0.2);
2639
2347
  border-bottom-color: rgba(0, 0, 0, 0.3);
2640
2348
  background-origin: border-box;
2641
- background-image: -webkit-linear-gradient(top, white, #eeeeee);
2642
- background-image: linear-gradient(to bottom, white, #eeeeee);
2349
+ background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
2350
+ background-image: linear-gradient(to bottom, #ffffff, #eeeeee);
2643
2351
  text-shadow: 0 1px 0 #ffffff;
2644
2352
  &:hover, &:focus {
2645
2353
  background-color: #fafafa;
@@ -3204,11 +2912,18 @@ html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
3204
2912
  Component: Table
3205
2913
  ========================================================================== */
3206
2914
  /*
3207
- * Block element behavior
2915
+ * 1. Remove most spacing between table cells.
2916
+ * 2. Block element behavior
2917
+ * 3. Style
3208
2918
  */
3209
2919
 
3210
2920
  .uk-table {
2921
+ /* 1 */
2922
+ border-collapse: collapse;
2923
+ border-spacing: 0;
2924
+ /* 2 */
3211
2925
  width: 100%;
2926
+ /* 3 */
3212
2927
  margin-bottom: 15px;
3213
2928
  }
3214
2929
 
@@ -3287,14 +3002,108 @@ html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
3287
3002
  Component: Form
3288
3003
  ========================================================================== */
3289
3004
  /*
3290
- * Remove margin from the last-child
3005
+ * 1. Define consistent box sizing.
3006
+ * Default is `content-box` with following exceptions set to `border-box`
3007
+ * `button`, `select`, `input[type="checkbox"]` and `input[type="radio"]`
3008
+ * `input[type="search"]` in Chrome, Safari and Opera
3009
+ * `input[type="color"]` in Firefox
3010
+ * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
3011
+ * 3. Remove `border-radius` in iOS.
3012
+ * 4. Correct `font` properties and `color` not being inherited.
3291
3013
  */
3292
3014
 
3293
3015
  .uk-form {
3016
+ input, select, textarea {
3017
+ /* 1 */
3018
+ -moz-box-sizing: border-box;
3019
+ box-sizing: border-box;
3020
+ /* 2 */
3021
+ margin: 0;
3022
+ /* 3 */
3023
+ border-radius: 0;
3024
+ /* 4 */
3025
+ font: inherit;
3026
+ color: inherit;
3027
+ }
3028
+ select {
3029
+ text-transform: none;
3030
+ }
3031
+ optgroup {
3032
+ /* 1 */
3033
+ font: inherit;
3034
+ /* 2 */
3035
+ font-weight: bold;
3036
+ }
3037
+ input {
3038
+ &::-moz-focus-inner {
3039
+ border: 0;
3040
+ padding: 0;
3041
+ }
3042
+ &[type="checkbox"], &[type="radio"] {
3043
+ padding: 0;
3044
+ }
3045
+ &[type="checkbox"]:not(:disabled), &[type="radio"]:not(:disabled) {
3046
+ cursor: pointer;
3047
+ }
3048
+ }
3049
+ textarea {
3050
+ -webkit-appearance: none;
3051
+ }
3052
+ input {
3053
+ &:not([type]), &[type="text"], &[type="password"], &[type="email"], &[type="url"], &[type="search"], &[type="tel"], &[type="number"], &[type="datetime"] {
3054
+ -webkit-appearance: none;
3055
+ }
3056
+ &[type="search"] {
3057
+ &::-webkit-search-cancel-button, &::-webkit-search-decoration {
3058
+ -webkit-appearance: none;
3059
+ }
3060
+ }
3061
+ &[type="number"] {
3062
+ &::-webkit-inner-spin-button, &::-webkit-outer-spin-button {
3063
+ height: auto;
3064
+ }
3065
+ }
3066
+ }
3067
+ fieldset {
3068
+ border: none;
3069
+ margin: 0;
3070
+ padding: 0;
3071
+ }
3072
+ textarea {
3073
+ /* 1 */
3074
+ overflow: auto;
3075
+ /* 2 */
3076
+ vertical-align: top;
3077
+ }
3078
+ ::-moz-placeholder {
3079
+ opacity: 1;
3080
+ }
3081
+ :invalid {
3082
+ box-shadow: none;
3083
+ }
3084
+ input:not([type="radio"]):not([type="checkbox"]) {
3085
+ vertical-align: middle;
3086
+ }
3087
+ select {
3088
+ vertical-align: middle;
3089
+ /* 1 */
3090
+ height: 30px;
3091
+ /* 2 */
3092
+ max-width: 100%;
3093
+ /* 3 */
3094
+ padding: 4px 6px;
3095
+ /* 4 */
3096
+ border: 1px solid #dddddd;
3097
+ background: #ffffff;
3098
+ color: #444444;
3099
+ -webkit-transition: all linear 0.2s;
3100
+ transition: all linear 0.2s;
3101
+ border-radius: 4px;
3102
+ }
3294
3103
  > :last-child {
3295
3104
  margin-bottom: 0;
3296
3105
  }
3297
- select, textarea {
3106
+ textarea {
3298
3107
  /* 1 */
3299
3108
  height: 30px;
3300
3109
  /* 2 */
@@ -3308,8 +3117,6 @@ html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
3308
3117
  -webkit-transition: all linear 0.2s;
3309
3118
  transition: all linear 0.2s;
3310
3119
  border-radius: 4px;
3311
- /* Focus state */
3312
- /* Disabled state */
3313
3120
  }
3314
3121
  input {
3315
3122
  &:not([type]), &[type="text"], &[type="password"], &[type="datetime"], &[type="datetime-local"], &[type="date"], &[type="month"], &[type="time"], &[type="week"], &[type="number"], &[type="email"], &[type="url"], &[type="search"], &[type="tel"], &[type="color"] {
@@ -3326,8 +3133,6 @@ html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
3326
3133
  -webkit-transition: all linear 0.2s;
3327
3134
  transition: all linear 0.2s;
3328
3135
  border-radius: 4px;
3329
- /* Focus state */
3330
- /* Disabled state */
3331
3136
  }
3332
3137
  }
3333
3138
  select:focus, textarea:focus {
@@ -3370,22 +3175,16 @@ html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
3370
3175
  color: #999999;
3371
3176
  }
3372
3177
  }
3373
- textarea {
3374
- -webkit-appearance: none;
3375
- }
3376
- input {
3377
- &:not([type]), &[type="text"], &[type="password"], &[type="email"], &[type="url"], &[type="search"], &[type="tel"] {
3378
- -webkit-appearance: none;
3379
- }
3380
- }
3381
- :invalid {
3382
- box-shadow: none;
3383
- }
3384
3178
  legend {
3385
- width: 100%;
3386
3179
  /* 1 */
3387
- padding-bottom: 15px;
3180
+ width: 100%;
3388
3181
  /* 2 */
3182
+ border: 0;
3183
+ /* 3 */
3184
+ padding: 0;
3185
+ /* 4 */
3186
+ padding-bottom: 15px;
3187
+ /* 5 */
3389
3188
  font-size: 18px;
3390
3189
  line-height: 30px;
3391
3190
  &:after {
@@ -3396,6 +3195,69 @@ html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
3396
3195
  }
3397
3196
  }
3398
3197
 
3198
+ /*
3199
+ * Address inconsistent `text-transform` inheritance which is only inherit in Firefox
3200
+ */
3201
+
3202
+ /*
3203
+ * 1. Correct `font` properties not being inherited.
3204
+ * 2. Don't inherit the `font-weight` and use `bold` instead.
3205
+ * NOTE: Both declarations don't work in Chrome, Safari and Opera.
3206
+ */
3207
+
3208
+ /*
3209
+ * Removes inner padding and border in Firefox 4+.
3210
+ */
3211
+
3212
+ /*
3213
+ * Removes excess padding in IE 8/9/10.
3214
+ */
3215
+
3216
+ /*
3217
+ * Improves consistency of cursor style for clickable elements
3218
+ */
3219
+
3220
+ /*
3221
+ * Remove default style in iOS.
3222
+ */
3223
+
3224
+ /*
3225
+ * Remove inner padding and search cancel button in Chrome, Safari and Opera on OS X.
3226
+ */
3227
+
3228
+ /*
3229
+ * Fix the cursor style for Chrome's increment/decrement buttons. For certain
3230
+ * `font-size` values of the `input`, it causes the cursor style of the
3231
+ * decrement button to change from `default` to `text`.
3232
+ */
3233
+
3234
+ /*
3235
+ * Define consistent border, margin, and padding.
3236
+ */
3237
+
3238
+ /*
3239
+ * 1. Remove default vertical scrollbar in IE 8/9/10/11.
3240
+ * 2. Improve readability and alignment in all browsers.
3241
+ */
3242
+
3243
+ /*
3244
+ * Removes placeholder transparency in Firefox.
3245
+ */
3246
+
3247
+ /*
3248
+ * Removes `box-shadow` for invalid controls in Firefox.
3249
+ */
3250
+
3251
+ /*
3252
+ * Vertical alignment
3253
+ */
3254
+
3255
+ /* Style
3256
+ ========================================================================== */
3257
+ /*
3258
+ * Remove margin from the last-child
3259
+ */
3260
+
3399
3261
  /*
3400
3262
  * Controls
3401
3263
  * Except for `range`, `radio`, `checkbox`, `file`, `submit`, `reset`, `button` and `image`
@@ -3407,25 +3269,19 @@ html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
3407
3269
 
3408
3270
  /*
3409
3271
  * Placeholder
3410
- * Higher specificity (!important) needed to override color in IE
3411
- */
3412
-
3413
- /*
3414
- * Reset style on iOS.
3415
- */
3416
-
3417
- /*
3418
- * Removes box-shadow for invalid controls in Firefox.
3419
3272
  */
3420
3273
 
3421
3274
  /*
3422
- * Legend style
3423
- * 1. `margin-bottom` is not working in Safari and Opera.
3275
+ * Legend
3276
+ * 1. Behave like block element
3277
+ * 2. Correct `color` not being inherited in IE 8/9/10/11.
3278
+ * 3. Remove padding
3279
+ * 4. `margin-bottom` is not working in Safari and Opera.
3424
3280
  * Using `padding` and :after instead to create the border
3425
- * 2. Style
3281
+ * 5. Style
3426
3282
  */
3427
3283
 
3428
- /* 1 */
3284
+ /* 4 */
3429
3285
 
3430
3286
  /* Size modifiers
3431
3287
  * Higher specificity needed to override defaults
@@ -3697,41 +3553,53 @@ select.uk-form-width-mini {
3697
3553
  Component: Button
3698
3554
  ========================================================================== */
3699
3555
  /*
3700
- * 1. Required for `a` elements
3701
- * 2. Required for `button` and `input` elements
3702
- * 3. `line-height` is used to create a height
3703
- * 4. `min-height` is necessary for `input` elements in Firefox and Opera because `line-height` is not working.
3704
- * 5. Reset button group whitespace hack
3705
- * 6. Style
3556
+ * Removes inner padding and border in Firefox 4+.
3706
3557
  */
3707
3558
 
3708
3559
  .uk-button {
3560
+ &::-moz-focus-inner {
3561
+ border: 0;
3562
+ padding: 0;
3563
+ }
3709
3564
  /* 1 */
3710
- display: inline-block;
3711
- -moz-box-sizing: border-box;
3712
- box-sizing: border-box;
3713
- vertical-align: middle;
3714
- text-decoration: none;
3715
- text-align: center;
3565
+ -webkit-appearance: none;
3716
3566
  /* 2 */
3717
- border: none;
3567
+ margin: 0;
3718
3568
  /* 3 */
3719
- line-height: 28px;
3569
+ border: none;
3720
3570
  /* 4 */
3721
- min-height: 30px;
3571
+ overflow: visible;
3722
3572
  /* 5 */
3723
- font-size: 1rem;
3573
+ font: inherit;
3574
+ color: #444444;
3724
3575
  /* 6 */
3576
+ text-transform: none;
3577
+ /* 7 */
3578
+ display: inline-block;
3579
+ -moz-box-sizing: border-box;
3580
+ box-sizing: border-box;
3725
3581
  padding: 0 12px;
3726
3582
  background: #f7f7f7;
3727
- color: #444444;
3583
+ vertical-align: middle;
3584
+ /* 8 */
3585
+ line-height: 28px;
3586
+ /* 9 */
3587
+ min-height: 30px;
3588
+ /* 10 */
3589
+ font-size: 1rem;
3590
+ /* 11 */
3591
+ text-decoration: none;
3592
+ text-align: center;
3728
3593
  border: 1px solid rgba(0, 0, 0, 0.2);
3729
3594
  border-bottom-color: rgba(0, 0, 0, 0.3);
3730
3595
  background-origin: border-box;
3731
- background-image: -webkit-linear-gradient(top, white, #eeeeee);
3732
- background-image: linear-gradient(to bottom, white, #eeeeee);
3596
+ background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
3597
+ background-image: linear-gradient(to bottom, #ffffff, #eeeeee);
3733
3598
  border-radius: 4px;
3734
3599
  text-shadow: 0 1px 0 #ffffff;
3600
+ &:not(:disabled) {
3601
+ cursor: pointer;
3602
+ }
3735
3603
  &:hover, &:focus {
3736
3604
  background-color: #fafafa;
3737
3605
  color: #444444;
@@ -3751,6 +3619,20 @@ select.uk-form-width-mini {
3751
3619
  }
3752
3620
  }
3753
3621
 
3622
+ /*
3623
+ * 1. Correct inability to style clickable `input` types in iOS.
3624
+ * 2. Remove margins in Chrome, Safari and Opera.
3625
+ * 3. Remove borders for `button`.
3626
+ * 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
3627
+ * 5. Correct `font` properties and `color` not being inherited for `button`.
3628
+ * 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
3629
+ * 7. Style
3630
+ * 8. `line-height` is used to create a height
3631
+ * 9. `min-height` is necessary for `input` elements in Firefox and Opera because `line-height` is not working.
3632
+ * 10. Reset button group whitespace hack
3633
+ * 11. Required for `a`.
3634
+ */
3635
+
3754
3636
  /*
3755
3637
  * Hover
3756
3638
  * 1. Apply hover style also to focus state
@@ -4013,15 +3895,6 @@ select.uk-form-width-mini {
4013
3895
  /* ========================================================================
4014
3896
  Component: Icon
4015
3897
  ========================================================================== */
4016
- @font-face {
4017
- font-family: 'FontAwesome';
4018
- src: url("../fonts/fontawesome-webfont.eot");
4019
- src: url("../fonts/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff") format("woff"), url("../fonts/fontawesome-webfont.ttf") format("truetype");
4020
- font-weight: normal;
4021
- font-style: normal;
4022
- }
4023
-
4024
-
4025
3898
  /*
4026
3899
  * 1. Allow margin
4027
3900
  * 2. Prevent inherit font style
@@ -4088,8 +3961,8 @@ select.uk-form-width-mini {
4088
3961
  border: 1px solid #cccccc;
4089
3962
  border-bottom-color: #bbbbbb;
4090
3963
  background-origin: border-box;
4091
- background-image: -webkit-linear-gradient(top, white, #eeeeee);
4092
- background-image: linear-gradient(to bottom, white, #eeeeee);
3964
+ background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
3965
+ background-image: linear-gradient(to bottom, #ffffff, #eeeeee);
4093
3966
  text-shadow: 0 1px 0 #ffffff;
4094
3967
  &:hover, &:focus {
4095
3968
  background-color: #fafafa;
@@ -4172,7 +4045,7 @@ select.uk-form-width-mini {
4172
4045
  content: "\f00c";
4173
4046
  }
4174
4047
 
4175
- .uk-icon-times:before {
4048
+ .uk-icon-remove:before, .uk-icon-close:before, .uk-icon-times:before {
4176
4049
  content: "\f00d";
4177
4050
  }
4178
4051
 
@@ -4600,7 +4473,7 @@ select.uk-form-width-mini {
4600
4473
  content: "\f07e";
4601
4474
  }
4602
4475
 
4603
- .uk-icon-bar-chart-o:before {
4476
+ .uk-icon-bar-chart-o:before, .uk-icon-bar-chart:before {
4604
4477
  content: "\f080";
4605
4478
  }
4606
4479
 
@@ -5652,7 +5525,7 @@ select.uk-form-width-mini {
5652
5525
  content: "\f1a6";
5653
5526
  }
5654
5527
 
5655
- .uk-icon-pied-piper-square:before, .uk-icon-pied-piper:before {
5528
+ .uk-icon-pied-piper:before {
5656
5529
  content: "\f1a7";
5657
5530
  }
5658
5531
 
@@ -5796,7 +5669,7 @@ select.uk-form-width-mini {
5796
5669
  content: "\f1cc";
5797
5670
  }
5798
5671
 
5799
- .uk-icon-life-bouy:before, .uk-icon-life-saver:before, .uk-icon-support:before, .uk-icon-life-ring:before {
5672
+ .uk-icon-life-bouy:before, .uk-icon-life-buoy:before, .uk-icon-life-saver:before, .uk-icon-support:before, .uk-icon-life-ring:before {
5800
5673
  content: "\f1cd";
5801
5674
  }
5802
5675
 
@@ -5876,34 +5749,203 @@ select.uk-form-width-mini {
5876
5749
  content: "\f1e2";
5877
5750
  }
5878
5751
 
5752
+ .uk-icon-soccer-ball-o:before, .uk-icon-futbol-o:before {
5753
+ content: "\f1e3";
5754
+ }
5755
+
5756
+ .uk-icon-tty:before {
5757
+ content: "\f1e4";
5758
+ }
5759
+
5760
+ .uk-icon-binoculars:before {
5761
+ content: "\f1e5";
5762
+ }
5763
+
5764
+ .uk-icon-plug:before {
5765
+ content: "\f1e6";
5766
+ }
5767
+
5768
+ .uk-icon-slideshare:before {
5769
+ content: "\f1e7";
5770
+ }
5771
+
5772
+ .uk-icon-twitch:before {
5773
+ content: "\f1e8";
5774
+ }
5775
+
5776
+ .uk-icon-yelp:before {
5777
+ content: "\f1e9";
5778
+ }
5779
+
5780
+ .uk-icon-newspaper-o:before {
5781
+ content: "\f1ea";
5782
+ }
5783
+
5784
+ .uk-icon-wifi:before {
5785
+ content: "\f1eb";
5786
+ }
5787
+
5788
+ .uk-icon-calculator:before {
5789
+ content: "\f1ec";
5790
+ }
5791
+
5792
+ .uk-icon-paypal:before {
5793
+ content: "\f1ed";
5794
+ }
5795
+
5796
+ .uk-icon-google-wallet:before {
5797
+ content: "\f1ee";
5798
+ }
5799
+
5800
+ .uk-icon-cc-visa:before {
5801
+ content: "\f1f0";
5802
+ }
5803
+
5804
+ .uk-icon-cc-mastercard:before {
5805
+ content: "\f1f1";
5806
+ }
5807
+
5808
+ .uk-icon-cc-discover:before {
5809
+ content: "\f1f2";
5810
+ }
5811
+
5812
+ .uk-icon-cc-amex:before {
5813
+ content: "\f1f3";
5814
+ }
5815
+
5816
+ .uk-icon-cc-paypal:before {
5817
+ content: "\f1f4";
5818
+ }
5819
+
5820
+ .uk-icon-cc-stripe:before {
5821
+ content: "\f1f5";
5822
+ }
5823
+
5824
+ .uk-icon-bell-slash:before {
5825
+ content: "\f1f6";
5826
+ }
5827
+
5828
+ .uk-icon-bell-slash-o:before {
5829
+ content: "\f1f7";
5830
+ }
5831
+
5832
+ .uk-icon-trash:before {
5833
+ content: "\f1f8";
5834
+ }
5835
+
5836
+ .uk-icon-copyright:before {
5837
+ content: "\f1f9";
5838
+ }
5839
+
5840
+ .uk-icon-at:before {
5841
+ content: "\f1fa";
5842
+ }
5843
+
5844
+ .uk-icon-eyedropper:before {
5845
+ content: "\f1fb";
5846
+ }
5847
+
5848
+ .uk-icon-paint-brush:before {
5849
+ content: "\f1fc";
5850
+ }
5851
+
5852
+ .uk-icon-birthday-cake:before {
5853
+ content: "\f1fd";
5854
+ }
5855
+
5856
+ .uk-icon-area-chart:before {
5857
+ content: "\f1fe";
5858
+ }
5859
+
5860
+ .uk-icon-pie-chart:before {
5861
+ content: "\f200";
5862
+ }
5863
+
5864
+ .uk-icon-line-chart:before {
5865
+ content: "\f201";
5866
+ }
5867
+
5868
+ .uk-icon-lastfm:before {
5869
+ content: "\f202";
5870
+ }
5871
+
5872
+ .uk-icon-lastfm-square:before {
5873
+ content: "\f203";
5874
+ }
5875
+
5876
+ .uk-icon-toggle-off:before {
5877
+ content: "\f204";
5878
+ }
5879
+
5880
+ .uk-icon-toggle-on:before {
5881
+ content: "\f205";
5882
+ }
5883
+
5884
+ .uk-icon-bicycle:before {
5885
+ content: "\f206";
5886
+ }
5887
+
5888
+ .uk-icon-bus:before {
5889
+ content: "\f207";
5890
+ }
5891
+
5892
+ .uk-icon-ioxhost:before {
5893
+ content: "\f208";
5894
+ }
5895
+
5896
+ .uk-icon-angellist:before {
5897
+ content: "\f209";
5898
+ }
5899
+
5900
+ .uk-icon-cc:before {
5901
+ content: "\f20a";
5902
+ }
5903
+
5904
+ .uk-icon-shekel:before, .uk-icon-sheqel:before, .uk-icon-ils:before {
5905
+ content: "\f20b";
5906
+ }
5907
+
5908
+ .uk-icon-meanpath:before {
5909
+ content: "\f20c";
5910
+ }
5911
+
5879
5912
  /* ========================================================================
5880
5913
  Component: Close
5881
5914
  ========================================================================== */
5882
5915
  /*
5883
- * 1. Required for `button` elements and makes
5884
- * close button more robust against different box-sizing use
5885
- * 2. Style
5886
- * 3. Required for `button` elements
5887
- * 4. Needed for Safari
5916
+ * Removes inner padding and border in Firefox 4+.
5888
5917
  */
5889
5918
 
5890
5919
  .uk-close {
5920
+ &::-moz-focus-inner {
5921
+ border: 0;
5922
+ padding: 0;
5923
+ }
5891
5924
  /* 1 */
5892
- -moz-box-sizing: content-box;
5893
- box-sizing: content-box;
5925
+ -webkit-appearance: none;
5894
5926
  /* 2 */
5927
+ margin: 0;
5928
+ /* 3 */
5929
+ border: none;
5930
+ /* 4 */
5931
+ overflow: visible;
5932
+ /* 5 */
5933
+ font: inherit;
5934
+ color: inherit;
5935
+ /* 6 */
5936
+ text-transform: none;
5937
+ /* 7. */
5938
+ padding: 0;
5939
+ background: transparent;
5940
+ /* 8 */
5895
5941
  display: inline-block;
5942
+ -moz-box-sizing: content-box;
5943
+ box-sizing: content-box;
5896
5944
  width: 20px;
5897
5945
  line-height: 20px;
5898
5946
  text-align: center;
5899
- color: inherit;
5947
+ vertical-align: middle;
5900
5948
  opacity: 0.3;
5901
- /* 3. */
5902
- padding: 0;
5903
- border: 0;
5904
- -webkit-appearance: none;
5905
- /* 4. */
5906
- background: transparent;
5907
5949
  &:after {
5908
5950
  display: block;
5909
5951
  content: "\f00d";
@@ -5920,6 +5962,17 @@ select.uk-form-width-mini {
5920
5962
  }
5921
5963
  }
5922
5964
 
5965
+ /*
5966
+ * 1. Correct inability to style clickable `input` types in iOS.
5967
+ * 2. Remove margins in Chrome, Safari and Opera.
5968
+ * 3. Remove borders for `button`.
5969
+ * 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
5970
+ * 5. Correct `font` properties and `color` not being inherited for `button`.
5971
+ * 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
5972
+ * 7. Remove default `button` padding and background color
5973
+ * 8. Style
5974
+ */
5975
+
5923
5976
  /* Icon */
5924
5977
 
5925
5978
  /*
@@ -8518,4 +8571,4 @@ a.uk-thumbnail {
8518
8571
  h2, h3 {
8519
8572
  page-break-after: avoid;
8520
8573
  }
8521
- }
8574
+ }