purecss-sass 2.2.0 → 3.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d69996defd9c1fc406719bd464eb07c9532e4a255efd66ad56bac958a8445ee9
4
- data.tar.gz: 9bd3ab2abcf0bdd000ab54f5920af7f1cda962d183944f0d9025341398109fa5
3
+ metadata.gz: 1f2789ecc85ce2be47ae8bcc0167f231ee5addfa7106706bf660822ebbe8c817
4
+ data.tar.gz: 2efb5f4c53a995d488f78eebf2ec75afe3a20f00d97c6d8152c27c7a37745414
5
5
  SHA512:
6
- metadata.gz: b8dc8169c2a3bb1df6753cea2e816bf4262825716495ad16b42e82904a8437eb52ce6a0955cd688ad0f4730b2f4c5b14901c42dc7128c00d6fbd43e0997a5cea
7
- data.tar.gz: 1eb53e11f56b1618a657a2f2310681349905eb7c86e86361a04cc8ff25f2f82afadec03f27556d954b212713c2955b432934f9be9d956ec02d958335f2761f1b
6
+ metadata.gz: aca0610128e5e93116d431c4f5e1c9277d8acf943a3029bab335e23c5a6ea6c040451c4f287f1365fc9c1fa840040ae0da64aaf8d66a12d6b46a89455d159d91
7
+ data.tar.gz: b5bb70fc9770ef6a9b6ab4c178b44719e594a16afc14cd2d51898f6c97b8ed04dce6422394d0a0107608312ebc42d86d0ec8264e6341070001255880c7b38529
data/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## 3.0.1 (2023-05-06)
2
+
3
+ - fix: include forms-nr module
4
+ - fix: include grids module in the default import
5
+
6
+ Framework version: Pure v3.0.0
7
+
8
+ ## 3.0.0 (2022-10-27)
9
+
10
+ - Update assets to match upstream version
11
+
12
+ Framework version: Pure v3.0.0
13
+
1
14
  ## 2.2.0 (2022-10-20)
2
15
 
3
16
  - Update assets to match upstream version
data/README.md CHANGED
@@ -42,19 +42,19 @@ Open `/app/assets/stylesheets/application.scss` file and add this line:
42
42
 
43
43
  ## Usage
44
44
 
45
- By default, using `@import 'purecss';`, all of Pure CSS responsive components are imported.
45
+ By default, using `@import 'purecss';`, all of Pure CSS components are imported except non-responsive forms, which are identical to responsive forms minus media queries.
46
46
 
47
47
  You can import individual Sass components like this:
48
48
 
49
49
  ```scss
50
- @import 'purecss/base';
51
- @import 'purecss/buttons';
52
- @import 'purecss/forms';
53
- @import 'purecss/forms-nr';
54
- @import 'purecss/grids';
55
- @import 'purecss/grids-responsive';
56
- @import 'purecss/menus';
57
- @import 'purecss/tables';
50
+ @import 'purecss/base'; // Base
51
+ @import 'purecss/buttons'; // Buttons
52
+ @import 'purecss/forms'; // Forms (Responsive)
53
+ @import 'purecss/forms-nr'; // Forms (Non-Responsive)
54
+ @import 'purecss/grids'; // Grids (Base)
55
+ @import 'purecss/grids-responsive'; // Grids (Responsive)
56
+ @import 'purecss/menus'; // Menus (Responsive)
57
+ @import 'purecss/tables'; // Tables
58
58
  ```
59
59
 
60
60
  ## Versioning
@@ -1,5 +1,5 @@
1
1
  module Purecss
2
2
  module Sass
3
- VERSION = '2.2.0'.freeze
3
+ VERSION = '3.0.1'.freeze
4
4
  end
5
5
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "purecss-sass",
3
- "version": "2.2.0",
3
+ "version": "3.0.1",
4
4
  "description": "Pure CSS framework, converted to Sass and ready to use in Sass powered applications",
