diff --git a/pkg/web/static/overrides.css b/pkg/web/static/overrides.css index 706e3d12bb2639c397e59f8653c88149734bb007..6cc6324dc55d397fc810275a6d6a8f1187f48dae 100644 --- a/pkg/web/static/overrides.css +++ b/pkg/web/static/overrides.css @@ -180,6 +180,7 @@ article > p:only-child { font-weight: 600; line-height: 1; border-radius: 0.25rem; + vertical-align: middle; background-color: color-mix(in srgb, var(--label-color) 20%, var(--pico-card-background-color)); border: 2px solid color-mix(in srgb, var(--label-color) 40%, var(--pico-card-background-color)); color: var(--pico-color); diff --git a/pkg/web/templates/base.html b/pkg/web/templates/base.html index f0016035c474fb9cf7850e6d1147906e61ac4205..71398e41efc5df9851894ed2646fdd402909c31d 100644 --- a/pkg/web/templates/base.html +++ b/pkg/web/templates/base.html @@ -16,7 +16,7 @@ - + {{block "page-styles" .}}{{end}} diff --git a/pkg/web/templates/bug.html b/pkg/web/templates/bug.html index 80b3ac93374d219b359b27f00722a8af6d20d1d9..aa59cdf39a83568bb3908874e98507252ada8204 100644 --- a/pkg/web/templates/bug.html +++ b/pkg/web/templates/bug.html @@ -23,7 +23,7 @@ {{if .Labels}}

- {{range $i, $label := .Labels}}{{if $i}} {{end}}{{$label.Name}}{{end}} + Labels: {{range $i, $label := .Labels}}{{if $i}} {{end}}{{$label.Name}}{{end}}

{{end}} diff --git a/pkg/web/templates/bugs.html b/pkg/web/templates/bugs.html index 7f0336e11f586cc3b362785c576f974a91048d6d..50a7b9471c6da896fd364294beb3f698ab9b96d0 100644 --- a/pkg/web/templates/bugs.html +++ b/pkg/web/templates/bugs.html @@ -28,6 +28,7 @@ {{end}} {{.ID}} {{.Title}} + {{if .Labels}}{{range $i, $label := .Labels}}{{if $i}} {{end}}{{$label.Name}}{{end}}{{end}}