diff options
author | James Lakin <jamesorlakin@users.noreply.github.com> | 2020-02-11 20:40:47 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-11 22:40:47 +0200 |
commit | 54af3c90c72d48031d6e666e708f24115b64703b (patch) | |
tree | 203bfc4d18295ee47f546051cdba3f12de91636b /web_src | |
parent | d9c79986eae0a4b4ccadc39c89e84c6fe3730392 (diff) | |
download | gitea-54af3c90c72d48031d6e666e708f24115b64703b.tar.gz gitea-54af3c90c72d48031d6e666e708f24115b64703b.zip |
Fix issue sidebar menus having an infinite height (#10239)
* Revert "Limit label list height on edit issue page"
* Fix issue sidebar menus having an infinite height
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/less/_repository.less | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/web_src/less/_repository.less b/web_src/less/_repository.less index bd2449ba1e..2e5ae08088 100644 --- a/web_src/less/_repository.less +++ b/web_src/less/_repository.less @@ -83,6 +83,7 @@ .metas { .menu { overflow-x: auto; + max-height: 300px; } .ui.list { @@ -152,8 +153,6 @@ } &.labels { - max-height: 300px; - .label-filter .menu .info { display: inline-block; padding: 9px 7px 7px 7px; |