diff options
author | Go MAEDA <maeda@farend.jp> | 2019-04-29 12:03:33 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-04-29 12:03:33 +0000 |
commit | ee26bab76d2e2c51f4677887d30d6c227beb3ee4 (patch) | |
tree | c43c763246b6c97f5c1c147ead4d1065b5105457 | |
parent | 978c7e1e72b98eee0df091192d4e7151645c84c3 (diff) | |
download | redmine-ee26bab76d2e2c51f4677887d30d6c227beb3ee4.tar.gz redmine-ee26bab76d2e2c51f4677887d30d6c227beb3ee4.zip |
Fix that r18089 disabled context menu in the gantt subject column (#31268).
Patch by Felix Gliesche.
git-svn-id: http://svn.redmine.org/redmine/trunk@18095 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 dbafe1422..bd4f94fe4 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -1255,7 +1255,7 @@ div.wiki img {vertical-align:middle; max-width:100%;} .gantt_hdr.nwday {background-color:#f1f1f1; color:#999;} -.gantt_subjects { font-size: 0.8em; } +.gantt_subjects { font-size: 0.8em; position: relative; z-index: 1; } .gantt_subjects div { line-height:16px;height:16px;overflow:hidden;white-space:nowrap;text-overflow: ellipsis; } .gantt_subjects div.issue-subject:hover { background-color:#ffffdd; } |