fixes #566, modernize submit buttons on roma

* white on pink when mouse is over the button
* padding 5px instead of 1px 15px
This commit is contained in:
plegall
2016-12-12 16:25:11 +01:00
parent 4df36903b9
commit c65e8e279c
+6 -1
View File
@@ -230,13 +230,18 @@ INPUT[type="text"].large { width: 317px; }
color:#ff3363;
background-color:#222;
border-color: #ff3363;
padding: 1px 15px;
padding: 5px;
}
.buttonLike:hover, input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover {
color:#999;
border-color: #666;
text-decoration: none;
background-color:#ff3363;
color:#fff;
border-color:#ff3363;
cursor:pointer;
}
.buttonLike:disabled, input[type="button"]:disabled, input[type="submit"]:disabled, input[type="reset"]:disabled {