From: Stephanie Leary Date: Wed, 1 Mar 2023 20:35:45 +0000 (+0000) Subject: LP2000485 Bootstrap 5: Style input group + label X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=7a9700fc5f4b7961142b262a0ec3025f1d06c5e4;p=working%2FEvergreen.git LP2000485 Bootstrap 5: Style input group + label Bootstrap input groups are not intended to be used with labels, but we are doing so to provide screen reader support without (yet) redesigning all our form layouts. This style removes extra padding and borders on labels inside input groups. Signed-off-by: Stephanie Leary --- diff --git a/Open-ILS/src/eg2/src/styles.css b/Open-ILS/src/eg2/src/styles.css index 6061fc76ba..c0a29365b3 100644 --- a/Open-ILS/src/eg2/src/styles.css +++ b/Open-ILS/src/eg2/src/styles.css @@ -424,3 +424,9 @@ input.small { a { text-decoration: none; } + +.input-group-text label { + border: 0; + margin: 0; + padding: 0; +} \ No newline at end of file