From bcfd80917e1f7bdf300fe8c853219354c594090a Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Tue, 3 Jun 2025 07:17:01 +0000 Subject: [PATCH] Fix unintended top/bottom margin in rows of project and issue lists (#42773). Patch by Katsuya HIDAKA (user:hidakatsuya). git-svn-id: https://svn.redmine.org/redmine/trunk@23815 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/assets/stylesheets/application.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index e35e5cba0..3380eddc4 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -364,6 +364,9 @@ table.list caption { text-align: left; padding: 0.5em 0.5em 0.5em 0; } table.list tr.overdue td.due_date { color: #c22; } table.list thead.related-issues th { background-color: inherit; font-size: 11px; border: none; } #role-permissions-trackers table.list th {white-space:normal;} +table.list div.wiki p { + margin: 0; +} .table-list-cell {display: table-cell; vertical-align: top; padding:2px; } .table-list div.buttons {width: 15%;} @@ -936,7 +939,7 @@ ul.projects div.description ul li {list-style-type:initial;} #projects-index a.project ~ svg, table.projects tr.project td.name svg { margin-left: 4px; } -#projects-index li p { +#projects-index div.wiki p { margin-top: 0px; }