diff options
author | Brecht Van Lommel <brecht@blender.org> | 2024-06-20 18:54:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-20 16:54:19 +0000 |
commit | 5afafe22a34183c9c053a7ceac2c9dc05d9943e2 (patch) | |
tree | 6d7a948f6d6be1637715ff4eaf19691128ea0d84 /web_src/css/repo.css | |
parent | 17b3a38577d6e1d50ba5565ca3b1f2f57a04bf32 (diff) | |
download | gitea-5afafe22a34183c9c053a7ceac2c9dc05d9943e2.tar.gz gitea-5afafe22a34183c9c053a7ceac2c9dc05d9943e2.zip |
Fix labels and projects menu overflow on issue page (#31435)
It was correct only on the new issue page.
Resolves #31415
Diffstat (limited to 'web_src/css/repo.css')
-rw-r--r-- | web_src/css/repo.css | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/web_src/css/repo.css b/web_src/css/repo.css index 571c60700e..28b84d3af4 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; } |