purecss-sass 2.0.0 → 2.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +20 -0
- data/CHANGELOG.md +18 -0
- data/README.md +23 -26
- data/lib/purecss/sass/version.rb +1 -1
- data/package.json +3 -4
- data/vendor/assets/stylesheets/purecss/_base.scss +5 -2
- data/vendor/assets/stylesheets/purecss/_buttons.scss +11 -15
- data/vendor/assets/stylesheets/purecss/_forms-nr.scss +8 -2
- data/vendor/assets/stylesheets/purecss/_forms.scss +8 -2
- data/vendor/assets/stylesheets/purecss/_grids-responsive.scss +2 -2
- data/vendor/assets/stylesheets/purecss/_grids.scss +8 -2
- data/vendor/assets/stylesheets/purecss/_menus.scss +5 -4
- data/vendor/assets/stylesheets/purecss/_tables.scss +2 -2
- metadata +4 -4
- data/.travis.yml +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ad8bb3290bbda983b803e25217c7c14d06c051f13e3a238634899f23b129d2d
|
4
|
+
data.tar.gz: 56c9750dbbd2d48def6942574240261432573e95ac22b7980280c930936c0005
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2beddc7f76748a8ad91dd1715707d27b265c8a46dbfd36b286a56fedd4f203965302512ae1f5cc33f94ab742e51ed45ab26162a217653f7f932e16b24e53b6a
|
7
|
+
data.tar.gz: d42bd9ac46ee122f11e505d7d6468ce644c8aa3e385f6e86c34a79be89fba8b3926ab0dc68117e3f695b5f60d35f0b0d51b976d8aca4a20000955fd8cfa5c095
|
@@ -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.5', '2.6', '2.7']
|
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,21 @@
|
|
1
|
+
## 2.0.3 (2020-05-12)
|
2
|
+
|
3
|
+
- Update assets to match upstream version
|
4
|
+
|
5
|
+
Framework version: Pure v2.0.3
|
6
|
+
|
7
|
+
## 2.0.2 (2020-05-12)
|
8
|
+
|
9
|
+
- Update assets to match upstream version
|
10
|
+
|
11
|
+
Framework version: Pure v2.0.2
|
12
|
+
|
13
|
+
## 2.0.1 (2020-05-07)
|
14
|
+
|
15
|
+
- Update assets to match upstream version
|
16
|
+
|
17
|
+
Framework version: Pure v2.0.1
|
18
|
+
|
1
19
|
## 2.0.0 (2020-05-06)
|
2
20
|
|
3
21
|
- Update assets to match upstream version
|
data/README.md
CHANGED
@@ -1,23 +1,30 @@
|
|
1
1
|
# Pure CSS for Sass
|
2
2
|
|
3
|
-
[![Gem Version](https://badge.fury.io/rb/purecss-sass.svg)](
|
4
|
-
[![npm version](https://badge.fury.io/js/purecss-sass.svg)](
|
5
|
-
[![
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/purecss-sass.svg)](https://badge.fury.io/rb/purecss-sass)
|
4
|
+
[![npm version](https://badge.fury.io/js/purecss-sass.svg)](https://badge.fury.io/js/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
|
-
[Pure](https://purecss.io/)
|
8
|
-
|
9
|
-
`purecss-sass` is a Sass-powered version of Pure CSS for your applications. It allows to include all of Pure's components at once or load them individually.
|
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.
|
10
8
|
|
11
9
|
Original Pure CSS files are converted using `sass-convert` and otherwise untouched and unmodified.
|
12
10
|
|
13
|
-
##
|
11
|
+
## npm and Yarn
|
12
|
+
|
13
|
+
To install `purecss-sass` npm package execute this command:
|
14
|
+
|
15
|
+
```
|
16
|
+
$ npm install purecss-sass
|
17
|
+
```
|
14
18
|
|
15
|
-
|
16
|
-
|
19
|
+
If you are using Yarn:
|
20
|
+
|
21
|
+
```
|
22
|
+
$ yarn add purecss-sass
|
23
|
+
```
|
17
24
|
|
18
|
-
|
25
|
+
## Ruby on Rails
|
19
26
|
|
20
|
-
Open your
|
27
|
+
Open your `Gemfile` and add this line:
|
21
28
|
|
22
29
|
```ruby
|
23
30
|
gem 'purecss-sass'
|
@@ -31,22 +38,11 @@ Open `/app/assets/stylesheets/application.scss` file and add this line:
|
|
31
38
|
@import 'purecss';
|
32
39
|
```
|
33
40
|
|
34
|
-
> Note: Default Rails
|
35
|
-
|
36
|
-
Restart Rails web server if it was running and now your Rails application is powered by Pure CSS for Sass.
|
37
|
-
|
38
|
-
### npm
|
39
|
-
|
40
|
-
To install `purecss-sass` npm package execute this command:
|
41
|
-
```
|
42
|
-
npm install purecss-sass
|
43
|
-
```
|
44
|
-
|
45
|
-
This will fetch latest version of `purecss-sass` stylesheets to drop into your Sass powered application.
|
41
|
+
> Note: Default Rails-generated application comes with `.css` file extension for stylesheet assets files, make sure you change it to `.scss` and remove all the `*= require_tree .` and `*= require_self` statements from the file.
|
46
42
|
|
47
43
|
## Usage
|
48
44
|
|
49
|
-
By default, using `@import 'purecss';`, all of Pure CSS components are imported.
|
45
|
+
By default, using `@import 'purecss';`, all of Pure CSS responsive components are imported.
|
50
46
|
|
51
47
|
You can import individual Sass components like this:
|
52
48
|
|
@@ -54,6 +50,7 @@ You can import individual Sass components like this:
|
|
54
50
|
@import 'purecss/base';
|
55
51
|
@import 'purecss/buttons';
|
56
52
|
@import 'purecss/forms';
|
53
|
+
@import 'purecss/forms-nr';
|
57
54
|
@import 'purecss/grids';
|
58
55
|
@import 'purecss/grids-responsive';
|
59
56
|
@import 'purecss/menus';
|
@@ -62,7 +59,7 @@ You can import individual Sass components like this:
|
|
62
59
|
|
63
60
|
## Versioning
|
64
61
|
|
65
|
-
Pure CSS for Sass follows the upstream version of Pure. But last version number may be ahead, in case there is a need to release project
|
62
|
+
Pure CSS for Sass follows the upstream version of Pure. But the last version number may be ahead, in case there is a need to release project-specific changes.
|
66
63
|
|
67
64
|
## Credits
|
68
65
|
|
@@ -72,4 +69,4 @@ Pure CSS for Sass is inspired from [bootstrap-sass](https://github.com/twbs/boot
|
|
72
69
|
|
73
70
|
Pure © Yahoo! Inc. Licensed under the [BSD](https://github.com/pure-css/pure/blob/master/LICENSE) license.
|
74
71
|
|
75
|
-
`purecss-sass` © Dmitriy Tarasov. Licensed under the [MIT](
|
72
|
+
`purecss-sass` © Dmitriy Tarasov. Licensed under the [MIT](LICENSE.txt) licence.
|
data/lib/purecss/sass/version.rb
CHANGED
data/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "purecss-sass",
|
3
|
-
"version": "2.0.
|
3
|
+
"version": "2.0.5",
|
4
4
|
"description": "Pure CSS framework, converted to Sass and ready to use in Sass powered applications",
|
5
5
|
"keywords": [
|
6
6
|
"pure",
|
@@ -13,10 +13,9 @@
|
|
13
13
|
"url": "https://github.com/rubysamurai/purecss-sass/issues"
|
14
14
|
},
|
15
15
|
"license": "MIT",
|
16
|
-
"author": "Dmitriy Tarasov",
|
16
|
+
"author": "Dmitriy Tarasov <info@rubysamurai.com>",
|
17
17
|
"files": [
|
18
|
-
"vendor"
|
19
|
-
"LICENSE.txt"
|
18
|
+
"vendor"
|
20
19
|
],
|
21
20
|
"main": "vendor/assets/stylesheets/_purecss.scss",
|
22
21
|
"repository": {
|
@@ -1,8 +1,8 @@
|
|
1
1
|
/*!
|
2
|
-
Pure v2.0.
|
2
|
+
Pure v2.0.5
|
3
3
|
Copyright 2013 Yahoo!
|
4
4
|
Licensed under the BSD License.
|
5
|
-
https://github.com/pure-css/pure/blob/master/LICENSE
|
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.
|
2
|
+
Pure v2.0.5
|
3
3
|
Copyright 2013 Yahoo!
|
4
4
|
Licensed under the BSD License.
|
5
|
-
https://github.com/pure-css/pure/blob/master/LICENSE
|
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.
|
2
|
+
Pure v2.0.5
|
3
3
|
Copyright 2013 Yahoo!
|
4
4
|
Licensed under the BSD License.
|
5
|
-
https://github.com/pure-css/pure/blob/master/LICENSE
|
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.
|
2
|
+
Pure v2.0.5
|
3
3
|
Copyright 2013 Yahoo!
|
4
4
|
Licensed under the BSD License.
|
5
|
-
https://github.com/pure-css/pure/blob/master/LICENSE
|
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.
|
2
|
+
Pure v2.0.5
|
3
3
|
Copyright 2013 Yahoo!
|
4
4
|
Licensed under the BSD License.
|
5
|
-
https://github.com/pure-css/pure/blob/master/LICENSE
|
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.
|
2
|
+
Pure v2.0.5
|
3
3
|
Copyright 2013 Yahoo!
|
4
4
|
Licensed under the BSD License.
|
5
|
-
https://github.com/pure-css/pure/blob/master/LICENSE
|
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.
|
2
|
+
Pure v2.0.5
|
3
3
|
Copyright 2013 Yahoo!
|
4
4
|
Licensed under the BSD License.
|
5
|
-
https://github.com/pure-css/pure/blob/master/LICENSE
|
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
|
|
@@ -117,7 +118,6 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
117
118
|
white-space: nowrap;
|
118
119
|
overflow-y: hidden;
|
119
120
|
overflow-x: auto;
|
120
|
-
-webkit-overflow-scrolling: touch;
|
121
121
|
|
122
122
|
/* a little extra padding for this style to allow for scrollbars */
|
123
123
|
padding: .5em 0;
|
@@ -165,7 +165,7 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
165
165
|
background-color: #fff;
|
166
166
|
}
|
167
167
|
|
168
|
-
.pure-menu-link, .pure-menu-
|
168
|
+
.pure-menu-link, .pure-menu-heading {
|
169
169
|
padding: .5em 1em;
|
170
170
|
}
|
171
171
|
|
@@ -174,6 +174,7 @@ https://github.com/pure-css/pure/blob/master/LICENSE.md
|
|
174
174
|
|
175
175
|
.pure-menu-link:hover {
|
176
176
|
background-color: transparent;
|
177
|
+
cursor: default;
|
177
178
|
}
|
178
179
|
}
|
179
180
|
|
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.
|
4
|
+
version: 2.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dmitriy Tarasov
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-20 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.
|
136
|
+
rubygems_version: 3.1.4
|
137
137
|
signing_key:
|
138
138
|
specification_version: 4
|
139
139
|
summary: Pure CSS framework, converted to Sass
|