Fix: Adjust padding and box-sizing on activity elements to remove unnecessary scroll bar on user profile page (#41756).

Patch by Kenta Kumojima (user:kumojima).


git-svn-id: https://svn.redmine.org/redmine/trunk@23274 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2024-11-15 00:39:14 +00:00
parent a3ed4b52ac
commit 7ba7294949

View File

@@ -747,7 +747,7 @@ div#activity dt .time { color: #777; font-size: 93%; margin-right: 4px; }
div#activity dd .description, #search-results dd .description { font-style: italic; }
div#activity span.project:after, #search-results span.project:after { content: " -"; }
div#activity dd span.description, #search-results dd span.description { display:block; color: #808080; }
div#activity dt.grouped {margin-left:5em;}
div#activity dt.grouped {padding-left:5em;}
div#activity dd.grouped {margin-left:9em;}
div#activity h3 {
padding: 5px;
@@ -757,6 +757,7 @@ div#activity dt {
padding-top: 10px;
border-top: 1px solid #eeeeee;
width: 100%; /* Prevents border from disappearing due to inline-flex shrinking */
box-sizing: border-box;
}
div#activity dl dt:first-child {
border: 0px;