diff options
author | Go MAEDA <maeda@farend.jp> | 2019-09-28 23:50:10 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-09-28 23:50:10 +0000 |
commit | bc6baba05a9ef3ece0f0c4ab77641c88cf88dcd1 (patch) | |
tree | ff5630164272a4a7943dcce167f7c042978e3c59 /public | |
parent | 3f8c42b81f541db8728ff2e5b0c5d0536e030394 (diff) | |
download | redmine-bc6baba05a9ef3ece0f0c4ab77641c88cf88dcd1.tar.gz redmine-bc6baba05a9ef3ece0f0c4ab77641c88cf88dcd1.zip |
Make the disabled fields more obvious (#31147).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@18548 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 800415f91..5f8ade106 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -423,6 +423,11 @@ span.search_for_watchers {display:block;} span.search_for_watchers, span.add_attachment {font-size:80%; line-height:2.5em;} span.add_attachment a {padding-left:16px; background: url(../images/bullet_add.png) no-repeat 0 50%; } +input:disabled, select:disabled, textarea:disabled { + cursor: not-allowed; + color: graytext; +} + .highlight { background-color: #FCFD8D;} .highlight.token-1 { background-color: #faa;} |