normalize-scss 3.0.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +6 -6
- data/_normalize.scss +2 -2
- data/normalize-scss.gemspec +3 -3
- metadata +14 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e4f7874c55b694224b2b653264b867af20132f6b
|
|
4
|
+
data.tar.gz: 88063e7a47a8417e3d9aacc52de75f51c9803a9a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bb7bb915d426fdfef9692d179cac47a2862442f87a6ce8f70a5339c07472ca452899da17100aa2977000e7c0734a11be37cf34c0bddfc7c48698e1837e9b4152
|
|
7
|
+
data.tar.gz: 0c8073db7b17d9d7b98ee0d5dd962c08785160591a11d7c958cfbda5fcd7d061946313eff689a956bbc89c3f463c08aa134eead7687acb549ca969772b9c1a45
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
## Latest downloadable version
|
|
2
2
|
|
|
3
|
-
The latest release of _normalize.scss for Sass 3.3 and Compass 1.0 is: [3.0.
|
|
3
|
+
The latest release of _normalize.scss for Sass 3.3 and Compass 1.0 is: [3.0.1+normalize.3.0.1](https://github.com/JohnAlbin/normalize-scss/releases/tag/3.0.1%2Bnormalize.3.0.1).
|
|
4
4
|
It combines normalize.css v3.0.1 and normalize v1.1.3.
|
|
5
5
|
|
|
6
6
|
The latest release of _normalize.scss for Sass 3.2 and Compass 0.12 is: [2.2.0+normalize.2.1.3](https://github.com/JohnAlbin/normalize-scss/releases/tag/2.2.0%2Bnormalize.2.1.3).
|
|
@@ -20,7 +20,7 @@ This Sass/Compass port currently utilizes:
|
|
|
20
20
|
* CSS3 Box Sizing mixin
|
|
21
21
|
* Vertical Rhythm mixins
|
|
22
22
|
|
|
23
|
-
In addition, Normalize.css has 2 major versions: version
|
|
23
|
+
In addition, Normalize.css has 2 major versions: version 3 (without legacy
|
|
24
24
|
browser support) and version 1 (with support for IE 6/7, etc.) This Compass port
|
|
25
25
|
combines the two versions into one file so that you can easily toggle between
|
|
26
26
|
the two versions using Compass' `$legacy-support-for-ie7` variable.
|
|
@@ -45,11 +45,11 @@ Install using one of the following methods:
|
|
|
45
45
|
|
|
46
46
|
Download from the [project page](https://github.com/JohnAlbin/normalize-scss/releases).
|
|
47
47
|
|
|
48
|
-
Install with [Bower](http://bower.io/): `bower install --save normalize.scss`
|
|
48
|
+
Install with [Bower](http://bower.io/): `bower install --save normalize.scss`
|
|
49
49
|
|
|
50
50
|
Install with [Component(1)](http://component.io/): `component install JohnAlbin/normalize-scss`
|
|
51
51
|
|
|
52
|
-
Install with [Ruby Gem](https://rubygems.org/gems/normalize-scss): `sudo gem install normalize-scss`
|
|
52
|
+
Install with [Ruby Gem](https://rubygems.org/gems/normalize-scss): `sudo gem install normalize-scss`
|
|
53
53
|
|
|
54
54
|
## What does it do?
|
|
55
55
|
|
|
@@ -68,10 +68,10 @@ For more information about how to use it, see the [About normalize.css article](
|
|
|
68
68
|
To use the Compass port of Normalize, simply copy the _normalize.scss file to
|
|
69
69
|
your sass directory and follow the article's suggestions:
|
|
70
70
|
|
|
71
|
-
* __Approach 1:__ use _normalize.scss as a starting point for your own project's
|
|
71
|
+
* __Approach 1:__ use `_normalize.scss` as a starting point for your own project's
|
|
72
72
|
base Sass, customising the values to match the design's requirements. (The best
|
|
73
73
|
approach, _IMO_.)
|
|
74
|
-
* __Approach 2:__ include _normalize.scss untouched and build upon it, overriding
|
|
74
|
+
* __Approach 2:__ include `_normalize.scss` untouched and build upon it, overriding
|
|
75
75
|
the defaults later in your Sass if necessary.
|
|
76
76
|
|
|
77
77
|
## Browser support
|
data/_normalize.scss
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* normalize-scss 3.0.
|
|
1
|
+
/* normalize-scss 3.0.1+normalize.3.0.1 | MIT/GPLv2 License | bit.ly/normalize-scss */
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
// Variables and Imports
|
|
@@ -404,7 +404,7 @@ svg:not(:root) {
|
|
|
404
404
|
/* Grouping content
|
|
405
405
|
========================================================================== */
|
|
406
406
|
|
|
407
|
-
@if support-legacy-browser(ie, "9") or support-legacy-browser(safari, "
|
|
407
|
+
@if support-legacy-browser(ie, "9") or support-legacy-browser(safari, "6") {
|
|
408
408
|
/**
|
|
409
409
|
* Address margin not present in IE 8/9 and Safari.
|
|
410
410
|
*/
|
data/normalize-scss.gemspec
CHANGED
|
@@ -9,15 +9,15 @@ Gem::Specification.new do |s|
|
|
|
9
9
|
s.homepage = 'https://github.com/JohnAlbin/normalize-scss'
|
|
10
10
|
s.rubyforge_project =
|
|
11
11
|
|
|
12
|
-
s.version = '3.0.
|
|
12
|
+
s.version = '3.0.1'
|
|
13
13
|
s.date = '2014-08-26'
|
|
14
14
|
s.licenses = ['GPL-2']
|
|
15
15
|
|
|
16
16
|
s.authors = ['John Albin Wilkins']
|
|
17
17
|
s.email = 'virtually.johnalbin@gmail.com'
|
|
18
18
|
|
|
19
|
-
s.add_runtime_dependency('sass',
|
|
20
|
-
s.add_runtime_dependency('compass-core',
|
|
19
|
+
s.add_runtime_dependency('sass', '~> 3.3', '>= 3.3.0')
|
|
20
|
+
s.add_runtime_dependency('compass-core', '~> 1.0', '>= 1.0.0')
|
|
21
21
|
|
|
22
22
|
s.files = %w[
|
|
23
23
|
_normalize.scss
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: normalize-scss
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Albin Wilkins
|
|
@@ -14,6 +14,9 @@ dependencies:
|
|
|
14
14
|
name: sass
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '3.3'
|
|
17
20
|
- - ">="
|
|
18
21
|
- !ruby/object:Gem::Version
|
|
19
22
|
version: 3.3.0
|
|
@@ -21,6 +24,9 @@ dependencies:
|
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
27
|
+
- - "~>"
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '3.3'
|
|
24
30
|
- - ">="
|
|
25
31
|
- !ruby/object:Gem::Version
|
|
26
32
|
version: 3.3.0
|
|
@@ -28,6 +34,9 @@ dependencies:
|
|
|
28
34
|
name: compass-core
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
|
30
36
|
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '1.0'
|
|
31
40
|
- - ">="
|
|
32
41
|
- !ruby/object:Gem::Version
|
|
33
42
|
version: 1.0.0
|
|
@@ -35,6 +44,9 @@ dependencies:
|
|
|
35
44
|
prerelease: false
|
|
36
45
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
46
|
requirements:
|
|
47
|
+
- - "~>"
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: '1.0'
|
|
38
50
|
- - ">="
|
|
39
51
|
- !ruby/object:Gem::Version
|
|
40
52
|
version: 1.0.0
|
|
@@ -73,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
73
85
|
- !ruby/object:Gem::Version
|
|
74
86
|
version: '0'
|
|
75
87
|
requirements: []
|
|
76
|
-
rubyforge_project: 3.0.
|
|
88
|
+
rubyforge_project: 3.0.1
|
|
77
89
|
rubygems_version: 2.4.1
|
|
78
90
|
signing_key:
|
|
79
91
|
specification_version: 4
|