purecss-sass 2.0.1 → 2.0.6

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: a6d02dfc8e787c8bf213803a54a674005fa9b20e3fb2db1df8aaf5cc4bd6fe2f
4
- data.tar.gz: 677cee31094001095a741bbf18bfb1373dca24b638117c832b446886c1e6c562
3
+ metadata.gz: 962a106589e0977c9ceb53ce35fc16d88243a13c54e08adae10d05f654eafabb
4
+ data.tar.gz: 625fe203ff80566a3d985280c3d4696643402a99b8cddcb70b0783beff9c1d7d
5
5
  SHA512:
6
- metadata.gz: cf3f667e59d63065fdd11b9283bf52ead2c32b6c49ba76f28f89157c3b7665b22a2cd92b2f06b404a57de7db283ea6c4d8753534e7eeff11f9ec70de5d48cd0b
7
- data.tar.gz: e5e774517ef896982fc01ad9f3b7ce88dc797da5ee30e62e6734de582fa98fa69f3bd4d9d135ab96898343e10d0dc7528b7016849102d4d6a9da1968ca3573d9
6
+ metadata.gz: 2499395878a5fb2e99f06ee254fa36ab7b10af86daca2b99175b5f2997b8481d052d1b73c7d1b8f9de15524ded89a6505cac1c728126f4d979c4738bbc0ea058
7
+ data.tar.gz: 8bae36ea0bcbc8426d83f65390b1487df96ae4d281bc47c99c2612c63a66c5428b7120e56700da1580dcf09b669a2b844bc823dbb4f6e808b237682bf7a9257a
@@ -0,0 +1,20 @@
1
+ name: CI
2
+ on: [push, pull_request]
3
+ jobs:
4
+ tests:
5
+ runs-on: ubuntu-latest
6
+ strategy:
7
+ fail-fast: false
8
+ matrix:
9
+ ruby: [2.6, 2.7, '3.0']
10
+ name: Ruby ${{ matrix.ruby }}
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v2
14
+ - name: Set up Ruby
15
+ uses: ruby/setup-ruby@v1
16
+ with:
17
+ ruby-version: ${{ matrix.ruby }}
18
+ bundler-cache: true
19
+ - name: Run tests
20
+ run: bundle exec rake
data/CHANGELOG.md CHANGED
@@ -1,3 +1,33 @@
1
+ ## 2.0.6 (2021-06-10)
2
+
3
+ - Update assets to match upstream version
4
+
5
+ Framework version: Pure v2.0.6
6
+
7
+ ## 2.0.5 (2021-01-21)
8
+
9
+ - Update assets to match upstream version
10
+
11
+ Framework version: Pure v2.0.5
12
+
13
+ ## 2.0.4 (2021-01-20)
14
+
15
+ - Update assets to match upstream version
16
+
17
+ Framework version: Pure v2.0.4
18
+
19
+ ## 2.0.3 (2020-05-12)
20
+
21
+ - Update assets to match upstream version
22
+
23
+ Framework version: Pure v2.0.3
24
+
25
+ ## 2.0.2 (2020-05-12)
26
+
27
+ - Update assets to match upstream version
28
+
29
+ Framework version: Pure v2.0.2
30
+
1
31
  ## 2.0.1 (2020-05-07)
2
32
 
