From 1ff8d9d0e0d81245bdd7d629007d69ddd3047ac9 Mon Sep 17 00:00:00 2001 From: Michael Peters Date: Fri, 5 Dec 2014 11:55:21 -0500 Subject: [PATCH] Modify style.css.tt2 to make sure all new rows have bold labels Previously, "Add Search Row" added new rows without the labels being bold because they have an id=null. This sets a selector for the expert_* labels so that the new rows are bolded too. This makes for better readibility on the page. Signed-off-by: Michael Peters --- Open-ILS/src/templates/opac/css/style.css.tt2 | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Open-ILS/src/templates/opac/css/style.css.tt2 b/Open-ILS/src/templates/opac/css/style.css.tt2 index 199a6d268f..b37cae1153 100644 --- a/Open-ILS/src/templates/opac/css/style.css.tt2 +++ b/Open-ILS/src/templates/opac/css/style.css.tt2 @@ -2134,4 +2134,10 @@ See also http://webaim.org/techniques/css/invisiblecontent/ overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; -} +} + +/* Make added rows in Expert Search have bold labels like the initial row */ +label[for*=expert_] +{ + font-weight: bold; +} -- 2.11.0