diff options
author | Go MAEDA <maeda@farend.jp> | 2019-10-07 00:40:03 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-10-07 00:40:03 +0000 |
commit | cf0a40b28f22936cd647134ef42e940cf379dfee (patch) | |
tree | fbad44f1bfacda3e3a44a63601eab9e204c95312 | |
parent | 9841f2d998fe5bf5d74230be76191a41109cefde (diff) | |
download | redmine-cf0a40b28f22936cd647134ef42e940cf379dfee.tar.gz redmine-cf0a40b28f22936cd647134ef42e940cf379dfee.zip |
Options in a drop-down overlap the down arrow when Alternate theme is used (#32206, #31147).
Patch by Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@18602 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | public/themes/alternate/stylesheets/application.css | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/public/themes/alternate/stylesheets/application.css b/public/themes/alternate/stylesheets/application.css index 4ad6b7923..ccc889410 100644 --- a/public/themes/alternate/stylesheets/application.css +++ b/public/themes/alternate/stylesheets/application.css @@ -70,8 +70,7 @@ input[type="button"], input[type="submit"], input[type="reset"] { background-col input[type="button"]:hover, input[type="submit"]:hover, input[type="reset"]:hover { background-color: #ccccbb; } /* Fields */ -input[type="text"], input[type="password"], textarea, select { padding: 2px; border: 1px solid #d7d7d7; } -input[type="text"], input[type="password"] { padding: 3px; } +input[type="text"], input[type="password"], textarea, select { border: 1px solid #d7d7d7; } input[type="text"]:focus, input[type="password"]:focus, textarea:focus, select:focus { border: 1px solid #888866; } option { border-bottom: 1px dotted #d7d7d7; } |