5
5
  "keywords": [
6
6
  "pure",
@@ -1,6 +1,7 @@
1
1
  @import 'purecss/base';
2
2
  @import 'purecss/buttons';
3
3
  @import 'purecss/forms';
4
+ @import 'purecss/grids';
4
5
  @import 'purecss/grids-responsive';
5
6
  @import 'purecss/menus';
6
7
  @import 'purecss/tables';
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v2.2.0
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 v2.2.0
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
  }
@@ -0,0 +1,329 @@
1
+ /*!
2
+ Pure v3.0.0
3
+ Copyright 2013 Yahoo!
4
+ Licensed under the BSD License.
5
+ https://github.com/pure-css/pure/blob/master/LICENSE
6
+ */
7
+ /*csslint box-model:false*/
8
+ /*
9
+ Box-model set to false because we're setting a height on select elements, which
10
+ also have border and padding. This is done because some browsers don't render
11
+ the padding. We explicitly set the box-model for select elements to border-box,
12
+ so we can ignore the csslint warning.
13
+ */
14
+
15
+ .pure-form {
16
+ input {
17
+ &[type="text"], &[type="password"], &[type="email"], &[type="url"], &[type="date"], &[type="month"], &[type="time"], &[type="datetime"], &[type="datetime-local"], &[type="week"], &[type="number"], &[type="search"], &[type="tel"], &[type="color"] {
18
+ padding: 0.5em 0.6em;
19
+ display: inline-block;
20
+ border: 1px solid #ccc;
21
+ box-shadow: inset 0 1px 3px #ddd;
22
+ border-radius: 4px;
23
+ vertical-align: middle;
24
+ box-sizing: border-box;
25
+ }
26
+ }
27
+
28
+ select, textarea {
29
+ padding: 0.5em 0.6em;
30
+ display: inline-block;
31
+ border: 1px solid #ccc;
32
+ box-shadow: inset 0 1px 3px #ddd;
33
+ border-radius: 4px;
34
+ vertical-align: middle;
35
+ box-sizing: border-box;
36
+ }
37
+
38
+ input {
39
+ &:not([type]) {
40
+ padding: 0.5em 0.6em;
41
+ display: inline-block;
42
+ border: 1px solid #ccc;
43
+ box-shadow: inset 0 1px 3px #ddd;
44
+ border-radius: 4px;
45
+ box-sizing: border-box;
46
+ }
47
+
48
+ &[type="color"] {
49
+ padding: 0.2em 0.5em;
50
+ }
51
+
52
+ &[type="text"]:focus, &[type="password"]:focus, &[type="email"]:focus, &[type="url"]:focus, &[type="date"]:focus, &[type="month"]:focus, &[type="time"]:focus, &[type="datetime"]:focus, &[type="datetime-local"]:focus, &[type="week"]:focus, &[type="number"]:focus, &[type="search"]:focus, &[type="tel"]:focus, &[type="color"]:focus {
53
+ outline: 0;
54
+ border-color: #129FEA;
55
+ }
56
+ }
57
+
58
+ select:focus, textarea:focus {
59
+ outline: 0;
60
+ border-color: #129FEA;
61
+ }
62
+
63
+ input {
64
+ &:not([type]):focus {
65
+ outline: 0;
66
+ border-color: #129FEA;
67
+ }
68
+
69
+ &[type="file"]:focus, &[type="radio"]:focus, &[type="checkbox"]:focus {
70
+ outline: thin solid #129FEA;
71
+ outline: 1px auto #129FEA;
72
+ }
73
+ }
74
+
75
+ .pure-checkbox, .pure-radio {
76
+ margin: 0.5em 0;
77
+ display: block;
78
+ }
79
+
80
+ input {
81
+ &[type="text"][disabled], &[type="password"][disabled], &[type="email"][disabled], &[type="url"][disabled], &[type="date"][disabled], &[type="month"][disabled], &[type="time"][disabled], &[type="datetime"][disabled], &[type="datetime-local"][disabled], &[type="week"][disabled], &[type="number"][disabled], &[type="search"][disabled], &[type="tel"][disabled], &[type="color"][disabled] {
82
+ cursor: not-allowed;
83
+ background-color: #eaeded;
84
+ color: #cad2d3;
85
+ }
86
+ }
87
+
88
+ select[disabled], textarea[disabled] {
89
+ cursor: not-allowed;
90
+ background-color: #eaeded;
91
+ color: #cad2d3;
92
+ }
93
+
94
+ input {
95
+ &:not([type])[disabled] {
96
+ cursor: not-allowed;
97
+ background-color: #eaeded;
98
+ color: #cad2d3;
99
+ }
100
+
101
+ &[readonly] {
102
+ background-color: #eee;
103
+
104
+ /* menu hover bg color */
105
+ color: #777;
106
+
107
+ /* menu text color */
108
+ border-color: #ccc;
109
+ }
110
+ }
111
+
112
+ select[readonly], textarea[readonly] {
113
+ background-color: #eee;
114
+
115
+ /* menu hover bg color */
116
+ color: #777;
117
+
118
+ /* menu text color */
119
+ border-color: #ccc;
120
+ }
121
+
122
+ input:focus:invalid, textarea:focus:invalid, select:focus:invalid {
123
+ color: #b94a48;
124
+ border-color: #e9322d;
125
+ }
126
+
127
+ input {
128
+ &[type="file"]:focus:invalid:focus, &[type="radio"]:focus:invalid:focus, &[type="checkbox"]:focus:invalid:focus {
129
+ outline-color: #e9322d;
130
+ }
131
+ }
132
+
133
+ select {
134
+ /* Normalizes the height; padding is not sufficient. */
135
+ height: 2.25em;
136
+ border: 1px solid #ccc;
137
+ background-color: white;
138
+
139
+ &[multiple] {
140
+ height: auto;
141
+ }
142
+ }
143
+
144
+ label {
145
+ margin: 0.5em 0 0.2em;
146
+ }
147
+
148
+ fieldset {
149
+ margin: 0;
150
+ padding: 0.35em 0 0.75em;
151
+ border: 0;
152
+ }
153
+
154
+ legend {
155
+ display: block;
156
+ width: 100%;
157
+ padding: 0.3em 0;
158
+ margin-bottom: 0.3em;
159
+ color: #333;
160
+ border-bottom: 1px solid #e5e5e5;
161
+ }
162
+ }
163
+
164
+ /*
165
+ Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
166
+ since IE8 won't execute CSS that contains a CSS3 selector.
167
+ */
168
+
169
+ /* Chrome (as of v.32/34 on OS X) needs additional room for color to display. */
170
+ /* May be able to remove this tweak as color inputs become more standardized across browsers. */
171
+
172
+ /*
173
+ Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
174
+ since IE8 won't execute CSS that contains a CSS3 selector.
175
+ */
176
+
177
+ /*
178
+ Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
179
+ since IE8 won't execute CSS that contains a CSS3 selector.
180
+ */
181
+
182
+ .pure-form-stacked {
183
+ input {
184
+ &[type="text"], &[type="password"], &[type="email"], &[type="url"], &[type="date"], &[type="month"], &[type="time"], &[type="datetime"], &[type="datetime-local"], &[type="week"], &[type="number"], &[type="search"], &[type="tel"], &[type="color"], &[type="file"] {
185
+ display: block;
186
+ margin: 0.25em 0;
187
+ }
188
+ }
189
+
190
+ select, label, textarea, input:not([type]) {
191
+ display: block;
192
+ margin: 0.25em 0;
193
+ }
194
+ }
195
+
196
+ /*
197
+ Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
198
+ since IE8 won't execute CSS that contains a CSS3 selector.
199
+ */
200
+
201
+ .pure-form-aligned {
202
+ input, textarea, select {
203
+ display: inline-block;
204
+ vertical-align: middle;
205
+ }
206
+ }
207
+
208
+ .pure-form-message-inline {
209
+ display: inline-block;
210
+ vertical-align: middle;
211
+ }
212
+
213
+ .pure-form-aligned {
214
+ textarea {
215
+ vertical-align: top;
216
+ }
217
+
218
+ .pure-control-group {
219
+ margin-bottom: 0.5em;
220
+
221
+ label {
222
+ text-align: right;
223
+ display: inline-block;
224
+ vertical-align: middle;
225
+ width: 10em;
226
+ margin: 0 1em 0 0;
227
+ }
228
+ }
229
+
230
+ .pure-controls {
231
+ margin: 1.5em 0 0 11em;
232
+ }
233
+ }
234
+
235
+ /* Aligned Forms */
236
+
237
+ /* Rounded Inputs */
238
+
239
+ .pure-form {
240
+ input.pure-input-rounded, .pure-input-rounded {
241
+ border-radius: 2em;
242
+ padding: 0.5em 1em;
243
+ }
244
+
245
+ .pure-group {
246
+ fieldset {
247
+ margin-bottom: 10px;
248
+ }
249
+
250
+ input, textarea {
251
+ display: block;
252
+ padding: 10px;
253
+ margin: 0 0 -1px;
254
+ border-radius: 0;
255
+ position: relative;
256
+ top: -1px;
257
+ }
258
+
259
+ input:focus, textarea:focus {
260
+ z-index: 3;
261
+ }
262
+
263
+ input:first-child, textarea:first-child {
264
+ top: 1px;
265
+ border-radius: 4px 4px 0 0;
266
+ margin: 0;
267
+ }
268
+
269
+ input:first-child:last-child, textarea:first-child:last-child {
270
+ top: 1px;
271
+ border-radius: 4px;
272
+ margin: 0;
273
+ }
274
+
275
+ input:last-child, textarea:last-child {
276
+ top: -2px;
277
+ border-radius: 0 0 4px 4px;
278
+ margin: 0;
279
+ }
280
+
281
+ button {
282
+ margin: 0.35em 0;
283
+ }
284
+ }
285
+
286
+ .pure-input-1 {
287
+ width: 100%;
288
+ }
289
+
290
+ .pure-input-3-4 {
291
+ width: 75%;
292
+ }
293
+
294
+ .pure-input-2-3 {
295
+ width: 66%;
296
+ }
297
+
298
+ .pure-input-1-2 {
299
+ width: 50%;
300
+ }
301
+
302
+ .pure-input-1-3 {
303
+ width: 33%;
304
+ }
305
+
306
+ .pure-input-1-4 {
307
+ width: 25%;
308
+ }
309
+ }
310
+
311
+ /* Grouped Inputs */
312
+
313
+ /* Inline help for forms */
314
+
315
+ .pure-form-message-inline {
316
+ display: inline-block;
317
+ padding-left: 0.3em;
318
+ color: #666;
319
+ vertical-align: middle;
320
+ font-size: 0.875em;
321
+ }
322
+
323
+ /* Block help for forms */
324
+
325
+ .pure-form-message {
326
+ display: block;
327
+ color: #666;
328
+ font-size: 0.875em;
329
+ }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v2.2.0
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 v2.2.0
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
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v2.2.0
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 v2.2.0
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
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v2.2.0
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
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: 2.2.0
4
+ version: 3.0.1
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-19 00:00:00.000000000 Z
11
+ date: 2023-05-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sassc
@@ -106,6 +106,7 @@ files:
106
106
  - vendor/assets/stylesheets/_purecss.scss
107
107
  - vendor/assets/stylesheets/purecss/_base.scss
108
108
  - vendor/assets/stylesheets/purecss/_buttons.scss
109
+ - vendor/assets/stylesheets/purecss/_forms-nr.scss
109
110
  - vendor/assets/stylesheets/purecss/_forms.scss
110
111
  - vendor/assets/stylesheets/purecss/_grids-responsive.scss
111
112
  - vendor/assets/stylesheets/purecss/_grids.scss
@@ -132,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
132
133
  - !ruby/object:Gem::Version
133
134
  version: '0'
134
135
  requirements: []
135
- rubygems_version: 3.3.7
136
+ rubygems_version: 3.4.10
136
137
  signing_key:
137
138
  specification_version: 4
138
139
  summary: Pure CSS framework, converted to Sass