mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
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)
This commit is contained in:
parent
979eb1aa0c
commit
585d62c0cd
1 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue