diff options
author | puni9869 <80308335+puni9869@users.noreply.github.com> | 2023-09-18 10:24:05 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-18 04:54:05 +0000 |
commit | a50d9af876435d007e6052c6ef8ebc838dd9709f (patch) | |
tree | 1e2d3b90ccfdcf307acab33577b3452b4b704918 /web_src/css/repo | |
parent | e97baed800ed9b83c5634492205318ab0c820719 (diff) | |
download | gitea-a50d9af876435d007e6052c6ef8ebc838dd9709f.tar.gz gitea-a50d9af876435d007e6052c6ef8ebc838dd9709f.zip |
Display archived labels specially when listing labels (#26820)
Follow up https://github.com/go-gitea/gitea/pull/26741
Changes:
Added archived label for org labels and added into issue filter list.
Part of https://github.com/go-gitea/gitea/issues/25237
---------
Signed-off-by: puni9869 <punitinani1@hotmail.com>
Co-authored-by: silverwind <me@silverwind.io>
Diffstat (limited to 'web_src/css/repo')
-rw-r--r-- | web_src/css/repo/issue-label.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/web_src/css/repo/issue-label.css b/web_src/css/repo/issue-label.css index a2eb0344a5..1f83e81d96 100644 --- a/web_src/css/repo/issue-label.css +++ b/web_src/css/repo/issue-label.css @@ -30,7 +30,6 @@ .issue-label-list .item .label-operation { width: 33%; - text-align: right; } .issue-label-list .item a { @@ -42,3 +41,7 @@ .issue-label-list .item.org-label { opacity: 0.7; } + +.label-operation .label { + height: fit-content; +} |