Skip to content

Commit

Permalink
Removed vendor prefixes, except where it fixes a specific bug or quirk
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemike committed Aug 11, 2014
1 parent 63d8fcb commit 16587b5
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ html {
*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
-moz-box-sizing: border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
box-sizing: border-box;
}

Expand Down Expand Up @@ -358,20 +356,13 @@ input[type="radio"] {
input[type="search"] {
-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
-moz-box-sizing: content-box;
box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
border: 0;
padding: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
Expand Down

0 comments on commit 16587b5

Please sign in to comment.