diff options
author | Go MAEDA <maeda@farend.jp> | 2020-01-28 02:57:37 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2020-01-28 02:57:37 +0000 |
commit | 245dea81ebb235c0bf358208c56e87974e866324 (patch) | |
tree | d2c3b59e787fab56bdec6cefa5086a7e7e663c20 | |
parent | 9d81d56d810330a2341c4099f82f2f4e990d2174 (diff) | |
download | redmine-245dea81ebb235c0bf358208c56e87974e866324.tar.gz redmine-245dea81ebb235c0bf358208c56e87974e866324.zip |
Fix duplicate selector (#32890).
Patch by Marius BALTEANU.
git-svn-id: http://svn.redmine.org/redmine/trunk@19475 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | public/stylesheets/responsive.css | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/public/stylesheets/responsive.css b/public/stylesheets/responsive.css index bdcfab97f..c3ba3eacb 100644 --- a/public/stylesheets/responsive.css +++ b/public/stylesheets/responsive.css @@ -799,6 +799,7 @@ #issue_tree .issue > td.subject, #relations .issue > td.subject { width: 100% !important; /* let subject have one full width column */ word-break: break-word; /* break word if subject is too long */ + padding-right: 25px; /* this is the spaces that .buttons uses next to subject */ } #issue_tree .issue > td:not(.checkbox), #relations .issue > td:not(.checkbox) { @@ -825,11 +826,6 @@ vertical-align: middle; } - #issue_tree .issue > td.subject, - #relations .issue > td.subject { - padding-right: 25px; /* this is the spaces that .buttons uses next to subject */ - } - /* attachment upload form */ .attachments_fields span { position: relative; |