3
33
  - Update assets to match upstream version
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/purecss-sass.svg)](https://badge.fury.io/rb/purecss-sass)
4
4
  [![npm version](https://badge.fury.io/js/purecss-sass.svg)](https://badge.fury.io/js/purecss-sass)
5
- [![Build Status](https://travis-ci.com/rubysamurai/purecss-sass.svg?branch=master)](https://travis-ci.com/rubysamurai/purecss-sass)
5
+ [![CI](https://github.com/rubysamurai/purecss-sass/workflows/CI/badge.svg)](https://github.com/rubysamurai/purecss-sass/actions?query=workflow%3ACI)
6
6
 
7
7
  `purecss-sass` is a Sass-powered version of [Pure CSS](https://purecss.io/) for your applications, allowing to include all of Pure's components at once or load them individually.
8
8
 
@@ -1,5 +1,5 @@
1
1
  module Purecss
2
2
  module Sass
3
- VERSION = '2.0.1'.freeze
3
+ VERSION = '2.0.6'.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.0.1",
3
+ "version": "2.0.6",
4
4
  "description": "Pure CSS framework, converted to Sass and ready to use in Sass powered applications",
5
5
  "keywords": [
6
6
  "pure",
@@ -1,8 +1,8 @@
1
1
  /*!
2
- Pure v2.0.1
2
+ Pure v2.0.6
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
- https://github.com/pure-css/pure/blob/master/LICENSE.md
5
+ https://github.com/pure-css/pure/blob/master/LICENSE
6
6
  */
7
7
  /*!
8
8
  normalize.css v | MIT License | git.io/normalize
@@ -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,8 +1,8 @@
1
1
  /*!
2
- Pure v2.0.1
2
+ Pure v2.0.6
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
- https://github.com/pure-css/pure/blob/master/LICENSE.md
5
+ https://github.com/pure-css/pure/blob/master/LICENSE
6
6
  */
7
7
 
8
8
  .pure-button {
@@ -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 {
@@ -60,45 +61,40 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
60
61
  font-family: inherit;
61
62
  font-size: 100%;
62
63
  padding: 0.5em 1em;
63
- color: #444;
64
-
65
- /* rgba not supported (IE 8) */
66
64
  color: rgba(0, 0, 0, 0.8);
67
-
68
- /* rgba supported */
69
- border: 1px solid #999;
70
-
71
- /*IE 6/7/8*/
72
65
  border: none rgba(0, 0, 0, 0);
73
-
74
- /*IE9 + everything else*/
75
66
  background-color: #E6E6E6;
76
67
  text-decoration: none;
77
68
  border-radius: 2px;
78
69
  }
79
70
 
80
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)));
81
73
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1));
82
74
  }
83
75
 
84
76
  .pure-button {
85
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)));
86
79
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1));
87
80
  }
88
81
 
89
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)));
90
84
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1));
91
85
  outline: 0;
92
86
  }
93
87
  }
94
88
 
95
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;
96
91
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
97
92
  border-color: #000;
98
93
  }
99
94
 
100
95
  .pure-button {
101
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;
102
98
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
103
99
  border-color: #000;
104
100
  }
@@ -108,6 +104,7 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
108
104
  background-image: none;
109
105
  opacity: 0.40;
110
106
  cursor: not-allowed;
107
+ -webkit-box-shadow: none;
111
108
  box-shadow: none;
112
109
  pointer-events: none;
113
110
  }
@@ -118,6 +115,7 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
118
115
  background-image: none;
119
116
  opacity: 0.40;
120
117
  cursor: not-allowed;
118
+ -webkit-box-shadow: none;
121
119
  box-shadow: none;
122
120
  pointer-events: none;
123
121
 
@@ -126,6 +124,7 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
126
124
  background-image: none;
127
125
  opacity: 0.40;
128
126
  cursor: not-allowed;
127
+ -webkit-box-shadow: none;
129
128
  box-shadow: none;
130
129
  pointer-events: none;
131
130
  }
