diff options
author | Go MAEDA <maeda@farend.jp> | 2018-06-05 04:53:27 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2018-06-05 04:53:27 +0000 |
commit | 880f7081b6ef8fe551432ac49a44bde21064dacb (patch) | |
tree | cbc3e8ef277a9b5b3345bf0d9569d8f5a365be86 /public | |
parent | db8afc99e138c89b8824ab60cd1a6edbf8447734 (diff) | |
download | redmine-880f7081b6ef8fe551432ac49a44bde21064dacb.tar.gz redmine-880f7081b6ef8fe551432ac49a44bde21064dacb.zip |
Add a border around issue history to prevent accidental deletion of an issue (#26662).
Patch by Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@17366 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index c48ff37c4..a47d98547 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -514,6 +514,15 @@ div.journal ul.details a:hover, ul.revision-info a:hover {color:#D14848;} body.avatars-on div.journal {padding-left:32px;} div.journal h4 img.gravatar {margin-left:-32px;} +#history { + padding: 0 6px; + margin-bottom: 10px; + border-right: 1px solid #d7d7d7; + border-bottom: 1px solid #d7d7d7; + border-left: 1px solid #d7d7d7; + border-radius: 0 0 3px 3px / 0 0 3px 3px; +} + #history div:target h4 {background-color:#DDEEFF;} div#activity dl, #search-results { margin-left: 2em; } |