volt-foundation 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/app/foundation/assets/css/foundation.min.css +1 -1
- data/app/foundation/assets/css/normalize.css +12 -13
- data/app/foundation/assets/js/foundation.min.js +6 -5709
- data/app/foundation/assets/js/vendor/modernizr.js +1 -1
- data/lib/volt/foundation.rb +1 -3
- metadata +18 -13
- checksums.yaml +0 -7
- data/app/foundation/assets/css/foundation.css +0 -6196
@@ -1,9 +1,9 @@
|
|
1
|
-
/*! normalize.css v3.0.
|
1
|
+
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
|
2
2
|
|
3
3
|
/**
|
4
4
|
* 1. Set default font family to sans-serif.
|
5
|
-
* 2. Prevent iOS text size adjust after orientation change,
|
6
|
-
* user zoom.
|
5
|
+
* 2. Prevent iOS and IE text size adjust after device orientation change,
|
6
|
+
* without disabling user zoom.
|
7
7
|
*/
|
8
8
|
|
9
9
|
html {
|
@@ -25,7 +25,8 @@ body {
|
|
25
25
|
|
26
26
|
/**
|
27
27
|
* Correct `block` display not defined for any HTML5 element in IE 8/9.
|
28
|
-
* Correct `block` display not defined for `details` or `summary` in IE 10/11
|
28
|
+
* Correct `block` display not defined for `details` or `summary` in IE 10/11
|
29
|
+
* and Firefox.
|
29
30
|
* Correct `block` display not defined for `main` in IE 11.
|
30
31
|
*/
|
31
32
|
|
@@ -38,6 +39,7 @@ footer,
|
|
38
39
|
header,
|
39
40
|
hgroup,
|
40
41
|
main,
|
42
|
+
menu,
|
41
43
|
nav,
|
42
44
|
section,
|
43
45
|
summary {
|
@@ -69,7 +71,7 @@ audio:not([controls]) {
|
|
69
71
|
|
70
72
|
/**
|
71
73
|
* Address `[hidden]` styling not present in IE 8/9/10.
|
72
|
-
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
|
74
|
+
* Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
|
73
75
|
*/
|
74
76
|
|
75
77
|
[hidden],
|
@@ -85,11 +87,12 @@ template {
|
|
85
87
|
*/
|
86
88
|
|
87
89
|
a {
|
88
|
-
background: transparent;
|
90
|
+
background-color: transparent;
|
89
91
|
}
|
90
92
|
|
91
93
|
/**
|
92
|
-
* Improve readability
|
94
|
+
* Improve readability of focused elements when they are also in an
|
95
|
+
* active/hover state.
|
93
96
|
*/
|
94
97
|
|
95
98
|
a:active,
|
@@ -207,7 +210,6 @@ figure {
|
|
207
210
|
*/
|
208
211
|
|
209
212
|
hr {
|
210
|
-
-moz-box-sizing: content-box;
|
211
213
|
box-sizing: content-box;
|
212
214
|
height: 0;
|
213
215
|
}
|
@@ -348,15 +350,12 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
348
350
|
|
349
351
|
/**
|
350
352
|
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
|
351
|
-
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
|
352
|
-
* (include `-moz` to future-proof).
|
353
|
+
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
|
353
354
|
*/
|
354
355
|
|
355
356
|
input[type="search"] {
|
356
357
|
-webkit-appearance: textfield; /* 1 */
|
357
|
-
|
358
|
-
-webkit-box-sizing: content-box; /* 2 */
|
359
|
-
box-sizing: content-box;
|
358
|
+
box-sizing: content-box; /* 2 */
|
360
359
|
}
|
361
360
|
|
362
361
|
/**
|