Skip to content

Commit

Permalink
Remove unnecessary vendor prefixes
Browse files Browse the repository at this point in the history
Firefox ESR is currently at Firefox 31, which doesn't require box-sizing
prefixes.

Fix necolas#400
  • Loading branch information
necolas committed Mar 30, 2015
1 parent ef2b006 commit c78ecbb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ library code.

* Google Chrome (latest)
* Mozilla Firefox (latest)
* Mozilla Firefox 4
* Mozilla Firefox ESR
* Opera (latest)
* Apple Safari 6+
* Internet Explorer 8+
Expand Down
8 changes: 2 additions & 6 deletions normalize.css
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,6 @@ figure {
*/

hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
Expand Down Expand Up @@ -351,15 +350,12 @@ 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;
box-sizing: content-box; /* 2 */
}

/**
Expand Down

0 comments on commit c78ecbb

Please sign in to comment.