purecss-sass 2.0.2 → 2.0.3
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/.travis.yml +1 -0
- data/CHANGELOG.md +6 -0
- data/lib/purecss/sass/version.rb +1 -1
- data/package.json +1 -1
- data/vendor/assets/stylesheets/purecss/_base.scss +4 -1
- data/vendor/assets/stylesheets/purecss/_buttons.scss +10 -1
- data/vendor/assets/stylesheets/purecss/_forms-nr.scss +7 -1
- data/vendor/assets/stylesheets/purecss/_forms.scss +7 -1
- data/vendor/assets/stylesheets/purecss/_grids-responsive.scss +1 -1
- data/vendor/assets/stylesheets/purecss/_grids.scss +7 -1
- data/vendor/assets/stylesheets/purecss/_menus.scss +2 -1
- data/vendor/assets/stylesheets/purecss/_tables.scss +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 909462f532b2c5f3f3653d5b560045f6c38cb4cfcb57b0d2d3690bafd28fbc30
|
|
4
|
+
data.tar.gz: e0473810bef653777dd3d069912a42a00cc618dace954dd633a74ff797652db1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c2f5e4263e52bedd9d7a00bfcb4b650fce2a22eaf3a1f0c3ff1ad4d1ed167b8ff0d2da297b4463cde472c97479e7ae89455ab5178821e7ad5dd120c827b3dd6
|
|
7
|
+
data.tar.gz: 0ec4314a866959f3a7db16ee41d0e361d8ef321bb28ded5ad8bd63485c9297e20f40ce3e5f246e096b9a84bf0fd9dc305bae4e772a3b202e27a207268375093e
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/lib/purecss/sass/version.rb
CHANGED
data/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Pure v2.0.
|
|
2
|
+
Pure v2.0.3
|
|
3
3
|
Copyright 2013 Yahoo!
|
|
4
4
|
Licensed under the BSD License.
|
|
5
5
|
https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
@@ -65,6 +65,7 @@ h1 {
|
|
|
65
65
|
*/
|
|
66
66
|
|
|
67
67
|
hr {
|
|
68
|
+
-webkit-box-sizing: content-box;
|
|
68
69
|
box-sizing: content-box;
|
|
69
70
|
|
|
70
71
|
/* 1 */
|
|
@@ -264,6 +265,7 @@ fieldset {
|
|
|
264
265
|
*/
|
|
265
266
|
|
|
266
267
|
legend {
|
|
268
|
+
-webkit-box-sizing: border-box;
|
|
267
269
|
box-sizing: border-box;
|
|
268
270
|
|
|
269
271
|
/* 1 */
|
|
@@ -306,6 +308,7 @@ textarea {
|
|
|
306
308
|
*/
|
|
307
309
|
|
|
308
310
|
[type="checkbox"], [type="radio"] {
|
|
311
|
+
-webkit-box-sizing: border-box;
|
|
309
312
|
box-sizing: border-box;
|
|
310
313
|
|
|
311
314
|
/* 1 */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Pure v2.0.
|
|
2
|
+
Pure v2.0.3
|
|
3
3
|
Copyright 2013 Yahoo!
|
|
4
4
|
Licensed under the BSD License.
|
|
5
5
|
https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
@@ -18,6 +18,7 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
|
18
18
|
-moz-user-select: none;
|
|
19
19
|
-ms-user-select: none;
|
|
20
20
|
user-select: none;
|
|
21
|
+
-webkit-box-sizing: border-box;
|
|
21
22
|
box-sizing: border-box;
|
|
22
23
|
|
|
23
24
|
&::-moz-focus-inner {
|
|
@@ -68,27 +69,32 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
|
68
69
|
}
|
|
69
70
|
|
|
70
71
|
.pure-button-hover {
|
|
72
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.1)));
|
|
71
73
|
background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1));
|
|
72
74
|
}
|
|
73
75
|
|
|
74
76
|
.pure-button {
|
|
75
77
|
&:hover {
|
|
78
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.1)));
|
|
76
79
|
background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1));
|
|
77
80
|
}
|
|
78
81
|
|
|
79
82
|
&:focus {
|
|
83
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.1)));
|
|
80
84
|
background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1));
|
|
81
85
|
outline: 0;
|
|
82
86
|
}
|
|
83
87
|
}
|
|
84
88
|
|
|
85
89
|
.pure-button-active {
|
|
90
|
+
-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
|
|
86
91
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
|
|
87
92
|
border-color: #000;
|
|
88
93
|
}
|
|
89
94
|
|
|
90
95
|
.pure-button {
|
|
91
96
|
&:active {
|
|
97
|
+
-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
|
|
92
98
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
|
|
93
99
|
border-color: #000;
|
|
94
100
|
}
|
|
@@ -98,6 +104,7 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
|
98
104
|
background-image: none;
|
|
99
105
|
opacity: 0.40;
|
|
100
106
|
cursor: not-allowed;
|
|
107
|
+
-webkit-box-shadow: none;
|
|
101
108
|
box-shadow: none;
|
|
102
109
|
pointer-events: none;
|
|
103
110
|
}
|
|
@@ -108,6 +115,7 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
|
108
115
|
background-image: none;
|
|
109
116
|
opacity: 0.40;
|
|
110
117
|
cursor: not-allowed;
|
|
118
|
+
-webkit-box-shadow: none;
|
|
111
119
|
box-shadow: none;
|
|
112
120
|
pointer-events: none;
|
|
113
121
|
|
|
@@ -116,6 +124,7 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
|
116
124
|
background-image: none;
|
|
117
125
|
opacity: 0.40;
|
|
118
126
|
cursor: not-allowed;
|
|
127
|
+
-webkit-box-shadow: none;
|
|
119
128
|
box-shadow: none;
|
|
120
129
|
pointer-events: none;
|
|
121
130
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Pure v2.0.
|
|
2
|
+
Pure v2.0.3
|
|
3
3
|
Copyright 2013 Yahoo!
|
|
4
4
|
Licensed under the BSD License.
|
|
5
5
|
https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
@@ -18,9 +18,11 @@ so we can ignore the csslint warning.
|
|
|
18
18
|
padding: 0.5em 0.6em;
|
|
19
19
|
display: inline-block;
|
|
20
20
|
border: 1px solid #ccc;
|
|
21
|
+
-webkit-box-shadow: inset 0 1px 3px #ddd;
|
|
21
22
|
box-shadow: inset 0 1px 3px #ddd;
|
|
22
23
|
border-radius: 4px;
|
|
23
24
|
vertical-align: middle;
|
|
25
|
+
-webkit-box-sizing: border-box;
|
|
24
26
|
box-sizing: border-box;
|
|
25
27
|
}
|
|
26
28
|
}
|
|
@@ -29,9 +31,11 @@ so we can ignore the csslint warning.
|
|
|
29
31
|
padding: 0.5em 0.6em;
|
|
30
32
|
display: inline-block;
|
|
31
33
|
border: 1px solid #ccc;
|
|
34
|
+
-webkit-box-shadow: inset 0 1px 3px #ddd;
|
|
32
35
|
box-shadow: inset 0 1px 3px #ddd;
|
|
33
36
|
border-radius: 4px;
|
|
34
37
|
vertical-align: middle;
|
|
38
|
+
-webkit-box-sizing: border-box;
|
|
35
39
|
box-sizing: border-box;
|
|
36
40
|
}
|
|
37
41
|
|
|
@@ -40,8 +44,10 @@ so we can ignore the csslint warning.
|
|
|
40
44
|
padding: 0.5em 0.6em;
|
|
41
45
|
display: inline-block;
|
|
42
46
|
border: 1px solid #ccc;
|
|
47
|
+
-webkit-box-shadow: inset 0 1px 3px #ddd;
|
|
43
48
|
box-shadow: inset 0 1px 3px #ddd;
|
|
44
49
|
border-radius: 4px;
|
|
50
|
+
-webkit-box-sizing: border-box;
|
|
45
51
|
box-sizing: border-box;
|
|
46
52
|
}
|
|
47
53
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Pure v2.0.
|
|
2
|
+
Pure v2.0.3
|
|
3
3
|
Copyright 2013 Yahoo!
|
|
4
4
|
Licensed under the BSD License.
|
|
5
5
|
https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
@@ -18,9 +18,11 @@ so we can ignore the csslint warning.
|
|
|
18
18
|
padding: 0.5em 0.6em;
|
|
19
19
|
display: inline-block;
|
|
20
20
|
border: 1px solid #ccc;
|
|
21
|
+
-webkit-box-shadow: inset 0 1px 3px #ddd;
|
|
21
22
|
box-shadow: inset 0 1px 3px #ddd;
|
|
22
23
|
border-radius: 4px;
|
|
23
24
|
vertical-align: middle;
|
|
25
|
+
-webkit-box-sizing: border-box;
|
|
24
26
|
box-sizing: border-box;
|
|
25
27
|
}
|
|
26
28
|
}
|
|
@@ -29,9 +31,11 @@ so we can ignore the csslint warning.
|
|
|
29
31
|
padding: 0.5em 0.6em;
|
|
30
32
|
display: inline-block;
|
|
31
33
|
border: 1px solid #ccc;
|
|
34
|
+
-webkit-box-shadow: inset 0 1px 3px #ddd;
|
|
32
35
|
box-shadow: inset 0 1px 3px #ddd;
|
|
33
36
|
border-radius: 4px;
|
|
34
37
|
vertical-align: middle;
|
|
38
|
+
-webkit-box-sizing: border-box;
|
|
35
39
|
box-sizing: border-box;
|
|
36
40
|
}
|
|
37
41
|
|
|
@@ -40,8 +44,10 @@ so we can ignore the csslint warning.
|
|
|
40
44
|
padding: 0.5em 0.6em;
|
|
41
45
|
display: inline-block;
|
|
42
46
|
border: 1px solid #ccc;
|
|
47
|
+
-webkit-box-shadow: inset 0 1px 3px #ddd;
|
|
43
48
|
box-shadow: inset 0 1px 3px #ddd;
|
|
44
49
|
border-radius: 4px;
|
|
50
|
+
-webkit-box-sizing: border-box;
|
|
45
51
|
box-sizing: border-box;
|
|
46
52
|
}
|
|
47
53
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Pure v2.0.
|
|
2
|
+
Pure v2.0.3
|
|
3
3
|
Copyright 2013 Yahoo!
|
|
4
4
|
Licensed under the BSD License.
|
|
5
5
|
https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
@@ -33,10 +33,16 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
|
33
33
|
font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif;
|
|
34
34
|
|
|
35
35
|
/* Use flexbox when possible to avoid `letter-spacing` side-effects. */
|
|
36
|
+
display: -webkit-box;
|
|
37
|
+
display: -ms-flexbox;
|
|
36
38
|
display: flex;
|
|
39
|
+
-webkit-box-orient: horizontal;
|
|
40
|
+
-webkit-box-direction: normal;
|
|
41
|
+
-ms-flex-flow: row wrap;
|
|
37
42
|
flex-flow: row wrap;
|
|
38
43
|
|
|
39
44
|
/* Prevents distributing space between rows */
|
|
45
|
+
-ms-flex-line-pack: start;
|
|
40
46
|
align-content: flex-start;
|
|
41
47
|
}
|
|
42
48
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
Pure v2.0.
|
|
2
|
+
Pure v2.0.3
|
|
3
3
|
Copyright 2013 Yahoo!
|
|
4
4
|
Licensed under the BSD License.
|
|
5
5
|
https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
@@ -7,6 +7,7 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
|
7
7
|
/*csslint adjoining-classes: false, box-model:false*/
|
|
8
8
|
|
|
9
9
|
.pure-menu {
|
|
10
|
+
-webkit-box-sizing: border-box;
|
|
10
11
|
box-sizing: border-box;
|
|
11
12
|
}
|
|
12
13
|
|