Skip to content

Commit c78ecbb

Browse files
committed
Remove unnecessary vendor prefixes
Firefox ESR is currently at Firefox 31, which doesn't require box-sizing prefixes. Fix #400
1 parent ef2b006 commit c78ecbb

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ library code.
3434

3535
* Google Chrome (latest)
3636
* Mozilla Firefox (latest)
37-
* Mozilla Firefox 4
37+
* Mozilla Firefox ESR
3838
* Opera (latest)
3939
* Apple Safari 6+
4040
* Internet Explorer 8+

normalize.css

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ figure {
210210
*/
211211

212212
hr {
213-
-moz-box-sizing: content-box;
214213
box-sizing: content-box;
215214
height: 0;
216215
}
@@ -351,15 +350,12 @@ input[type="number"]::-webkit-outer-spin-button {
351350

352351
/**
353352
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
354-
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
355-
* (include `-moz` to future-proof).
353+
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
356354
*/
357355

358356
input[type="search"] {
359357
-webkit-appearance: textfield; /* 1 */
360-
-moz-box-sizing: content-box;
361-
-webkit-box-sizing: content-box; /* 2 */
362-
box-sizing: content-box;
358+
box-sizing: content-box; /* 2 */
363359
}
364360

365361
/**

0 commit comments

Comments
 (0)