normalize-scss 3.0.1 → 3.0.2

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
  SHA1:
3
- metadata.gz: e4f7874c55b694224b2b653264b867af20132f6b
4
- data.tar.gz: 88063e7a47a8417e3d9aacc52de75f51c9803a9a
3
+ metadata.gz: ca9fdf96cb33602f6e22779f463e23b2e8088c1f
4
+ data.tar.gz: b3f9c05d29308165d59ad9242cfa9d3496537e61
5
5
  SHA512:
6
- metadata.gz: bb7bb915d426fdfef9692d179cac47a2862442f87a6ce8f70a5339c07472ca452899da17100aa2977000e7c0734a11be37cf34c0bddfc7c48698e1837e9b4152
7
- data.tar.gz: 0c8073db7b17d9d7b98ee0d5dd962c08785160591a11d7c958cfbda5fcd7d061946313eff689a956bbc89c3f463c08aa134eead7687acb549ca969772b9c1a45
6
+ metadata.gz: 54fcb3116ce4c8c53e54dd5415dec308affb8a800276828da096807f352ee2305230debbd5777b71ae9fd3107cd7a711f95a17ecdc24bfe0ddcfd6943a7cad24
7
+ data.tar.gz: 4c3dff920430567063088dfa73f684ca299b6d6e96268597948a367f3354bbcd254b40960c72ea6cb95ade2a8cf2f793da74db185445c2e6e19d9f23b777e77c
@@ -1,3 +1,8 @@
1
+ === normalize-scss 3.0.2+normalize.3.0.2 (November 6, 2014)
2
+
3
+ * Upgrade to Normalize.css 3.0.2.
4
+ * Added Compass' output-rhythm() mixin.
5
+
1
6
  === normalize-scss 3.0.1+normalize.3.0.1 (August 26, 2014)
2
7
 
3
8
  * Update figure ruleset to output for Safari 6.
@@ -25,6 +30,13 @@
25
30
 
26
31
  == normalize.css change log
27
32
 
33
+ === HEAD
34
+
35
+ === normalize.css 3.0.2 (October 4, 2014)
36
+
37
+ * Only alter `background-color` of links in IE 10.
38
+ * Add `menu` element to HTML5 display definitions.
39
+
28
40
  === normalize.css 3.0.1 (March 27, 2014)
29
41
 
30
42
  * Add package.json for npm support.
data/README.md CHANGED
@@ -1,7 +1,7 @@
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.1+normalize.3.0.1](https://github.com/JohnAlbin/normalize-scss/releases/tag/3.0.1%2Bnormalize.3.0.1).
4
- It combines normalize.css v3.0.1 and normalize v1.1.3.
3
+ The latest release of _normalize.scss for Sass 3.3 and Compass 1.0 is: [3.0.2+normalize.3.0.2](https://github.com/JohnAlbin/normalize-scss/releases/tag/3.0.2%2Bnormalize.3.0.2).
4
+ It combines normalize.css v3.0.2 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).
7
7
  It combines normalize.css v2.1.3 and normalize v1.1.3.
@@ -1,4 +1,4 @@
1
- /* normalize-scss 3.0.1+normalize.3.0.1 | MIT/GPLv2 License | bit.ly/normalize-scss */
1
+ /* normalize-scss 3.0.2+normalize.3.0.2 | MIT/GPLv2 License | bit.ly/normalize-scss */
2
2
 
3
3
 
4
4
  // Variables and Imports
@@ -57,9 +57,6 @@ $indent-amount: 40px !default;
57
57
  @import "compass/typography/vertical_rhythm";
58
58
 
59
59
 
60
- /* Base
61
- ========================================================================== */
62
-
63
60
  @if not $strict-normalize or support-legacy-browser(ie, "7") {
64
61
  /**
65
62
  * Establish a vertical rhythm unit using $base-font-size, $base-line-height,
@@ -97,7 +94,8 @@ body {
97
94
 
98
95
  /**
99
96
  * Correct `block` display not defined for any HTML5 element in IE 8/9.
100
- * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
97
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11
98
+ * and Firefox.
101
99
  * Correct `block` display not defined for `main` in IE 11.
102
100
  */
103
101
 
@@ -110,6 +108,7 @@ footer,
110
108
  header,
111
109
  hgroup,
112
110
  main,
111
+ menu,
113
112
  nav,
114
113
  section,
115
114
  summary {
@@ -172,7 +171,7 @@ template {
172
171
  */
173
172
 
174
173
  a {
175
- background: transparent;
174
+ background-color: transparent;
176
175
  }
177
176
  }
178
177
 
@@ -211,7 +210,7 @@ strong {
211
210
  */
212
211
 
213
212
  blockquote {
214
- margin: rhythm(1) $indent-amount;
213
+ @include output-rhythm(margin, rhythm(1) $indent-amount);
215
214
  }
216
215
  }
217
216
 
@@ -292,7 +291,7 @@ h1 {
292
291
 
293
292
  p,
294
293
  pre {
295
- margin: rhythm(1) 0;
294
+ @include output-rhythm(margin, rhythm(1) 0);
296
295
  }
297
296
  }
298
297
 
@@ -336,10 +335,14 @@ sub {
336
335
  menu,
337
336
  ol,
338
337
  ul {
339
- margin: rhythm(1) 0;
338
+ @include output-rhythm(margin, rhythm(1) 0);
340
339
  }
341
340
 
342
341
  @if not $strict-normalize {
342
+ /**
343
+ * Turn off margins on nested lists.
344
+ */
345
+
343
346
  ol,
344
347
  ul {
345
348
  ol,
@@ -410,7 +413,7 @@ svg:not(:root) {
410
413
  */
411
414
 
412
415
  figure {
413
- margin: rhythm(1) $indent-amount;
416
+ @include output-rhythm(margin, rhythm(1) $indent-amount);
414
417
  }
415
418
  }
416
419
 
@@ -9,8 +9,8 @@ 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.1'
13
- s.date = '2014-08-26'
12
+ s.version = '3.0.2'
13
+ s.date = '2014-11-06'
14
14
  s.licenses = ['GPL-2']
15
15
 
16
16
  s.authors = ['John Albin Wilkins']
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: normalize-scss
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Albin Wilkins
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-26 00:00:00.000000000 Z
11
+ date: 2014-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass
@@ -85,8 +85,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
85
85
  - !ruby/object:Gem::Version
86
86
  version: '0'
87
87
  requirements: []
88
- rubyforge_project: 3.0.1
89
- rubygems_version: 2.4.1
88
+ rubyforge_project: 3.0.2
89
+ rubygems_version: 2.4.2
90
90
  signing_key:
91
91
  specification_version: 4
92
92
  summary: The Sass/Compass version of Normalize.css