diff options
author | Go MAEDA <maeda@farend.jp> | 2017-11-27 13:00:39 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2017-11-27 13:00:39 +0000 |
commit | 692be89e3a456e7a7edb0ce28468374de7ffcc2b (patch) | |
tree | 367212d847b9f58bbe5211016ee4dc61c7ad83d4 /public/stylesheets | |
parent | 776a8d1828704ec2d93fc8c2eaa3cb95115fab40 (diff) | |
download | redmine-692be89e3a456e7a7edb0ce28468374de7ffcc2b.tar.gz redmine-692be89e3a456e7a7edb0ce28468374de7ffcc2b.zip |
Fix: Unnecessary arrow icon beside a project link in calendar tooltips (#27139).
Patch by Bernhard Rohloff.
git-svn-id: http://svn.redmine.org/redmine/trunk@17039 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public/stylesheets')
-rw-r--r-- | public/stylesheets/application.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 0f7875adc..59bcc3d80 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -918,9 +918,9 @@ table.cal td p.day-num {font-size: 1.1em; text-align:right;} table.cal td.odd p.day-num {color: #bbb;} table.cal td.today {background:#ffffdd;} table.cal td.today p.day-num {font-weight: bold;} -table.cal .starting a, p.cal.legend .starting {background: url(../images/bullet_go.png) no-repeat -1px -2px; padding-left:16px;} -table.cal .ending a, p.cal.legend .ending {background: url(../images/bullet_end.png) no-repeat -1px -2px; padding-left:16px;} -table.cal .starting.ending a, p.cal.legend .starting.ending {background: url(../images/bullet_diamond.png) no-repeat -1px -2px; padding-left:16px;} +table.cal .starting a.issue, p.cal.legend .starting {background: url(../images/bullet_go.png) no-repeat -1px -2px; padding-left:16px;} +table.cal .ending a.issue, p.cal.legend .ending {background: url(../images/bullet_end.png) no-repeat -1px -2px; padding-left:16px;} +table.cal .starting.ending a.issue, p.cal.legend .starting.ending {background: url(../images/bullet_diamond.png) no-repeat -1px -2px; padding-left:16px;} p.cal.legend span {display:block;} /***** Tooltips ******/ |