From 5d26a46ea0f4d3e413ddfbddea4d470191cd90f1 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 27 Oct 2022 12:11:54 +0000 Subject: [PATCH] Bug 31974: (follow-up) Correct some other specificity issues This follow-up makes a couple other minor corrections to label alignment. This allows for correct top-alignment of labels in forms but lets labels in other contexts, especially checkbox or radio button labels, to be aligned "middle." Signed-off-by: David Nind --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss index a6d30023b6..6ecdac78d0 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -616,7 +616,7 @@ label, font-weight: normal; max-width: inherit; padding: 0; - vertical-align: top; + vertical-align: middle; white-space: normal; input { @@ -1125,6 +1125,7 @@ div { margin-right: 1em; padding-top: 0; text-align: left; + vertical-align: top; width: 9em; white-space: normal; } -- 2.30.2