Revert root color and background normalization

Commit: 121c08273b

The change caused problems with `body` background color no longer
bubbling up the the `html` element.

It also prevented you from setting `color` or `background` styles on
`html` before the normalize.css styles.

It might not be possibly to safely address – within normalize.css –
the problem that it was trying to avoid.

Fix gh-188
This commit is contained in:
Nicolas Gallagher 2013-05-11 11:36:10 -07:00
parent c2422928c4
commit 52e76de509
2 changed files with 7 additions and 11 deletions

View File

@ -1,5 +1,7 @@
== HEAD == HEAD
* Revert root `color` and `background` normalizations.
== 1.1.1 (April 8, 2013) == 1.1.1 (April 8, 2013)
* Normalize root `color` and `background` to counter the effects of system * Normalize root `color` and `background` to counter the effects of system

16
normalize.css vendored
View File

@ -59,22 +59,16 @@ audio:not([controls]) {
========================================================================== */ ========================================================================== */
/** /**
* 1. Prevent system color scheme's background color being used in Firefox, IE, * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
* and Opera.
* 2. Prevent system color scheme's text color being used in Firefox, IE, and
* Opera.
* 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
* `em` units. * `em` units.
* 4. Prevent iOS text size adjust after orientation change, without disabling * 2. Prevent iOS text size adjust after orientation change, without disabling
* user zoom. * user zoom.
*/ */
html { html {
background: #fff; /* 1 */ font-size: 100%; /* 1 */
color: #000; /* 2 */ -ms-text-size-adjust: 100%; /* 2 */
font-size: 100%; /* 3 */ -webkit-text-size-adjust: 100%; /* 2 */
-ms-text-size-adjust: 100%; /* 4 */
-webkit-text-size-adjust: 100%; /* 4 */
} }
/** /**