mirror of
https://github.com/necolas/normalize.css.git
synced 2024-12-25 15:14:19 +00:00
Remove unnecessary vendor prefixes
Firefox ESR is currently at Firefox 31, which doesn't require box-sizing prefixes. Fix #400
This commit is contained in:
parent
ef2b006aad
commit
c78ecbb59e
@ -34,7 +34,7 @@ library code.
|
|||||||
|
|
||||||
* Google Chrome (latest)
|
* Google Chrome (latest)
|
||||||
* Mozilla Firefox (latest)
|
* Mozilla Firefox (latest)
|
||||||
* Mozilla Firefox 4
|
* Mozilla Firefox ESR
|
||||||
* Opera (latest)
|
* Opera (latest)
|
||||||
* Apple Safari 6+
|
* Apple Safari 6+
|
||||||
* Internet Explorer 8+
|
* Internet Explorer 8+
|
||||||
|
8
normalize.css
vendored
8
normalize.css
vendored
@ -210,7 +210,6 @@ figure {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
-moz-box-sizing: content-box;
|
|
||||||
box-sizing: content-box;
|
box-sizing: content-box;
|
||||||
height: 0;
|
height: 0;
|
||||||
}
|
}
|
||||||
@ -351,15 +350,12 @@ input[type="number"]::-webkit-outer-spin-button {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
|
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
|
||||||
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
|
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
|
||||||
* (include `-moz` to future-proof).
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
input[type="search"] {
|
input[type="search"] {
|
||||||
-webkit-appearance: textfield; /* 1 */
|
-webkit-appearance: textfield; /* 1 */
|
||||||
-moz-box-sizing: content-box;
|
box-sizing: content-box; /* 2 */
|
||||||
-webkit-box-sizing: content-box; /* 2 */
|
|
||||||
box-sizing: content-box;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user