Fix labels and projects menu overflow on issue page (#31435)

It was correct only on the new issue page.

Resolves #31415
pull/31431/head^2
Brecht Van Lommel 5 months ago committed by GitHub
parent 17b3a38577
commit 5afafe22a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 10
      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;
}

Loading…
Cancel
Save