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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/lib/uikit/sass/rails/version.rb +1 -1
- data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.otf +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
- data/vendor/assets/javascripts/uikit.js +1 -0
- data/vendor/assets/javascripts/uikit/addons/autocomplete.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/cover.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/datepicker.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/form-password.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/form-select.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/htmleditor.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/nestable.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/notify.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/pagination.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/search.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/sortable.js +12 -6
- data/vendor/assets/javascripts/uikit/addons/sticky.js +2 -3
- data/vendor/assets/javascripts/uikit/addons/timepicker.js +1 -1
- data/vendor/assets/javascripts/uikit/addons/upload.js +4 -1
- data/vendor/assets/javascripts/uikit/uikit.js +5 -7
- data/vendor/assets/stylesheets/extra/font-awesome.scss +2 -1
- data/vendor/assets/stylesheets/uikit/addons/uikit.addons.scss +61 -27
- data/vendor/assets/stylesheets/uikit/addons/uikit.almost-flat.addons.scss +61 -27
- data/vendor/assets/stylesheets/uikit/addons/uikit.gradient.addons.scss +65 -31
- data/vendor/assets/stylesheets/uikit/uikit.almost-flat.scss +579 -526
- data/vendor/assets/stylesheets/uikit/uikit.gradient.scss +589 -536
- data/vendor/assets/stylesheets/uikit/uikit.scss +573 -518
- metadata +4 -3
@@ -1,4 +1,4 @@
|
|
1
|
-
/*! UIkit 2.
|
1
|
+
/*! UIkit 2.10.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
|
2
2
|
|
3
3
|
/* ========================================================================
|
4
4
|
Component: Dotnav
|
@@ -644,8 +644,8 @@ a.uk-datepicker-table-muted {
|
|
644
644
|
border-top-left-radius: 4px;
|
645
645
|
border-top-right-radius: 4px;
|
646
646
|
background-origin: border-box;
|
647
|
-
background-image: -webkit-linear-gradient(top,
|
648
|
-
background-image: linear-gradient(to bottom,
|
647
|
+
background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
|
648
|
+
background-image: linear-gradient(to bottom, #ffffff, #eeeeee);
|
649
649
|
&:before {
|
650
650
|
content: " ";
|
651
651
|
display: table;
|
@@ -960,8 +960,8 @@ a.uk-datepicker-table-muted {
|
|
960
960
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
961
961
|
border-bottom-color: rgba(0, 0, 0, 0.3);
|
962
962
|
background-origin: border-box;
|
963
|
-
background-image: -webkit-linear-gradient(top,
|
964
|
-
background-image: linear-gradient(to bottom,
|
963
|
+
background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
|
964
|
+
background-image: linear-gradient(to bottom, #ffffff, #eeeeee);
|
965
965
|
text-shadow: 0 1px 0 #ffffff;
|
966
966
|
}
|
967
967
|
|
@@ -1204,39 +1204,49 @@ a.uk-datepicker-table-muted {
|
|
1204
1204
|
/* Sub-object `uk-search-field`
|
1205
1205
|
========================================================================== */
|
1206
1206
|
/*
|
1207
|
-
*
|
1207
|
+
* Removes inner padding and border in Firefox 4+.
|
1208
1208
|
*/
|
1209
1209
|
|
1210
1210
|
.uk-search-field {
|
1211
|
+
&::-moz-focus-inner {
|
1212
|
+
border: 0;
|
1213
|
+
padding: 0;
|
1214
|
+
}
|
1215
|
+
&::-webkit-search-cancel-button, &::-webkit-search-decoration {
|
1216
|
+
-webkit-appearance: none;
|
1217
|
+
}
|
1218
|
+
&::-ms-clear {
|
1219
|
+
display: none;
|
1220
|
+
}
|
1221
|
+
&::-moz-placeholder {
|
1222
|
+
opacity: 1;
|
1223
|
+
}
|
1224
|
+
/* 1 */
|
1225
|
+
-moz-box-sizing: border-box;
|
1226
|
+
box-sizing: border-box;
|
1227
|
+
/* 2 */
|
1228
|
+
margin: 0;
|
1229
|
+
/* 3 */
|
1230
|
+
border-radius: 0;
|
1231
|
+
/* 4 */
|
1232
|
+
font: inherit;
|
1233
|
+
color: #444444;
|
1234
|
+
/* 5 */
|
1235
|
+
-webkit-appearance: none;
|
1236
|
+
/* 6 */
|
1211
1237
|
width: 120px;
|
1212
1238
|
height: 30px;
|
1213
1239
|
padding: 0 0 0 30px;
|
1214
1240
|
border: 1px solid rgba(0, 0, 0, 0);
|
1215
1241
|
background: rgba(0, 0, 0, 0);
|
1216
|
-
color: #444444;
|
1217
1242
|
-webkit-transition: all linear 0.2s;
|
1218
1243
|
transition: all linear 0.2s;
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
/*
|
1224
|
-
* Needed to reset iOS `input[type="search"]` appearance
|
1225
|
-
* Higher specificity to override appearance set by normalize.less
|
1226
|
-
*/
|
1227
|
-
|
1228
|
-
input.uk-search-field {
|
1229
|
-
-webkit-appearance: none;
|
1230
|
-
}
|
1231
|
-
|
1232
|
-
/* Placeholder */
|
1233
|
-
|
1234
|
-
.uk-search-field {
|
1235
|
-
&:-ms-input-placeholder, &::-moz-placeholder, &::-webkit-input-placeholder {
|
1236
|
-
color: #999999;
|
1244
|
+
vertical-align: middle;
|
1245
|
+
&:-ms-input-placeholder {
|
1246
|
+
color: #999999 !important;
|
1237
1247
|
}
|
1238
|
-
&::-
|
1239
|
-
|
1248
|
+
&::-moz-placeholder, &::-webkit-input-placeholder {
|
1249
|
+
color: #999999;
|
1240
1250
|
}
|
1241
1251
|
&:focus {
|
1242
1252
|
outline: 0;
|
@@ -1244,11 +1254,32 @@ input.uk-search-field {
|
|
1244
1254
|
}
|
1245
1255
|
}
|
1246
1256
|
|
1247
|
-
/*
|
1257
|
+
/*
|
1258
|
+
* Remove inner padding and search cancel button in Chrome, Safari and Opera on OS X.
|
1259
|
+
*/
|
1260
|
+
|
1261
|
+
/*
|
1262
|
+
* Removes cancel button in IE10
|
1263
|
+
*/
|
1264
|
+
|
1265
|
+
/*
|
1266
|
+
* Removes placeholder transparency in Firefox.
|
1267
|
+
*/
|
1268
|
+
|
1269
|
+
/*
|
1270
|
+
* 1. Define consistent box sizing.
|
1271
|
+
* 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
|
1272
|
+
* 3. Remove `border-radius` in iOS.
|
1273
|
+
* 4. Correct `font` properties and `color` not being inherited.
|
1274
|
+
* 5. Remove default style in iOS.
|
1275
|
+
* 6. Style
|
1276
|
+
*/
|
1277
|
+
|
1278
|
+
/* Placeholder */
|
1248
1279
|
|
1249
1280
|
/* Focus */
|
1250
1281
|
|
1251
|
-
/* Focus +
|
1282
|
+
/* Focus + Active */
|
1252
1283
|
|
1253
1284
|
.uk-search.uk-active .uk-search-field {
|
1254
1285
|
width: 180px;
|
@@ -1345,7 +1376,10 @@ input.uk-search-field {
|
|
1345
1376
|
border-color: rgba(0, 0, 0, 0);
|
1346
1377
|
background: #1a1a1a;
|
1347
1378
|
color: #cccccc;
|
1348
|
-
&:-ms-input-placeholder
|
1379
|
+
&:-ms-input-placeholder {
|
1380
|
+
color: #777777 !important;
|
1381
|
+
}
|
1382
|
+
&::-moz-placeholder, &::-webkit-input-placeholder {
|
1349
1383
|
color: #777777;
|
1350
1384
|
}
|
1351
1385
|
}
|
@@ -1555,4 +1589,4 @@ input.uk-search-field {
|
|
1555
1589
|
top: 50%;
|
1556
1590
|
-webkit-transform: translate(-50%, -50%);
|
1557
1591
|
transform: translate(-50%, -50%);
|
1558
|
-
}
|
1592
|
+
}
|
@@ -1,21 +1,23 @@
|
|
1
|
-
/*! UIkit 2.
|
1
|
+
/*! UIkit 2.10.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
|
2
2
|
|
3
3
|
/* ========================================================================
|
4
|
-
Component:
|
5
|
-
========================================================================== */
|
6
|
-
/* Base
|
4
|
+
Component: Base
|
7
5
|
========================================================================== */
|
8
6
|
/*
|
9
|
-
* 1.
|
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
|
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;
|
19
21
|
}
|
20
22
|
|
21
23
|
/*
|
@@ -26,47 +28,6 @@ body {
|
|
26
28
|
margin: 0;
|
27
29
|
}
|
28
30
|
|
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
31
|
/* Links
|
71
32
|
========================================================================== */
|
72
33
|
/*
|
@@ -78,361 +39,69 @@ a {
|
|
78
39
|
&:active, &:hover {
|
79
40
|
outline: 0;
|
80
41
|
}
|
42
|
+
color: #0077dd;
|
43
|
+
text-decoration: none;
|
44
|
+
cursor: pointer;
|
81
45
|
}
|
82
46
|
|
83
47
|
/*
|
84
48
|
* Improves readability when focused and also mouse hovered in all browsers.
|
85
49
|
*/
|
86
50
|
|
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
51
|
/*
|
98
|
-
*
|
52
|
+
* Style
|
99
53
|
*/
|
100
54
|
|
101
|
-
|
102
|
-
|
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;
|
55
|
+
.uk-link {
|
56
|
+
color: #0077dd;
|
57
|
+
text-decoration: none;
|
58
|
+
cursor: pointer;
|
152
59
|
}
|
153
60
|
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
svg:not(:root) {
|
159
|
-
overflow: hidden;
|
61
|
+
a:hover, .uk-link:hover {
|
62
|
+
color: #005599;
|
63
|
+
text-decoration: underline;
|
160
64
|
}
|
161
65
|
|
162
|
-
/*
|
66
|
+
/* Text-level semantics
|
163
67
|
========================================================================== */
|
164
68
|
/*
|
165
|
-
* Addresses
|
166
|
-
*/
|
167
|
-
|
168
|
-
figure {
|
169
|
-
margin: 0;
|
170
|
-
}
|
171
|
-
|
172
|
-
/*
|
173
|
-
* Address differences between Firefox and other browsers.
|
69
|
+
* Addresses styling not present in Chrome, Safari, Opera and IE 8/9/10.
|
174
70
|
*/
|
175
71
|
|
176
|
-
|
177
|
-
-
|
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;
|
72
|
+
abbr[title] {
|
73
|
+
border-bottom: 1px dotted;
|
199
74
|
}
|
200
75
|
|
201
|
-
/* Forms
|
202
|
-
========================================================================== */
|
203
76
|
/*
|
204
|
-
*
|
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.
|
77
|
+
* Addresses style set to `bolder` in Firefox
|
212
78
|
*/
|
213
79
|
|
214
|
-
|
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 {
|
80
|
+
b, strong {
|
233
81
|
font-weight: bold;
|
234
82
|
}
|
235
83
|
|
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
84
|
/*
|
287
|
-
*
|
85
|
+
* 1. Address odd `em`-unit font size rendering in all browsers.
|
86
|
+
* 2. Consolas has a better baseline in running text compared to `Courier`
|
288
87
|
*/
|
289
88
|
|
290
|
-
|
291
|
-
|
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"] {
|
89
|
+
:not(pre) > {
|
90
|
+
code, kbd, samp {
|
302
91
|
/* 1 */
|
303
|
-
|
92
|
+
font-size: 12px;
|
304
93
|
/* 2 */
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
-webkit-appearance: textfield;
|
314
|
-
&::-webkit-search-cancel-button, &::-webkit-search-decoration {
|
315
|
-
-webkit-appearance: none;
|
316
|
-
}
|
94
|
+
font-family: Consolas, monospace, serif;
|
95
|
+
/* 3 */
|
96
|
+
color: #dd0055;
|
97
|
+
white-space: nowrap;
|
98
|
+
padding: 0 4px;
|
99
|
+
border: 1px solid #dddddd;
|
100
|
+
border-radius: 3px;
|
101
|
+
background: #fafafa;
|
317
102
|
}
|
318
103
|
}
|
319
104
|
|
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
|
-
}
|
418
|
-
|
419
|
-
/* Text-level semantics
|
420
|
-
========================================================================== */
|
421
|
-
/*
|
422
|
-
* Links
|
423
|
-
*/
|
424
|
-
|
425
|
-
a, .uk-link {
|
426
|
-
color: #0077dd;
|
427
|
-
text-decoration: none;
|
428
|
-
cursor: pointer;
|
429
|
-
}
|
430
|
-
|
431
|
-
a:hover, .uk-link:hover {
|
432
|
-
color: #005599;
|
433
|
-
text-decoration: underline;
|
434
|
-
}
|
435
|
-
|
436
105
|
/*
|
437
106
|
* Emphasize
|
438
107
|
*/
|
@@ -462,35 +131,51 @@ mark {
|
|
462
131
|
}
|
463
132
|
|
464
133
|
/*
|
465
|
-
*
|
134
|
+
* Quote
|
466
135
|
*/
|
467
136
|
|
468
|
-
|
469
|
-
|
470
|
-
color: #ffffff;
|
471
|
-
text-shadow: none;
|
137
|
+
q {
|
138
|
+
font-style: italic;
|
472
139
|
}
|
473
140
|
|
474
141
|
/*
|
475
|
-
*
|
142
|
+
* Addresses inconsistent and variable font size in all browsers.
|
476
143
|
*/
|
477
144
|
|
478
|
-
|
479
|
-
|
145
|
+
small {
|
146
|
+
font-size: 80%;
|
480
147
|
}
|
481
148
|
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
149
|
+
/*
|
150
|
+
* Prevents `sub` and `sup` affecting `line-height` in all browsers.
|
151
|
+
*/
|
152
|
+
|
153
|
+
sub {
|
154
|
+
font-size: 75%;
|
155
|
+
line-height: 0;
|
156
|
+
position: relative;
|
157
|
+
vertical-align: baseline;
|
486
158
|
}
|
487
159
|
|
488
|
-
|
160
|
+
sup {
|
161
|
+
font-size: 75%;
|
162
|
+
line-height: 0;
|
163
|
+
position: relative;
|
164
|
+
vertical-align: baseline;
|
165
|
+
top: -0.5em;
|
166
|
+
}
|
167
|
+
|
168
|
+
sub {
|
169
|
+
bottom: -0.25em;
|
170
|
+
}
|
171
|
+
|
172
|
+
/* Images
|
489
173
|
========================================================================== */
|
490
174
|
/*
|
491
175
|
* 1. Responsiveness: Sets a maximum width relative to the parent and auto scales the height
|
492
176
|
* 2. Corrects `max-width` behavior if padding and border are used
|
493
|
-
* 3. Remove
|
177
|
+
* 3. Remove border when inside `a` element in IE 8/9/10.
|
178
|
+
* 4. Remove the gap between images and the bottom of their containers
|
494
179
|
*/
|
495
180
|
|
496
181
|
img {
|
@@ -501,6 +186,8 @@ img {
|
|
501
186
|
-moz-box-sizing: border-box;
|
502
187
|
box-sizing: border-box;
|
503
188
|
/* 3 */
|
189
|
+
border: 0;
|
190
|
+
/* 4 */
|
504
191
|
vertical-align: middle;
|
505
192
|
}
|
506
193
|
|
@@ -515,20 +202,34 @@ img {
|
|
515
202
|
}
|
516
203
|
}
|
517
204
|
|
518
|
-
/*
|
205
|
+
/*
|
206
|
+
* Correct overflow not hidden in IE 9/10/11.
|
207
|
+
*/
|
208
|
+
|
209
|
+
svg:not(:root) {
|
210
|
+
overflow: hidden;
|
211
|
+
}
|
212
|
+
|
213
|
+
/* Block elements
|
519
214
|
========================================================================== */
|
215
|
+
/*
|
216
|
+
* Reset margin
|
217
|
+
*/
|
520
218
|
|
521
|
-
|
522
|
-
margin: 0
|
219
|
+
blockquote, figure {
|
220
|
+
margin: 0;
|
523
221
|
}
|
524
222
|
|
525
223
|
/*
|
526
|
-
*
|
527
|
-
* There is no mentionable performance impact.
|
224
|
+
* Margins
|
528
225
|
*/
|
529
226
|
|
227
|
+
p, ul, ol, dl, blockquote, pre, address, fieldset, figure {
|
228
|
+
margin: 0 0 15px 0;
|
229
|
+
}
|
230
|
+
|
530
231
|
* + {
|
531
|
-
p,
|
232
|
+
p, ul, ol, dl, blockquote, pre, address, fieldset, figure {
|
532
233
|
margin-top: 15px;
|
533
234
|
}
|
534
235
|
}
|
@@ -545,8 +246,7 @@ h1, h2, h3, h4, h5, h6 {
|
|
545
246
|
}
|
546
247
|
|
547
248
|
/*
|
548
|
-
*
|
549
|
-
* There is no mentionable performance impact.
|
249
|
+
* Margins
|
550
250
|
*/
|
551
251
|
|
552
252
|
* + {
|
@@ -555,6 +255,10 @@ h1, h2, h3, h4, h5, h6 {
|
|
555
255
|
}
|
556
256
|
}
|
557
257
|
|
258
|
+
/*
|
259
|
+
* Sizes
|
260
|
+
*/
|
261
|
+
|
558
262
|
h1, .uk-h1 {
|
559
263
|
font-size: 36px;
|
560
264
|
line-height: 42px;
|
@@ -587,15 +291,14 @@ h6, .uk-h6 {
|
|
587
291
|
|
588
292
|
/* Lists
|
589
293
|
========================================================================== */
|
590
|
-
/*
|
591
|
-
* Ordered and unordered lists
|
592
|
-
*/
|
593
294
|
|
594
295
|
ul, ol {
|
595
296
|
padding-left: 30px;
|
596
297
|
}
|
597
298
|
|
598
|
-
/*
|
299
|
+
/*
|
300
|
+
* Reset margin for nested lists
|
301
|
+
*/
|
599
302
|
|
600
303
|
ul > li > {
|
601
304
|
ul, ol {
|
@@ -609,9 +312,8 @@ ol > li > {
|
|
609
312
|
}
|
610
313
|
}
|
611
314
|
|
612
|
-
/*
|
613
|
-
|
614
|
-
*/
|
315
|
+
/* Description lists
|
316
|
+
========================================================================== */
|
615
317
|
|
616
318
|
dt {
|
617
319
|
font-weight: bold;
|
@@ -621,12 +323,20 @@ dd {
|
|
621
323
|
margin-left: 0;
|
622
324
|
}
|
623
325
|
|
624
|
-
/* Horizontal
|
326
|
+
/* Horizontal rules
|
625
327
|
========================================================================== */
|
328
|
+
/*
|
329
|
+
* 1. Address differences between Firefox and other browsers.
|
330
|
+
* 2. Style
|
331
|
+
*/
|
626
332
|
|
627
333
|
hr {
|
628
|
-
|
629
|
-
|
334
|
+
/* 1 */
|
335
|
+
-moz-box-sizing: content-box;
|
336
|
+
box-sizing: content-box;
|
337
|
+
height: 0;
|
338
|
+
/* 2 */
|
339
|
+
margin: 15px 0;
|
630
340
|
border: 0;
|
631
341
|
border-top: 1px solid #dddddd;
|
632
342
|
}
|
@@ -638,78 +348,76 @@ address {
|
|
638
348
|
font-style: normal;
|
639
349
|
}
|
640
350
|
|
641
|
-
/*
|
351
|
+
/* Blockquotes
|
642
352
|
========================================================================== */
|
643
353
|
|
644
|
-
q {
|
645
|
-
font-style: italic;
|
646
|
-
}
|
647
|
-
|
648
354
|
blockquote {
|
649
|
-
font-style: italic;
|
650
355
|
padding-left: 15px;
|
651
356
|
border-left: 5px solid #dddddd;
|
652
357
|
font-size: 16px;
|
653
358
|
line-height: 22px;
|
654
|
-
|
655
|
-
display: block;
|
656
|
-
color: #999999;
|
657
|
-
font-style: normal;
|
658
|
-
}
|
659
|
-
p:last-of-type {
|
660
|
-
margin-bottom: 5px;
|
661
|
-
}
|
359
|
+
font-style: italic;
|
662
360
|
}
|
663
361
|
|
664
|
-
/*
|
665
|
-
|
666
|
-
/* Smaller margin if `small` follows */
|
667
|
-
|
668
|
-
/* Code and preformatted text
|
362
|
+
/* Preformatted text
|
669
363
|
========================================================================== */
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
font-size: 12px;
|
674
|
-
white-space: nowrap;
|
675
|
-
padding: 0 4px;
|
676
|
-
border: 1px solid #dddddd;
|
677
|
-
border-radius: 3px;
|
678
|
-
background: #fafafa;
|
679
|
-
}
|
680
|
-
|
681
|
-
/* Reset code elements if parent of pre elements */
|
364
|
+
/*
|
365
|
+
* 1. Contain overflow in all browsers.
|
366
|
+
*/
|
682
367
|
|
683
368
|
pre {
|
684
|
-
code {
|
685
|
-
color: inherit;
|
686
|
-
white-space: pre-wrap;
|
687
|
-
padding: 0;
|
688
|
-
border: 0;
|
689
|
-
background: transparent;
|
690
|
-
}
|
691
369
|
padding: 10px;
|
692
370
|
background: #fafafa;
|
371
|
+
font: 12px / 18px Consolas, monospace, serif;
|
693
372
|
color: #444444;
|
694
|
-
font-size: 12px;
|
695
|
-
line-height: 18px;
|
696
373
|
-moz-tab-size: 4;
|
697
374
|
tab-size: 4;
|
375
|
+
/* 1 */
|
376
|
+
overflow: auto;
|
698
377
|
border: 1px solid #dddddd;
|
699
378
|
border-radius: 3px;
|
700
379
|
}
|
701
380
|
|
702
|
-
/*
|
381
|
+
/* Selection pseudo-element
|
382
|
+
========================================================================== */
|
383
|
+
|
384
|
+
::-moz-selection, ::selection {
|
385
|
+
background: #3399ff;
|
386
|
+
color: #ffffff;
|
387
|
+
text-shadow: none;
|
388
|
+
}
|
389
|
+
|
390
|
+
/* HTML5 elements
|
703
391
|
========================================================================== */
|
704
392
|
/*
|
705
|
-
*
|
706
|
-
* Exclude `radio` and `checkbox` elements because the default `baseline` value aligns better with text
|
393
|
+
* Corrects `block` display not defined in IE 8/9.
|
707
394
|
*/
|
708
395
|
|
709
|
-
|
710
|
-
|
396
|
+
article, aside, details, figcaption, figure, footer, header, main, nav, section, summary {
|
397
|
+
display: block;
|
398
|
+
}
|
399
|
+
|
400
|
+
/*
|
401
|
+
* Addresses inconsistent vertical alignment of `progress` in Chrome, Firefox and Opera.
|
402
|
+
*/
|
403
|
+
|
404
|
+
progress {
|
405
|
+
vertical-align: baseline;
|
406
|
+
}
|
407
|
+
|
408
|
+
/*
|
409
|
+
* Prevent displaying `audio` without controls in Chrome, Safari and Opera
|
410
|
+
*/
|
411
|
+
|
412
|
+
audio:not([controls]), [hidden], template {
|
413
|
+
display: none;
|
711
414
|
}
|
712
415
|
|
416
|
+
/*
|
417
|
+
* Address `[hidden]` styling not present in IE 8/9.
|
418
|
+
* Hide the `template` element in IE and Safari
|
419
|
+
*/
|
420
|
+
|
713
421
|
/* Iframe
|
714
422
|
========================================================================== */
|
715
423
|
|
@@ -1876,7 +1584,7 @@ ul.uk-nav-sub {
|
|
1876
1584
|
/* 2 */
|
1877
1585
|
outline: none;
|
1878
1586
|
box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.06);
|
1879
|
-
text-shadow: 0 -1px 0
|
1587
|
+
text-shadow: 0 -1px 0 #ffffff;
|
1880
1588
|
}
|
1881
1589
|
}
|
1882
1590
|
&.uk-active > a {
|
@@ -3184,11 +2892,18 @@ html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
|
|
3184
2892
|
Component: Table
|
3185
2893
|
========================================================================== */
|
3186
2894
|
/*
|
3187
|
-
*
|
2895
|
+
* 1. Remove most spacing between table cells.
|
2896
|
+
* 2. Block element behavior
|
2897
|
+
* 3. Style
|
3188
2898
|
*/
|
3189
2899
|
|
3190
2900
|
.uk-table {
|
2901
|
+
/* 1 */
|
2902
|
+
border-collapse: collapse;
|
2903
|
+
border-spacing: 0;
|
2904
|
+
/* 2 */
|
3191
2905
|
width: 100%;
|
2906
|
+
/* 3 */
|
3192
2907
|
margin-bottom: 15px;
|
3193
2908
|
}
|
3194
2909
|
|
@@ -3267,14 +2982,108 @@ html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
|
|
3267
2982
|
Component: Form
|
3268
2983
|
========================================================================== */
|
3269
2984
|
/*
|
3270
|
-
*
|
2985
|
+
* 1. Define consistent box sizing.
|
2986
|
+
* Default is `content-box` with following exceptions set to `border-box`
|
2987
|
+
* `button`, `select`, `input[type="checkbox"]` and `input[type="radio"]`
|
2988
|
+
* `input[type="search"]` in Chrome, Safari and Opera
|
2989
|
+
* `input[type="color"]` in Firefox
|
2990
|
+
* 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
|
2991
|
+
* 3. Remove `border-radius` in iOS.
|
2992
|
+
* 4. Correct `font` properties and `color` not being inherited.
|
3271
2993
|
*/
|
3272
2994
|
|
3273
2995
|
.uk-form {
|
2996
|
+
input, select, textarea {
|
2997
|
+
/* 1 */
|
2998
|
+
-moz-box-sizing: border-box;
|
2999
|
+
box-sizing: border-box;
|
3000
|
+
/* 2 */
|
3001
|
+
margin: 0;
|
3002
|
+
/* 3 */
|
3003
|
+
border-radius: 0;
|
3004
|
+
/* 4 */
|
3005
|
+
font: inherit;
|
3006
|
+
color: inherit;
|
3007
|
+
}
|
3008
|
+
select {
|
3009
|
+
text-transform: none;
|
3010
|
+
}
|
3011
|
+
optgroup {
|
3012
|
+
/* 1 */
|
3013
|
+
font: inherit;
|
3014
|
+
/* 2 */
|
3015
|
+
font-weight: bold;
|
3016
|
+
}
|
3017
|
+
input {
|
3018
|
+
&::-moz-focus-inner {
|
3019
|
+
border: 0;
|
3020
|
+
padding: 0;
|
3021
|
+
}
|
3022
|
+
&[type="checkbox"], &[type="radio"] {
|
3023
|
+
padding: 0;
|
3024
|
+
}
|
3025
|
+
&[type="checkbox"]:not(:disabled), &[type="radio"]:not(:disabled) {
|
3026
|
+
cursor: pointer;
|
3027
|
+
}
|
3028
|
+
}
|
3029
|
+
textarea {
|
3030
|
+
-webkit-appearance: none;
|
3031
|
+
}
|
3032
|
+
input {
|
3033
|
+
&:not([type]), &[type="text"], &[type="password"], &[type="email"], &[type="url"], &[type="search"], &[type="tel"], &[type="number"], &[type="datetime"] {
|
3034
|
+
-webkit-appearance: none;
|
3035
|
+
}
|
3036
|
+
&[type="search"] {
|
3037
|
+
&::-webkit-search-cancel-button, &::-webkit-search-decoration {
|
3038
|
+
-webkit-appearance: none;
|
3039
|
+
}
|
3040
|
+
}
|
3041
|
+
&[type="number"] {
|
3042
|
+
&::-webkit-inner-spin-button, &::-webkit-outer-spin-button {
|
3043
|
+
height: auto;
|
3044
|
+
}
|
3045
|
+
}
|
3046
|
+
}
|
3047
|
+
fieldset {
|
3048
|
+
border: none;
|
3049
|
+
margin: 0;
|
3050
|
+
padding: 0;
|
3051
|
+
}
|
3052
|
+
textarea {
|
3053
|
+
/* 1 */
|
3054
|
+
overflow: auto;
|
3055
|
+
/* 2 */
|
3056
|
+
vertical-align: top;
|
3057
|
+
}
|
3058
|
+
::-moz-placeholder {
|
3059
|
+
opacity: 1;
|
3060
|
+
}
|
3061
|
+
:invalid {
|
3062
|
+
box-shadow: none;
|
3063
|
+
}
|
3064
|
+
input:not([type="radio"]):not([type="checkbox"]) {
|
3065
|
+
vertical-align: middle;
|
3066
|
+
}
|
3067
|
+
select {
|
3068
|
+
vertical-align: middle;
|
3069
|
+
/* 1 */
|
3070
|
+
height: 30px;
|
3071
|
+
/* 2 */
|
3072
|
+
max-width: 100%;
|
3073
|
+
/* 3 */
|
3074
|
+
padding: 4px 6px;
|
3075
|
+
/* 4 */
|
3076
|
+
border: 1px solid #dddddd;
|
3077
|
+
background: #ffffff;
|
3078
|
+
color: #444444;
|
3079
|
+
-webkit-transition: all linear 0.2s;
|
3080
|
+
transition: all linear 0.2s;
|
3081
|
+
border-radius: 4px;
|
3082
|
+
}
|
3274
3083
|
> :last-child {
|
3275
3084
|
margin-bottom: 0;
|
3276
3085
|
}
|
3277
|
-
|
3086
|
+
textarea {
|
3278
3087
|
/* 1 */
|
3279
3088
|
height: 30px;
|
3280
3089
|
/* 2 */
|
@@ -3288,8 +3097,6 @@ html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
|
|
3288
3097
|
-webkit-transition: all linear 0.2s;
|
3289
3098
|
transition: all linear 0.2s;
|
3290
3099
|
border-radius: 4px;
|
3291
|
-
/* Focus state */
|
3292
|
-
/* Disabled state */
|
3293
3100
|
}
|
3294
3101
|
input {
|
3295
3102
|
&: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"] {
|
@@ -3306,8 +3113,6 @@ html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
|
|
3306
3113
|
-webkit-transition: all linear 0.2s;
|
3307
3114
|
transition: all linear 0.2s;
|
3308
3115
|
border-radius: 4px;
|
3309
|
-
/* Focus state */
|
3310
|
-
/* Disabled state */
|
3311
3116
|
}
|
3312
3117
|
}
|
3313
3118
|
select:focus, textarea:focus {
|
@@ -3350,22 +3155,16 @@ html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
|
|
3350
3155
|
color: #999999;
|
3351
3156
|
}
|
3352
3157
|
}
|
3353
|
-
textarea {
|
3354
|
-
-webkit-appearance: none;
|
3355
|
-
}
|
3356
|
-
input {
|
3357
|
-
&:not([type]), &[type="text"], &[type="password"], &[type="email"], &[type="url"], &[type="search"], &[type="tel"] {
|
3358
|
-
-webkit-appearance: none;
|
3359
|
-
}
|
3360
|
-
}
|
3361
|
-
:invalid {
|
3362
|
-
box-shadow: none;
|
3363
|
-
}
|
3364
3158
|
legend {
|
3365
|
-
width: 100%;
|
3366
3159
|
/* 1 */
|
3367
|
-
|
3160
|
+
width: 100%;
|
3368
3161
|
/* 2 */
|
3162
|
+
border: 0;
|
3163
|
+
/* 3 */
|
3164
|
+
padding: 0;
|
3165
|
+
/* 4 */
|
3166
|
+
padding-bottom: 15px;
|
3167
|
+
/* 5 */
|
3369
3168
|
font-size: 18px;
|
3370
3169
|
line-height: 30px;
|
3371
3170
|
&:after {
|
@@ -3376,6 +3175,69 @@ html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
|
|
3376
3175
|
}
|
3377
3176
|
}
|
3378
3177
|
|
3178
|
+
/*
|
3179
|
+
* Address inconsistent `text-transform` inheritance which is only inherit in Firefox
|
3180
|
+
*/
|
3181
|
+
|
3182
|
+
/*
|
3183
|
+
* 1. Correct `font` properties not being inherited.
|
3184
|
+
* 2. Don't inherit the `font-weight` and use `bold` instead.
|
3185
|
+
* NOTE: Both declarations don't work in Chrome, Safari and Opera.
|
3186
|
+
*/
|
3187
|
+
|
3188
|
+
/*
|
3189
|
+
* Removes inner padding and border in Firefox 4+.
|
3190
|
+
*/
|
3191
|
+
|
3192
|
+
/*
|
3193
|
+
* Removes excess padding in IE 8/9/10.
|
3194
|
+
*/
|
3195
|
+
|
3196
|
+
/*
|
3197
|
+
* Improves consistency of cursor style for clickable elements
|
3198
|
+
*/
|
3199
|
+
|
3200
|
+
/*
|
3201
|
+
* Remove default style in iOS.
|
3202
|
+
*/
|
3203
|
+
|
3204
|
+
/*
|
3205
|
+
* Remove inner padding and search cancel button in Chrome, Safari and Opera on OS X.
|
3206
|
+
*/
|
3207
|
+
|
3208
|
+
/*
|
3209
|
+
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
|
3210
|
+
* `font-size` values of the `input`, it causes the cursor style of the
|
3211
|
+
* decrement button to change from `default` to `text`.
|
3212
|
+
*/
|
3213
|
+
|
3214
|
+
/*
|
3215
|
+
* Define consistent border, margin, and padding.
|
3216
|
+
*/
|
3217
|
+
|
3218
|
+
/*
|
3219
|
+
* 1. Remove default vertical scrollbar in IE 8/9/10/11.
|
3220
|
+
* 2. Improve readability and alignment in all browsers.
|
3221
|
+
*/
|
3222
|
+
|
3223
|
+
/*
|
3224
|
+
* Removes placeholder transparency in Firefox.
|
3225
|
+
*/
|
3226
|
+
|
3227
|
+
/*
|
3228
|
+
* Removes `box-shadow` for invalid controls in Firefox.
|
3229
|
+
*/
|
3230
|
+
|
3231
|
+
/*
|
3232
|
+
* Vertical alignment
|
3233
|
+
*/
|
3234
|
+
|
3235
|
+
/* Style
|
3236
|
+
========================================================================== */
|
3237
|
+
/*
|
3238
|
+
* Remove margin from the last-child
|
3239
|
+
*/
|
3240
|
+
|
3379
3241
|
/*
|
3380
3242
|
* Controls
|
3381
3243
|
* Except for `range`, `radio`, `checkbox`, `file`, `submit`, `reset`, `button` and `image`
|
@@ -3387,25 +3249,19 @@ html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
|
|
3387
3249
|
|
3388
3250
|
/*
|
3389
3251
|
* Placeholder
|
3390
|
-
* Higher specificity (!important) needed to override color in IE
|
3391
|
-
*/
|
3392
|
-
|
3393
|
-
/*
|
3394
|
-
* Reset style on iOS.
|
3395
|
-
*/
|
3396
|
-
|
3397
|
-
/*
|
3398
|
-
* Removes box-shadow for invalid controls in Firefox.
|
3399
3252
|
*/
|
3400
3253
|
|
3401
3254
|
/*
|
3402
|
-
* Legend
|
3403
|
-
* 1.
|
3255
|
+
* Legend
|
3256
|
+
* 1. Behave like block element
|
3257
|
+
* 2. Correct `color` not being inherited in IE 8/9/10/11.
|
3258
|
+
* 3. Remove padding
|
3259
|
+
* 4. `margin-bottom` is not working in Safari and Opera.
|
3404
3260
|
* Using `padding` and :after instead to create the border
|
3405
|
-
*
|
3261
|
+
* 5. Style
|
3406
3262
|
*/
|
3407
3263
|
|
3408
|
-
/*
|
3264
|
+
/* 4 */
|
3409
3265
|
|
3410
3266
|
/* Size modifiers
|
3411
3267
|
* Higher specificity needed to override defaults
|
@@ -3677,37 +3533,49 @@ select.uk-form-width-mini {
|
|
3677
3533
|
Component: Button
|
3678
3534
|
========================================================================== */
|
3679
3535
|
/*
|
3680
|
-
*
|
3681
|
-
* 2. Required for `button` and `input` elements
|
3682
|
-
* 3. `line-height` is used to create a height
|
3683
|
-
* 4. `min-height` is necessary for `input` elements in Firefox and Opera because `line-height` is not working.
|
3684
|
-
* 5. Reset button group whitespace hack
|
3685
|
-
* 6. Style
|
3536
|
+
* Removes inner padding and border in Firefox 4+.
|
3686
3537
|
*/
|
3687
3538
|
|
3688
3539
|
.uk-button {
|
3540
|
+
&::-moz-focus-inner {
|
3541
|
+
border: 0;
|
3542
|
+
padding: 0;
|
3543
|
+
}
|
3689
3544
|
/* 1 */
|
3690
|
-
|
3691
|
-
-moz-box-sizing: border-box;
|
3692
|
-
box-sizing: border-box;
|
3693
|
-
vertical-align: middle;
|
3694
|
-
text-decoration: none;
|
3695
|
-
text-align: center;
|
3545
|
+
-webkit-appearance: none;
|
3696
3546
|
/* 2 */
|
3697
|
-
|
3547
|
+
margin: 0;
|
3698
3548
|
/* 3 */
|
3699
|
-
|
3549
|
+
border: none;
|
3700
3550
|
/* 4 */
|
3701
|
-
|
3551
|
+
overflow: visible;
|
3702
3552
|
/* 5 */
|
3703
|
-
font
|
3553
|
+
font: inherit;
|
3554
|
+
color: #444444;
|
3704
3555
|
/* 6 */
|
3556
|
+
text-transform: none;
|
3557
|
+
/* 7 */
|
3558
|
+
display: inline-block;
|
3559
|
+
-moz-box-sizing: border-box;
|
3560
|
+
box-sizing: border-box;
|
3705
3561
|
padding: 0 12px;
|
3706
3562
|
background: #f5f5f5;
|
3707
|
-
|
3563
|
+
vertical-align: middle;
|
3564
|
+
/* 8 */
|
3565
|
+
line-height: 28px;
|
3566
|
+
/* 9 */
|
3567
|
+
min-height: 30px;
|
3568
|
+
/* 10 */
|
3569
|
+
font-size: 1rem;
|
3570
|
+
/* 11 */
|
3571
|
+
text-decoration: none;
|
3572
|
+
text-align: center;
|
3708
3573
|
border: 1px solid rgba(0, 0, 0, 0.06);
|
3709
3574
|
border-radius: 4px;
|
3710
3575
|
text-shadow: 0 1px 0 #ffffff;
|
3576
|
+
&:not(:disabled) {
|
3577
|
+
cursor: pointer;
|
3578
|
+
}
|
3711
3579
|
&:hover, &:focus {
|
3712
3580
|
background-color: #fafafa;
|
3713
3581
|
color: #444444;
|
@@ -3723,6 +3591,20 @@ select.uk-form-width-mini {
|
|
3723
3591
|
}
|
3724
3592
|
}
|
3725
3593
|
|
3594
|
+
/*
|
3595
|
+
* 1. Correct inability to style clickable `input` types in iOS.
|
3596
|
+
* 2. Remove margins in Chrome, Safari and Opera.
|
3597
|
+
* 3. Remove borders for `button`.
|
3598
|
+
* 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
|
3599
|
+
* 5. Correct `font` properties and `color` not being inherited for `button`.
|
3600
|
+
* 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
|
3601
|
+
* 7. Style
|
3602
|
+
* 8. `line-height` is used to create a height
|
3603
|
+
* 9. `min-height` is necessary for `input` elements in Firefox and Opera because `line-height` is not working.
|
3604
|
+
* 10. Reset button group whitespace hack
|
3605
|
+
* 11. Required for `a`.
|
3606
|
+
*/
|
3607
|
+
|
3726
3608
|
/*
|
3727
3609
|
* Hover
|
3728
3610
|
* 1. Apply hover style also to focus state
|
@@ -3986,15 +3868,6 @@ select.uk-form-width-mini {
|
|
3986
3868
|
/* ========================================================================
|
3987
3869
|
Component: Icon
|
3988
3870
|
========================================================================== */
|
3989
|
-
@font-face {
|
3990
|
-
font-family: 'FontAwesome';
|
3991
|
-
src: url("../fonts/fontawesome-webfont.eot");
|
3992
|
-
src: url("../fonts/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff") format("woff"), url("../fonts/fontawesome-webfont.ttf") format("truetype");
|
3993
|
-
font-weight: normal;
|
3994
|
-
font-style: normal;
|
3995
|
-
}
|
3996
|
-
|
3997
|
-
|
3998
3871
|
/*
|
3999
3872
|
* 1. Allow margin
|
4000
3873
|
* 2. Prevent inherit font style
|
@@ -4137,7 +4010,7 @@ select.uk-form-width-mini {
|
|
4137
4010
|
content: "\f00c";
|
4138
4011
|
}
|
4139
4012
|
|
4140
|
-
.uk-icon-times:before {
|
4013
|
+
.uk-icon-remove:before, .uk-icon-close:before, .uk-icon-times:before {
|
4141
4014
|
content: "\f00d";
|
4142
4015
|
}
|
4143
4016
|
|
@@ -4565,7 +4438,7 @@ select.uk-form-width-mini {
|
|
4565
4438
|
content: "\f07e";
|
4566
4439
|
}
|
4567
4440
|
|
4568
|
-
.uk-icon-bar-chart-o:before {
|
4441
|
+
.uk-icon-bar-chart-o:before, .uk-icon-bar-chart:before {
|
4569
4442
|
content: "\f080";
|
4570
4443
|
}
|
4571
4444
|
|
@@ -5617,7 +5490,7 @@ select.uk-form-width-mini {
|
|
5617
5490
|
content: "\f1a6";
|
5618
5491
|
}
|
5619
5492
|
|
5620
|
-
.uk-icon-pied-piper
|
5493
|
+
.uk-icon-pied-piper:before {
|
5621
5494
|
content: "\f1a7";
|
5622
5495
|
}
|
5623
5496
|
|
@@ -5761,7 +5634,7 @@ select.uk-form-width-mini {
|
|
5761
5634
|
content: "\f1cc";
|
5762
5635
|
}
|
5763
5636
|
|
5764
|
-
.uk-icon-life-bouy:before, .uk-icon-life-saver:before, .uk-icon-support:before, .uk-icon-life-ring:before {
|
5637
|
+
.uk-icon-life-bouy:before, .uk-icon-life-buoy:before, .uk-icon-life-saver:before, .uk-icon-support:before, .uk-icon-life-ring:before {
|
5765
5638
|
content: "\f1cd";
|
5766
5639
|
}
|
5767
5640
|
|
@@ -5841,34 +5714,203 @@ select.uk-form-width-mini {
|
|
5841
5714
|
content: "\f1e2";
|
5842
5715
|
}
|
5843
5716
|
|
5717
|
+
.uk-icon-soccer-ball-o:before, .uk-icon-futbol-o:before {
|
5718
|
+
content: "\f1e3";
|
5719
|
+
}
|
5720
|
+
|
5721
|
+
.uk-icon-tty:before {
|
5722
|
+
content: "\f1e4";
|
5723
|
+
}
|
5724
|
+
|
5725
|
+
.uk-icon-binoculars:before {
|
5726
|
+
content: "\f1e5";
|
5727
|
+
}
|
5728
|
+
|
5729
|
+
.uk-icon-plug:before {
|
5730
|
+
content: "\f1e6";
|
5731
|
+
}
|
5732
|
+
|
5733
|
+
.uk-icon-slideshare:before {
|
5734
|
+
content: "\f1e7";
|
5735
|
+
}
|
5736
|
+
|
5737
|
+
.uk-icon-twitch:before {
|
5738
|
+
content: "\f1e8";
|
5739
|
+
}
|
5740
|
+
|
5741
|
+
.uk-icon-yelp:before {
|
5742
|
+
content: "\f1e9";
|
5743
|
+
}
|
5744
|
+
|
5745
|
+
.uk-icon-newspaper-o:before {
|
5746
|
+
content: "\f1ea";
|
5747
|
+
}
|
5748
|
+
|
5749
|
+
.uk-icon-wifi:before {
|
5750
|
+
content: "\f1eb";
|
5751
|
+
}
|
5752
|
+
|
5753
|
+
.uk-icon-calculator:before {
|
5754
|
+
content: "\f1ec";
|
5755
|
+
}
|
5756
|
+
|
5757
|
+
.uk-icon-paypal:before {
|
5758
|
+
content: "\f1ed";
|
5759
|
+
}
|
5760
|
+
|
5761
|
+
.uk-icon-google-wallet:before {
|
5762
|
+
content: "\f1ee";
|
5763
|
+
}
|
5764
|
+
|
5765
|
+
.uk-icon-cc-visa:before {
|
5766
|
+
content: "\f1f0";
|
5767
|
+
}
|
5768
|
+
|
5769
|
+
.uk-icon-cc-mastercard:before {
|
5770
|
+
content: "\f1f1";
|
5771
|
+
}
|
5772
|
+
|
5773
|
+
.uk-icon-cc-discover:before {
|
5774
|
+
content: "\f1f2";
|
5775
|
+
}
|
5776
|
+
|
5777
|
+
.uk-icon-cc-amex:before {
|
5778
|
+
content: "\f1f3";
|
5779
|
+
}
|
5780
|
+
|
5781
|
+
.uk-icon-cc-paypal:before {
|
5782
|
+
content: "\f1f4";
|
5783
|
+
}
|
5784
|
+
|
5785
|
+
.uk-icon-cc-stripe:before {
|
5786
|
+
content: "\f1f5";
|
5787
|
+
}
|
5788
|
+
|
5789
|
+
.uk-icon-bell-slash:before {
|
5790
|
+
content: "\f1f6";
|
5791
|
+
}
|
5792
|
+
|
5793
|
+
.uk-icon-bell-slash-o:before {
|
5794
|
+
content: "\f1f7";
|
5795
|
+
}
|
5796
|
+
|
5797
|
+
.uk-icon-trash:before {
|
5798
|
+
content: "\f1f8";
|
5799
|
+
}
|
5800
|
+
|
5801
|
+
.uk-icon-copyright:before {
|
5802
|
+
content: "\f1f9";
|
5803
|
+
}
|
5804
|
+
|
5805
|
+
.uk-icon-at:before {
|
5806
|
+
content: "\f1fa";
|
5807
|
+
}
|
5808
|
+
|
5809
|
+
.uk-icon-eyedropper:before {
|
5810
|
+
content: "\f1fb";
|
5811
|
+
}
|
5812
|
+
|
5813
|
+
.uk-icon-paint-brush:before {
|
5814
|
+
content: "\f1fc";
|
5815
|
+
}
|
5816
|
+
|
5817
|
+
.uk-icon-birthday-cake:before {
|
5818
|
+
content: "\f1fd";
|
5819
|
+
}
|
5820
|
+
|
5821
|
+
.uk-icon-area-chart:before {
|
5822
|
+
content: "\f1fe";
|
5823
|
+
}
|
5824
|
+
|
5825
|
+
.uk-icon-pie-chart:before {
|
5826
|
+
content: "\f200";
|
5827
|
+
}
|
5828
|
+
|
5829
|
+
.uk-icon-line-chart:before {
|
5830
|
+
content: "\f201";
|
5831
|
+
}
|
5832
|
+
|
5833
|
+
.uk-icon-lastfm:before {
|
5834
|
+
content: "\f202";
|
5835
|
+
}
|
5836
|
+
|
5837
|
+
.uk-icon-lastfm-square:before {
|
5838
|
+
content: "\f203";
|
5839
|
+
}
|
5840
|
+
|
5841
|
+
.uk-icon-toggle-off:before {
|
5842
|
+
content: "\f204";
|
5843
|
+
}
|
5844
|
+
|
5845
|
+
.uk-icon-toggle-on:before {
|
5846
|
+
content: "\f205";
|
5847
|
+
}
|
5848
|
+
|
5849
|
+
.uk-icon-bicycle:before {
|
5850
|
+
content: "\f206";
|
5851
|
+
}
|
5852
|
+
|
5853
|
+
.uk-icon-bus:before {
|
5854
|
+
content: "\f207";
|
5855
|
+
}
|
5856
|
+
|
5857
|
+
.uk-icon-ioxhost:before {
|
5858
|
+
content: "\f208";
|
5859
|
+
}
|
5860
|
+
|
5861
|
+
.uk-icon-angellist:before {
|
5862
|
+
content: "\f209";
|
5863
|
+
}
|
5864
|
+
|
5865
|
+
.uk-icon-cc:before {
|
5866
|
+
content: "\f20a";
|
5867
|
+
}
|
5868
|
+
|
5869
|
+
.uk-icon-shekel:before, .uk-icon-sheqel:before, .uk-icon-ils:before {
|
5870
|
+
content: "\f20b";
|
5871
|
+
}
|
5872
|
+
|
5873
|
+
.uk-icon-meanpath:before {
|
5874
|
+
content: "\f20c";
|
5875
|
+
}
|
5876
|
+
|
5844
5877
|
/* ========================================================================
|
5845
5878
|
Component: Close
|
5846
5879
|
========================================================================== */
|
5847
5880
|
/*
|
5848
|
-
*
|
5849
|
-
* close button more robust against different box-sizing use
|
5850
|
-
* 2. Style
|
5851
|
-
* 3. Required for `button` elements
|
5852
|
-
* 4. Needed for Safari
|
5881
|
+
* Removes inner padding and border in Firefox 4+.
|
5853
5882
|
*/
|
5854
5883
|
|
5855
5884
|
.uk-close {
|
5885
|
+
&::-moz-focus-inner {
|
5886
|
+
border: 0;
|
5887
|
+
padding: 0;
|
5888
|
+
}
|
5856
5889
|
/* 1 */
|
5857
|
-
-
|
5858
|
-
box-sizing: content-box;
|
5890
|
+
-webkit-appearance: none;
|
5859
5891
|
/* 2 */
|
5892
|
+
margin: 0;
|
5893
|
+
/* 3 */
|
5894
|
+
border: none;
|
5895
|
+
/* 4 */
|
5896
|
+
overflow: visible;
|
5897
|
+
/* 5 */
|
5898
|
+
font: inherit;
|
5899
|
+
color: inherit;
|
5900
|
+
/* 6 */
|
5901
|
+
text-transform: none;
|
5902
|
+
/* 7. */
|
5903
|
+
padding: 0;
|
5904
|
+
background: transparent;
|
5905
|
+
/* 8 */
|
5860
5906
|
display: inline-block;
|
5907
|
+
-moz-box-sizing: content-box;
|
5908
|
+
box-sizing: content-box;
|
5861
5909
|
width: 20px;
|
5862
5910
|
line-height: 20px;
|
5863
5911
|
text-align: center;
|
5864
|
-
|
5912
|
+
vertical-align: middle;
|
5865
5913
|
opacity: 0.3;
|
5866
|
-
/* 3. */
|
5867
|
-
padding: 0;
|
5868
|
-
border: 0;
|
5869
|
-
-webkit-appearance: none;
|
5870
|
-
/* 4. */
|
5871
|
-
background: transparent;
|
5872
5914
|
&:after {
|
5873
5915
|
display: block;
|
5874
5916
|
content: "\f00d";
|
@@ -5885,6 +5927,17 @@ select.uk-form-width-mini {
|
|
5885
5927
|
}
|
5886
5928
|
}
|
5887
5929
|
|
5930
|
+
/*
|
5931
|
+
* 1. Correct inability to style clickable `input` types in iOS.
|
5932
|
+
* 2. Remove margins in Chrome, Safari and Opera.
|
5933
|
+
* 3. Remove borders for `button`.
|
5934
|
+
* 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
|
5935
|
+
* 5. Correct `font` properties and `color` not being inherited for `button`.
|
5936
|
+
* 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
|
5937
|
+
* 7. Remove default `button` padding and background color
|
5938
|
+
* 8. Style
|
5939
|
+
*/
|
5940
|
+
|
5888
5941
|
/* Icon */
|
5889
5942
|
|
5890
5943
|
/*
|
@@ -8461,4 +8514,4 @@ a.uk-thumbnail {
|
|
8461
8514
|
h2, h3 {
|
8462
8515
|
page-break-after: avoid;
|
8463
8516
|
}
|
8464
|
-
}
|
8517
|
+
}
|