summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Balteanu <marius.balteanu@zitec.com>2025-04-15 06:23:07 +0000
committerMarius Balteanu <marius.balteanu@zitec.com>2025-04-15 06:23:07 +0000
commit5c0525a459538766f5ea806da645d297f3b7918b (patch)
tree34bdbfc64786d31f870104ba5c5148add7bb5272
parent99cc321840d2cbe61bae4e76c2b45e65cdfe74bb (diff)
downloadredmine-5c0525a459538766f5ea806da645d297f3b7918b.tar.gz
redmine-5c0525a459538766f5ea806da645d297f3b7918b.zip
Prevent delete relation icon overflow with long related issue subjects on related issues sections on an issue page in mobile view (#41828).
git-svn-id: https://svn.redmine.org/redmine/trunk@23658 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/assets/stylesheets/responsive.css4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/stylesheets/responsive.css b/app/assets/stylesheets/responsive.css
index ec580037c..c5278c87f 100644
--- a/app/assets/stylesheets/responsive.css
+++ b/app/assets/stylesheets/responsive.css
@@ -771,6 +771,10 @@
width: 100%; /* let subject have one full width column */
}
+ #issue_tree .issue:has(.buttons a) > td.subject, #relations .issue:has(.buttons a) > td.subject {
+ padding-right: 40px;
+ }
+
#issue_tree .issue > td:not(.subject), #relations .issue > td:not(.subject) {
width: 20%; /* three columns for all cells that are not subject */
}