From c320caed9700ac5e6a203a4a0dd3dbddb274c36c Mon Sep 17 00:00:00 2001 From: Yarden Shoham Date: Fri, 20 Jan 2023 17:34:52 +0200 Subject: [PATCH] Truncate commit summary on repo files table. (#22551) (#22552) Backport #22551 There was an unintended regression in #21124 which assumed that .commits-list .message-wrapper would only match the commit summaries on /{owner}/{name}/commits/*. This assumption is incorrect as the directory/file view also uses a .commits-list wrapper. Rather than completely restructure this page this PR simply adjusts the styling to again use display: inline-block; for #repo-files-table .commit-list .message-wrapper Fix #22360 --- web_src/less/_repository.less | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web_src/less/_repository.less b/web_src/less/_repository.less index 3b828b2a8..a3b373f43 100644 --- a/web_src/less/_repository.less +++ b/web_src/less/_repository.less @@ -2845,6 +2845,11 @@ tbody.commit-list { display: inline; } +// but in the repo-files-table we cannot +#repo-files-table .commit-list .message-wrapper { + display: inline-block; +} + @media @mediaSm { tr.commit-list { width: 100%;