diff options
author | Go MAEDA <maeda@farend.jp> | 2019-05-20 08:34:09 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-05-20 08:34:09 +0000 |
commit | 583c406bece28cb8c5eaf87347ab1755da1d7393 (patch) | |
tree | 901f0b13ad2abe01c93116280a0ce3d435ec515c | |
parent | d82f7ef1c7130b6ecbf7f1779a172c5e4765b30a (diff) | |
download | redmine-583c406bece28cb8c5eaf87347ab1755da1d7393.tar.gz redmine-583c406bece28cb8c5eaf87347ab1755da1d7393.zip |
Set background color in order to provide a consistent style on GTK dark themes (#31147).
Patch by Bernhard Rohloff.
git-svn-id: http://svn.redmine.org/redmine/trunk@18177 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | public/stylesheets/application.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index e9be4cc58..3950c3e05 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -451,7 +451,7 @@ div.square { form {display: inline;} input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px; height: 24px; padding: 0 7px;} -input, select, textarea {border:1px solid #ccc; border-radius:3px; box-sizing: border-box;} +input, select, textarea { color: #333; background-color: #fff; border:1px solid #ccc; border-radius:3px; box-sizing: border-box;} select { -webkit-appearance: none; -moz-appearance: none; |