mirror of https://github.com/go-gitea/gitea
Fix label styles affecting shabox (#13734)
* Fix label styles affecting shabox Add common parent .labels-list to issue labels lists to prevent affecting other elements. Fixes: https://github.com/go-gitea/gitea/issues/13704 * Update templates/shared/issuelist.tmpl * Update templates/shared/issuelist.tmpl Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>pull/13733/head^2
parent
b2435af9be
commit
da4bb6fc4e
@ -1,9 +1,11 @@ |
|||||||
<div class="ui labels list"> |
<div class="ui labels list"> |
||||||
<span class="no-select item {{if .ctx.HasSelectedLabel}}hide{{end}}">{{.ctx.i18n.Tr "repo.issues.new.no_label"}}</span> |
<span class="no-select item {{if .ctx.HasSelectedLabel}}hide{{end}}">{{.ctx.i18n.Tr "repo.issues.new.no_label"}}</span> |
||||||
{{range .ctx.Labels}} |
<span class="labels-list"> |
||||||
{{template "repo/issue/labels/label" dict "root" $ "label" .}} |
{{range .ctx.Labels}} |
||||||
{{end}} |
{{template "repo/issue/labels/label" dict "root" $ "label" .}} |
||||||
{{range .ctx.OrgLabels}} |
{{end}} |
||||||
{{template "repo/issue/labels/label" dict "root" $ "label" .}} |
{{range .ctx.OrgLabels}} |
||||||
{{end}} |
{{template "repo/issue/labels/label" dict "root" $ "label" .}} |
||||||
|
{{end}} |
||||||
|
</span> |
||||||
</div> |
</div> |
||||||
|
Loading…
Reference in new issue