diff options
author | Go MAEDA <maeda@farend.jp> | 2019-04-30 08:15:29 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-04-30 08:15:29 +0000 |
commit | 3c5c73debdc62259ce7b64e7642d39036b66e21c (patch) | |
tree | 6c0425c5068ded789b4cf3cae8d20cc5ff4f0eda /public | |
parent | acac5974e31514d13e14be3c6fbc4c6ade6d3b11 (diff) | |
download | redmine-3c5c73debdc62259ce7b64e7642d39036b66e21c.tar.gz redmine-3c5c73debdc62259ce7b64e7642d39036b66e21c.zip |
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
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 7c0a39241..a068952f2 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -461,7 +461,19 @@ select { padding-right: 20px; } 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;} fieldset {border: 1px solid #e4e4e4; margin:0; min-width: inherit;} legend {color: #333;} |