Fix: CSS Styles for Small Buttons

This commit is contained in:
Gary Sharp
2013-04-08 15:18:28 +10:00
parent e7ff62afc7
commit b5531e64bd
23 changed files with 111 additions and 78 deletions
+11 -3
View File
@@ -806,15 +806,23 @@ input[type="submit"].button {
text-transform: uppercase;
cursor: pointer;
}
input[type="submit"].button:hover {
border: 1px solid #696969;
background: #9e9e9e;
input[type="submit"].button.alert {
border-color: #990000;
background-color: #e90000;
}
input[type="submit"].button.small {
padding: 2px 5px;
font-size: .9em;
}
input[type="submit"].button[disabled] {
background: #9e9e9e;
border: 1px solid #696969;
cursor: default;
}
input[type="submit"].button:hover {
border: 1px solid #696969;
background: #9e9e9e;
}
ul.none {
list-style: none;
margin: 0;