purecss-sass 2.2.0 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- 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 +1 -4
- data/vendor/assets/stylesheets/purecss/_buttons.scss +1 -12
- data/vendor/assets/stylesheets/purecss/_forms.scss +1 -7
- data/vendor/assets/stylesheets/purecss/_grids-responsive.scss +1 -1
- data/vendor/assets/stylesheets/purecss/_grids.scss +1 -61
- data/vendor/assets/stylesheets/purecss/_menus.scss +1 -2
- data/vendor/assets/stylesheets/purecss/_tables.scss +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae0f24d1009fa1927b31413ac9f02e4ee77ff3ca5a70e9fa49b6faf9cd5ec7dc
|
4
|
+
data.tar.gz: 1f0a83979bed6aa912619b15af78e8747107ffc377520d5248b9a86c0acc63d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67e35c9b4aeb82f499efd6edd41d6255396bc54043a105a0bfcd664288d82d3cec22d95ca812cad79e3d767097286a9c4577fb07be968642026e3b7cbf6d36bc
|
7
|
+
data.tar.gz: 58208093b54eb737856a30a63a6119be99d43e88894da75b923d07bd1ffe664bfddb30d5df03daa8a46f47a89ee8d2e2cfd099825a49efad7abcf9d439ac37bc
|
data/CHANGELOG.md
CHANGED
data/lib/purecss/sass/version.rb
CHANGED
data/package.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
Pure
|
2
|
+
Pure v3.0.0
|
3
3
|
Copyright 2013 Yahoo!
|
4
4
|
Licensed under the BSD License.
|
5
5
|
https://github.com/pure-css/pure/blob/master/LICENSE
|
@@ -65,7 +65,6 @@ h1 {
|
|
65
65
|
*/
|
66
66
|
|
67
67
|
hr {
|
68
|
-
-webkit-box-sizing: content-box;
|
69
68
|
box-sizing: content-box;
|
70
69
|
|
71
70
|
/* 1 */
|
@@ -265,7 +264,6 @@ fieldset {
|
|
265
264
|
*/
|
266
265
|
|
267
266
|
legend {
|
268
|
-
-webkit-box-sizing: border-box;
|
269
267
|
box-sizing: border-box;
|
270
268
|
|
271
269
|
/* 1 */
|
@@ -308,7 +306,6 @@ textarea {
|
|
308
306
|
*/
|
309
307
|
|
310
308
|
[type="checkbox"], [type="radio"] {
|
311
|
-
-webkit-box-sizing: border-box;
|
312
309
|
box-sizing: border-box;
|
313
310
|
|
314
311
|
/* 1 */
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
Pure
|
2
|
+
Pure v3.0.0
|
3
3
|
Copyright 2013 Yahoo!
|
4
4
|
Licensed under the BSD License.
|
5
5
|
https://github.com/pure-css/pure/blob/master/LICENSE
|
@@ -15,10 +15,7 @@ https://github.com/pure-css/pure/blob/master/LICENSE
|
|
15
15
|
cursor: pointer;
|
16
16
|
-webkit-user-drag: none;
|
17
17
|
-webkit-user-select: none;
|
18
|
-
-moz-user-select: none;
|
19
|
-
-ms-user-select: none;
|
20
18
|
user-select: none;
|
21
|
-
-webkit-box-sizing: border-box;
|
22
19
|
box-sizing: border-box;
|
23
20
|
|
24
21
|
&::-moz-focus-inner {
|
@@ -69,32 +66,27 @@ https://github.com/pure-css/pure/blob/master/LICENSE
|
|
69
66
|
}
|
70
67
|
|
71
68
|
.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)));
|
73
69
|
background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1));
|
74
70
|
}
|
75
71
|
|
76
72
|
.pure-button {
|
77
73
|
&: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)));
|
79
74
|
background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1));
|
80
75
|
}
|
81
76
|
|
82
77
|
&: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)));
|
84
78
|
background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1));
|
85
79
|
outline: 0;
|
86
80
|
}
|
87
81
|
}
|
88
82
|
|
89
83
|
.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;
|
91
84
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
|
92
85
|
border-color: #000;
|
93
86
|
}
|
94
87
|
|
95
88
|
.pure-button {
|
96
89
|
&: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;
|
98
90
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
|
99
91
|
border-color: #000;
|
100
92
|
}
|
@@ -104,7 +96,6 @@ https://github.com/pure-css/pure/blob/master/LICENSE
|
|
104
96
|
background-image: none;
|
105
97
|
opacity: 0.40;
|
106
98
|
cursor: not-allowed;
|
107
|
-
-webkit-box-shadow: none;
|
108
99
|
box-shadow: none;
|
109
100
|
pointer-events: none;
|
110
101
|
}
|
@@ -115,7 +106,6 @@ https://github.com/pure-css/pure/blob/master/LICENSE
|
|
115
106
|
background-image: none;
|
116
107
|
opacity: 0.40;
|
117
108
|
cursor: not-allowed;
|
118
|
-
-webkit-box-shadow: none;
|
119
109
|
box-shadow: none;
|
120
110
|
pointer-events: none;
|
121
111
|
|
@@ -124,7 +114,6 @@ https://github.com/pure-css/pure/blob/master/LICENSE
|
|
124
114
|
background-image: none;
|
125
115
|
opacity: 0.40;
|
126
116
|
cursor: not-allowed;
|
127
|
-
-webkit-box-shadow: none;
|
128
117
|
box-shadow: none;
|
129
118
|
pointer-events: none;
|
130
119
|
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
Pure
|
2
|
+
Pure v3.0.0
|
3
3
|
Copyright 2013 Yahoo!
|
4
4
|
Licensed under the BSD License.
|
5
5
|
https://github.com/pure-css/pure/blob/master/LICENSE
|
@@ -18,11 +18,9 @@ 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;
|
22
21
|
box-shadow: inset 0 1px 3px #ddd;
|
23
22
|
border-radius: 4px;
|
24
23
|
vertical-align: middle;
|
25
|
-
-webkit-box-sizing: border-box;
|
26
24
|
box-sizing: border-box;
|
27
25
|
}
|
28
26
|
}
|
@@ -31,11 +29,9 @@ so we can ignore the csslint warning.
|
|
31
29
|
padding: 0.5em 0.6em;
|
32
30
|
display: inline-block;
|
33
31
|
border: 1px solid #ccc;
|
34
|
-
-webkit-box-shadow: inset 0 1px 3px #ddd;
|
35
32
|
box-shadow: inset 0 1px 3px #ddd;
|
36
33
|
border-radius: 4px;
|
37
34
|
vertical-align: middle;
|
38
|
-
-webkit-box-sizing: border-box;
|
39
35
|
box-sizing: border-box;
|
40
36
|
}
|
41
37
|
|
@@ -44,10 +40,8 @@ so we can ignore the csslint warning.
|
|
44
40
|
padding: 0.5em 0.6em;
|
45
41
|
display: inline-block;
|
46
42
|
border: 1px solid #ccc;
|
47
|
-
-webkit-box-shadow: inset 0 1px 3px #ddd;
|
48
43
|
box-shadow: inset 0 1px 3px #ddd;
|
49
44
|
border-radius: 4px;
|
50
|
-
-webkit-box-sizing: border-box;
|
51
45
|
box-sizing: border-box;
|
52
46
|
}
|
53
47
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
Pure
|
2
|
+
Pure v3.0.0
|
3
3
|
Copyright 2013 Yahoo!
|
4
4
|
Licensed under the BSD License.
|
5
5
|
https://github.com/pure-css/pure/blob/master/LICENSE
|
@@ -7,76 +7,16 @@ https://github.com/pure-css/pure/blob/master/LICENSE
|
|
7
7
|
/*csslint regex-selectors:false, known-properties:false, duplicate-properties:false*/
|
8
8
|
|
9
9
|
.pure-g {
|
10
|
-
letter-spacing: -0.31em;
|
11
|
-
|
12
|
-
/* Webkit: collapse white-space between units */
|
13
|
-
text-rendering: optimizespeed;
|
14
|
-
|
15
|
-
/* Webkit: fixes text-rendering: optimizeLegibility */
|
16
|
-
|
17
|
-
/*
|
18
|
-
Sets the font stack to fonts known to work properly with the above letter
|
19
|
-
and word spacings. See: https://github.com/pure-css/pure/issues/41/
|
20
|
-
|
21
|
-
The following font stack makes Pure Grids work on all known environments.
|
22
|
-
|
23
|
-
* FreeSans: Ships with many Linux distros, including Ubuntu
|
24
|
-
|
25
|
-
* Arimo: Ships with Chrome OS. Arimo has to be defined before Helvetica and
|
26
|
-
Arial to get picked up by the browser, even though neither is available
|
27
|
-
in Chrome OS.
|
28
|
-
|
29
|
-
* Droid Sans: Ships with all versions of Android.
|
30
|
-
|
31
|
-
* Helvetica, Arial, sans-serif: Common font stack on OS X and Windows.
|
32
|
-
*/
|
33
|
-
font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif;
|
34
|
-
|
35
|
-
/* Use flexbox when possible to avoid `letter-spacing` side-effects. */
|
36
|
-
display: -webkit-box;
|
37
|
-
display: -ms-flexbox;
|
38
10
|
display: flex;
|
39
|
-
-webkit-box-orient: horizontal;
|
40
|
-
-webkit-box-direction: normal;
|
41
|
-
-ms-flex-flow: row wrap;
|
42
11
|
flex-flow: row wrap;
|
43
12
|
|
44
13
|
/* Prevents distributing space between rows */
|
45
|
-
-ms-flex-line-pack: start;
|
46
14
|
align-content: flex-start;
|
47
15
|
}
|
48
16
|
|
49
|
-
/* IE10 display: -ms-flexbox (and display: flex in IE 11) does not work inside a table; fall back to block and rely on font hack */
|
50
|
-
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
51
|
-
table .pure-g {
|
52
|
-
display: block;
|
53
|
-
}
|
54
|
-
}
|
55
|
-
|
56
|
-
/* Opera as of 12 on Windows needs word-spacing.
|
57
|
-
The ".opera-only" selector is used to prevent actual prefocus styling
|
58
|
-
and is not required in markup.
|
59
|
-
*/
|
60
|
-
|
61
|
-
.opera-only :-o-prefocus, .pure-g {
|
62
|
-
word-spacing: -0.43em;
|
63
|
-
}
|
64
|
-
|
65
17
|
.pure-u {
|
66
18
|
display: inline-block;
|
67
|
-
letter-spacing: normal;
|
68
|
-
word-spacing: normal;
|
69
19
|
vertical-align: top;
|
70
|
-
text-rendering: auto;
|
71
|
-
}
|
72
|
-
|
73
|
-
/*
|
74
|
-
Resets the font family back to the OS/browser's default sans-serif font,
|
75
|
-
this the same font stack that Normalize.css sets for the `body`.
|
76
|
-
*/
|
77
|
-
|
78
|
-
.pure-g [class*="pure-u"] {
|
79
|
-
font-family: sans-serif;
|
80
20
|
}
|
81
21
|
|
82
22
|
.pure-u-1, .pure-u-1-1, .pure-u-1-2, .pure-u-1-3, .pure-u-2-3, .pure-u-1-4, .pure-u-3-4, .pure-u-1-5, .pure-u-2-5, .pure-u-3-5, .pure-u-4-5, .pure-u-5-5, .pure-u-1-6, .pure-u-5-6, .pure-u-1-8, .pure-u-3-8, .pure-u-5-8, .pure-u-7-8, .pure-u-1-12, .pure-u-5-12, .pure-u-7-12, .pure-u-11-12, .pure-u-1-24, .pure-u-2-24, .pure-u-3-24, .pure-u-4-24, .pure-u-5-24, .pure-u-6-24, .pure-u-7-24, .pure-u-8-24, .pure-u-9-24, .pure-u-10-24, .pure-u-11-24, .pure-u-12-24, .pure-u-13-24, .pure-u-14-24, .pure-u-15-24, .pure-u-16-24, .pure-u-17-24, .pure-u-18-24, .pure-u-19-24, .pure-u-20-24, .pure-u-21-24, .pure-u-22-24, .pure-u-23-24, .pure-u-24-24 {
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
Pure
|
2
|
+
Pure v3.0.0
|
3
3
|
Copyright 2013 Yahoo!
|
4
4
|
Licensed under the BSD License.
|
5
5
|
https://github.com/pure-css/pure/blob/master/LICENSE
|
@@ -7,7 +7,6 @@ https://github.com/pure-css/pure/blob/master/LICENSE
|
|
7
7
|
/*csslint adjoining-classes: false, box-model:false*/
|
8
8
|
|
9
9
|
.pure-menu {
|
10
|
-
-webkit-box-sizing: border-box;
|
11
10
|
box-sizing: border-box;
|
12
11
|
}
|
13
12
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: purecss-sass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dmitriy Tarasov
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-10-
|
11
|
+
date: 2022-10-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sassc
|