diff --git a/CHANGELOG.md b/CHANGELOG.md index abe809ba3..738af671d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +=== normalize-libsass 1.0.3 (May 31, 2015) + +* Remove unnecessary vendor prefixes. +* Add `main` property. + === normalize-libsass 1.0.2 (March 6, 2015) * Added convert-units function to keep it real with Sass units (Thanks @HugoGiraudel) @@ -23,6 +28,11 @@ Initial stable release published as npm module === HEAD +=== 3.0.3 (March 30, 2015) + +* Remove unnecessary vendor prefixes. +* Add `main` property. + === 3.0.2 (October 4, 2014) * Only alter `background-color` of links in IE 10. diff --git a/_normalize.scss b/_normalize.scss index bc1f31e67..1ebe2a746 100644 --- a/_normalize.scss +++ b/_normalize.scss @@ -1,5 +1,5 @@ //// -/// normalize-libsass 1.0.2 +/// normalize-libsass 1.0.3 /// MIT/GPLv2 License /// lb.cm/normalize-libsass //// @@ -101,7 +101,8 @@ $normalize-base-font-family: if($strict-normalize, sans-serif, $base-font-family /** * 1. Set default font family to sans-serif. -* 2. Prevent iOS text size adjust after orientation change, without disabling +* 2. Prevent iOS and IE text size adjust after device orientation +* change, without disabling * user zoom. */ html { @@ -180,7 +181,7 @@ audio:not([controls]) { } /** -* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. +* Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */ template { @@ -201,7 +202,8 @@ template { } /** -* Improve readability when focused and also mouse hovered in all browsers. +* Improve readability of focused elements when they are also in an +* active/hover state. */ a:active, @@ -327,7 +329,6 @@ sub { */ hr { - -moz-box-sizing: content-box; box-sizing: content-box; height: 0; } @@ -472,14 +473,10 @@ input[type='number']::-webkit-outer-spin-button { /** * 1. Address `appearance` set to `searchfield` in Safari and Chrome. -* 2. Address `box-sizing` set to `border-box` in Safari and Chrome -* (include `-moz` to future-proof). +* 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */ input[type='search'] { - -webkit-appearance: textfield; /* 1 */ - -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; /* 2 */ box-sizing: content-box; } diff --git a/bower.json b/bower.json index 68503a28a..5e1e300c7 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "normalize-libsass", - "version": "1.0.2", + "version": "1.0.3", "homepage": "https://github.com/krisbulman/normalize-libsass", "author": [ "Nicolas Gallagher", diff --git a/component.json b/component.json index 56f81f09d..a99365d05 100644 --- a/component.json +++ b/component.json @@ -2,7 +2,7 @@ "name": "normalize-libsass", "repo": "krisbulman/normalize-libsass", "description": "A libsass compatible sass port of normalize.css, a collection of HTML element and attribute style-normalizations.", - "version": "1.0.2", + "version": "1.0.3", "author": [ "Nicolas Gallagher", "Kris Bulman" diff --git a/package.json b/package.json index 2643365bb..a9dd540b0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "normalize-libsass", - "version": "1.0.2", + "version": "1.0.3", "description": "A libsass compatible sass port of normalize.css, a collection of HTML element and attribute style-normalizations.", "devDependencies": { "grunt": "~0.4", @@ -10,6 +10,7 @@ }, "style": "_normalize.scss", "files": [ + "LICENSE.md", "_normalize.scss" ], "homepage": "https://github.com/krisbulman/normalize-libsass", @@ -17,6 +18,7 @@ "type": "git", "url": "git://github.com/krisbulman/normalize-libsass.git" }, + "main": "_normalize.scss", "author": [ "Nicolas Gallagher", "Kris Bulman"