From b83482b4baea399f66a518b72cc9c96d647cb1fe Mon Sep 17 00:00:00 2001 From: Giteabot Date: Fri, 21 Jun 2024 00:59:49 +0800 Subject: [PATCH] Fix labels and projects menu overflow on issue page (#31435) (#31439) Backport #31435 by brechtvl It was correct only on the new issue page. Resolves #31415 Co-authored-by: Brecht Van Lommel --- web_src/css/repo.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/web_src/css/repo.css b/web_src/css/repo.css index 25a71e0928..d1d2ff24b6 100644 --- a/web_src/css/repo.css +++ b/web_src/css/repo.css @@ -79,6 +79,11 @@ white-space: nowrap; } +.repository .issue-content-right .filter.menu { + max-height: 500px; + overflow-x: auto; +} + .repository .filter.menu.labels .label-filter .menu .info { display: inline-block; padding: 0.5rem 0; @@ -562,11 +567,6 @@ td .commit-summary { font-size: 14px; } -.repository.new.issue .comment.form .issue-content-right .filter.menu { - max-height: 500px; - overflow-x: auto; -} - .repository.view.issue .instruct-toggle { display: inline-block; }