forked from mirror/_s
removing uneeded CSS declaration, adding a note, and reordering some declarations
originally submitted here: https://github.com/richardmtl/_s/commit/5d15eef59b838200cd255bea6d954064 e87cf3cf ; additional note and explanation found there
This commit is contained in:
parent
a156f2cbab
commit
eb948eac28
|
@ -53,8 +53,8 @@ html {
|
||||||
*,
|
*,
|
||||||
*:before,
|
*:before,
|
||||||
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
|
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
|
||||||
-moz-box-sizing: border-box;
|
-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 */
|
||||||
-webkit-box-sizing: border-box;
|
-moz-box-sizing: border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
body {
|
body {
|
||||||
|
@ -230,10 +230,6 @@ textarea {
|
||||||
*vertical-align: middle; /* Improves appearance and consistency in all browsers */
|
*vertical-align: middle; /* Improves appearance and consistency in all browsers */
|
||||||
}
|
}
|
||||||
button,
|
button,
|
||||||
input {
|
|
||||||
line-height: normal; /* Addresses FF3/4 setting line-height using !important in the UA stylesheet */
|
|
||||||
}
|
|
||||||
button,
|
|
||||||
input[type="button"],
|
input[type="button"],
|
||||||
input[type="reset"],
|
input[type="reset"],
|
||||||
input[type="submit"] {
|
input[type="submit"] {
|
||||||
|
|
Reference in New Issue