Fix issue label rendering (#13570)
* Fix issue label rendering Prevent rendering of inactive labels and make them wrap inline. Fixes: https://github.com/go-gitea/gitea/issues/13566 * also don't render the placeholder Co-authored-by: techknowlogick <techknowlogick@gitea.io>
This commit is contained in:
parent
f0ed71251e
commit
50cbb20481
3 changed files with 33 additions and 10 deletions
|
@ -2983,6 +2983,20 @@
|
|||
}
|
||||
}
|
||||
|
||||
.labels.list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.labels.list .item {
|
||||
padding: 0 !important;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.labels.list .item + .item {
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
tbody.commit-list {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue