purecss-sass 2.0.2 → 2.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 52c5d2940445151a60038d0071534d40d809021dd8a690f1e42e3f8b116b9334
4
- data.tar.gz: c09a081c41799208dada4eb2822c05a85189a9781c89b906c903c9c03f59ff84
3
+ metadata.gz: 909462f532b2c5f3f3653d5b560045f6c38cb4cfcb57b0d2d3690bafd28fbc30
4
+ data.tar.gz: e0473810bef653777dd3d069912a42a00cc618dace954dd633a74ff797652db1
5
5
  SHA512:
6
- metadata.gz: d4f40b6096a9fa93819bd641c081b2984b67a9075d0e1dad751f0551ba2d47bf392e8c02970f576a31f941cb89f3f86bf40c0507282c7983711e97ac53bb48b7
7
- data.tar.gz: 36c151a39880784c9d5b905d49dacb6d9d0e1e642304690a2a3f818daff1194b51a9369b1e8ba7d29862662831d240a107986589d16927c963ad048de773fd9c
6
+ metadata.gz: 9c2f5e4263e52bedd9d7a00bfcb4b650fce2a22eaf3a1f0c3ff1ad4d1ed167b8ff0d2da297b4463cde472c97479e7ae89455ab5178821e7ad5dd120c827b3dd6
7
+ data.tar.gz: 0ec4314a866959f3a7db16ee41d0e361d8ef321bb28ded5ad8bd63485c9297e20f40ce3e5f246e096b9a84bf0fd9dc305bae4e772a3b202e27a207268375093e
@@ -1,4 +1,5 @@
1
1
  language: ruby
2
+ cache: bundler
2
3
  rvm:
3
4
  - 2.5.8
4
5
  - 2.6.6
@@ -1,3 +1,9 @@
1
+ ## 2.0.3 (2020-05-12)
2
+
3
+ - Update assets to match upstream version
4
+
5
+ Framework version: Pure v2.0.3
6
+
1
7
  ## 2.0.2 (2020-05-12)
2
8
 
3
9
  - Update assets to match upstream version
@@ -1,5 +1,5 @@
1
1
  module Purecss
2
2
  module Sass
3
- VERSION = '2.0.2'.freeze
3
+ VERSION = '2.0.3'.freeze
4
4
  end
5
5
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "purecss-sass",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "Pure CSS framework, converted to Sass and ready to use in Sass powered applications",
5
5
  "keywords": [
6
6
  "pure",
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v2.0.2
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
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
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
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
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
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v2.0.2
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
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
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- Pure v2.0.2
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: purecss-sass
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitriy Tarasov