From a0eec6c63b1b29d4d086b473e06be978f8848cfb Mon Sep 17 00:00:00 2001 From: Emil Uzelac Date: Sun, 20 Oct 2013 20:05:11 -0500 Subject: [PATCH] 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 --- style.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/style.css b/style.css index 95cb1beb..ab4bf97e 100644 --- a/style.css +++ b/style.css @@ -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;