1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

Add hover styles to buttons (#31204).

Patch by Marius BALTEANU.


git-svn-id: http://svn.redmine.org/redmine/trunk@18110 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2019-04-30 08:15:29 +00:00
parent acac5974e3
commit 3c5c73debd

View File

@ -461,7 +461,19 @@ select {
padding-right: 20px; padding-right: 20px;
} }
input[type="file"] {border: 0; padding-left: 0; padding-right: 0;} input[type="file"] {border: 0; padding-left: 0; padding-right: 0;}
input[type="submit"] {-webkit-appearance: button; cursor: pointer; background-color: #fff;} input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
background-color: #fff;
height: 28px;
-webkit-transition: background-color 100ms linear;
-moz-transition: background-color 100ms linear;
-o-transition: background-color 100ms linear;
transition: background-color 100ms linear;
}
input[type="submit"]:hover {
background-color: #ddd;
}
select[multiple=multiple] {background: #fff; padding-right: initial; height: auto;} select[multiple=multiple] {background: #fff; padding-right: initial; height: auto;}
fieldset {border: 1px solid #e4e4e4; margin:0; min-width: inherit;} fieldset {border: 1px solid #e4e4e4; margin:0; min-width: inherit;}
legend {color: #333;} legend {color: #333;}