From e59f92dec8350720ca41a95b569a54dc3d3b4bff Mon Sep 17 00:00:00 2001 From: 0ko <0ko@noreply.codeberg.org> Date: Sun, 5 May 2024 15:40:25 +0500 Subject: [PATCH] [UI] Fix commit messages breaking out of event history Regression of https://codeberg.org/forgejo/forgejo/commit/8b54d38cbe85f8004161a1e40b76f30db3370642. This is 7.0 specific path for the issue. The design of this area is not compatible with 8.0, and thus there's no startightforward way to make it look like on 8.0. --- web_src/css/repo.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web_src/css/repo.css b/web_src/css/repo.css index 0093cb3eb5..3c43c0b079 100644 --- a/web_src/css/repo.css +++ b/web_src/css/repo.css @@ -185,6 +185,11 @@ text-overflow: ellipsis; } +/* path for 7.0 */ +.issue-content .commit-summary { + white-space: unset; +} + .commit-header .commit-summary, td .commit-summary { white-space: normal;