forked from mirror/_s
html input
Proposing to remove html input from the button class. It overrides more than is needed. For example it will interfere with bbPress editor styles. It's safer to leave input[type="button"] as-is. Please see: http://i.imgur.com/Q98uqBH.png
This commit is contained in:
parent
628ec71614
commit
a0eec6c63b
|
@ -227,7 +227,7 @@ input {
|
|||
line-height: normal; /* Addresses FF3/4 setting line-height using !important in the UA stylesheet */
|
||||
}
|
||||
button,
|
||||
html input[type="button"],
|
||||
input[type="button"],
|
||||
input[type="reset"],
|
||||
input[type="submit"] {
|
||||
border: 1px solid #ccc;
|
||||
|
@ -245,18 +245,18 @@ input[type="submit"] {
|
|||
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
|
||||
}
|
||||
button:hover,
|
||||
html input[type="button"]:hover,
|
||||
input[type="button"]:hover,
|
||||
input[type="reset"]:hover,
|
||||
input[type="submit"]:hover {
|
||||
border-color: #ccc #bbb #aaa #bbb;
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
|
||||
}
|
||||
button:focus,
|
||||
html input[type="button"]:focus,
|
||||
input[type="button"]:focus,
|
||||
input[type="reset"]:focus,
|
||||
input[type="submit"]:focus,
|
||||
button:active,
|
||||
html input[type="button"]:active,
|
||||
input[type="button"]:active,
|
||||
input[type="reset"]:active,
|
||||
input[type="submit"]:active {
|
||||
border-color: #aaa #bbb #bbb #bbb;
|
||||
|
|
Reference in New Issue