From 3611841704bbce652b8c20762775f4d4c456fff8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Tamargo?= Date: Mon, 6 Feb 2023 16:26:22 +0200 Subject: [PATCH] MBS-12880: Support fieldset.row legend styling again This was dropped with 165f7c7f727969d796ae73ec0b30d83dccd363f9 but it is what set the right indent for the CoverArtFields checkboxes. I could use label instead of legend, but legend is AFAIK more correct for fieldsets. --- root/static/styles/forms.less | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/root/static/styles/forms.less b/root/static/styles/forms.less index d151293f382..f43b4c0c3f8 100644 --- a/root/static/styles/forms.less +++ b/root/static/styles/forms.less @@ -65,7 +65,8 @@ form, div.form { } div.row label, - div.row div.label { + div.row div.label, + fieldset.row legend { float: left; text-align: right; min-width: @form-label-width;