From 585d62c0cd90e2da25e2da00bf4e82ad92604ec3 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 20 Jun 2024 18:54:19 +0200 Subject: [PATCH] Fix labels and projects menu overflow on issue page (#31435) It was correct only on the new issue page. Resolves #31415 (cherry picked from commit 5afafe22a34183c9c053a7ceac2c9dc05d9943e2) --- 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 4ca8148fb..f52804ff2 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; @@ -581,11 +586,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; }