diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-03-15 18:03:27 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-03-15 18:03:27 +0000 |
commit | 674e1752e6fc6fc09efbf8a7a2b916c77c03bcee (patch) | |
tree | 358868002441dbce35fe0815695ae26f3fd86c6a | |
parent | cb35ff95c5e2316d826c0817ba7f7aac43443abd (diff) | |
download | redmine-674e1752e6fc6fc09efbf8a7a2b916c77c03bcee.tar.gz redmine-674e1752e6fc6fc09efbf8a7a2b916c77c03bcee.zip |
Show icons only when cursor is over the box.
git-svn-id: http://svn.redmine.org/redmine/trunk@16408 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | public/stylesheets/application.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 99a034a2f..406989c3f 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -1125,6 +1125,9 @@ div.wiki img {vertical-align:middle; max-width:100%;} line-height:1.5em; } +.mypage-box>.contextual {opacity:0; transition: opacity 0.2s;} +.mypage-box:hover>.contextual {opacity:1;} + .handle {cursor: move;} #my-page .list th.checkbox, #my-page .list td.checkbox {display:none;} |