@@ -152,9 +151,6 @@ a {
152
151
  .pure-button-group .pure-button {
153
152
  margin: 0;
154
153
  border-radius: 0;
155
- border-right: 1px solid #111;
156
-
157
- /* fallback color for rgba() for IE7/8 */
158
154
  border-right: 1px solid rgba(0, 0, 0, 0.2);
159
155
 
160
156
  &:first-child {
@@ -1,8 +1,8 @@
1
1
  /*!
2
- Pure v2.0.1
2
+ Pure v2.0.6
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
- https://github.com/pure-css/pure/blob/master/LICENSE.md
5
+ https://github.com/pure-css/pure/blob/master/LICENSE
6
6
  */
7
7
  /*csslint box-model:false*/
8
8
  /*
@@ -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,8 +1,8 @@
1
1
  /*!
2
- Pure v2.0.1
2
+ Pure v2.0.6
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
- https://github.com/pure-css/pure/blob/master/LICENSE.md
5
+ https://github.com/pure-css/pure/blob/master/LICENSE
6
6
  */
7
7
  /*csslint box-model:false*/
8
8
  /*
@@ -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,8 +1,8 @@
1
1
  /*!
2
- Pure v2.0.1
2
+ Pure v2.0.6
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
- https://github.com/pure-css/pure/blob/master/LICENSE.md
5
+ https://github.com/pure-css/pure/blob/master/LICENSE
6
6
  */
7
7
  @media screen and (min-width: 35.5em) {
8
8
  .pure-u-sm-1, .pure-u-sm-1-1, .pure-u-sm-1-2, .pure-u-sm-1-3, .pure-u-sm-2-3, .pure-u-sm-1-4, .pure-u-sm-3-4, .pure-u-sm-1-5, .pure-u-sm-2-5, .pure-u-sm-3-5, .pure-u-sm-4-5, .pure-u-sm-5-5, .pure-u-sm-1-6, .pure-u-sm-5-6, .pure-u-sm-1-8, .pure-u-sm-3-8, .pure-u-sm-5-8, .pure-u-sm-7-8, .pure-u-sm-1-12, .pure-u-sm-5-12, .pure-u-sm-7-12, .pure-u-sm-11-12, .pure-u-sm-1-24, .pure-u-sm-2-24, .pure-u-sm-3-24, .pure-u-sm-4-24, .pure-u-sm-5-24, .pure-u-sm-6-24, .pure-u-sm-7-24, .pure-u-sm-8-24, .pure-u-sm-9-24, .pure-u-sm-10-24, .pure-u-sm-11-24, .pure-u-sm-12-24, .pure-u-sm-13-24, .pure-u-sm-14-24, .pure-u-sm-15-24, .pure-u-sm-16-24, .pure-u-sm-17-24, .pure-u-sm-18-24, .pure-u-sm-19-24, .pure-u-sm-20-24, .pure-u-sm-21-24, .pure-u-sm-22-24, .pure-u-sm-23-24, .pure-u-sm-24-24 {
@@ -1,8 +1,8 @@
1
1
  /*!
2
- Pure v2.0.1
2
+ Pure v2.0.6
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
- https://github.com/pure-css/pure/blob/master/LICENSE.md
5
+ https://github.com/pure-css/pure/blob/master/LICENSE
6
6
  */
7
7
  /*csslint regex-selectors:false, known-properties:false, duplicate-properties:false*/
8
8
 
@@ -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,12 +1,13 @@
1
1
  /*!
2
- Pure v2.0.1
2
+ Pure v2.0.6
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
- https://github.com/pure-css/pure/blob/master/LICENSE.md
5
+ https://github.com/pure-css/pure/blob/master/LICENSE
6
6
  */
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
 
@@ -164,7 +165,7 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
164
165
  background-color: #fff;
165
166
  }
166
167
 
167
- .pure-menu-link, .pure-menu-disabled, .pure-menu-heading {
168
+ .pure-menu-link, .pure-menu-heading {
168
169
  padding: .5em 1em;
169
170
  }
170
171
 
@@ -173,6 +174,7 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
173
174
 
174
175
  .pure-menu-link:hover {
175
176
  background-color: transparent;
177
+ cursor: default;
176
178
  }
177
179
  }
178
180
 
@@ -1,8 +1,8 @@
1
1
  /*!
2
- Pure v2.0.1
2
+ Pure v2.0.6
3
3
  Copyright 2013 Yahoo!
4
4
  Licensed under the BSD License.
5
- https://github.com/pure-css/pure/blob/master/LICENSE.md
5
+ https://github.com/pure-css/pure/blob/master/LICENSE
6
6
  */
7
7
 
8
8
  .pure-table {
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.0.1
4
+ version: 2.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitriy Tarasov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-05-07 00:00:00.000000000 Z
11
+ date: 2021-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sassc
@@ -87,10 +87,10 @@ executables: []
87
87
  extensions: []
88
88
  extra_rdoc_files: []
89
89
  files:
90
+ - ".github/workflows/ci.yml"
90
91
  - ".gitignore"
91
92
  - ".rspec"
92
93
  - ".rubocop.yml"
93
- - ".travis.yml"
94
94
  - CHANGELOG.md
95
95
  - Gemfile
96
96
  - LICENSE.txt
@@ -133,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
133
133
  - !ruby/object:Gem::Version
134
134
  version: '0'
135
135
  requirements: []
136
- rubygems_version: 3.0.6
136
+ rubygems_version: 3.2.15
137
137
  signing_key:
138
138
  specification_version: 4
139
139
  summary: Pure CSS framework, converted to Sass
data/.travis.yml DELETED
@@ -1,5 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.5.8
4
- - 2.6.6
5
- - 2.7.1