From: Michael Peters Date: Fri, 5 Dec 2014 16:55:21 +0000 (-0500) Subject: Modify style.css.tt2 to make sure all new rows have bold labels X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=1939cc5cbc7944bb20e726ffe6bd638aff3a9f8b;p=working%2FEvergreen.git 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 --- diff --git a/Open-ILS/src/templates/opac/css/style.css.tt2 b/Open-ILS/src/templates/opac/css/style.css.tt2 index 416e573581..1c22951e10 100644 --- a/Open-ILS/src/templates/opac/css/style.css.tt2 +++ b/Open-ILS/src/templates/opac/css/style.css.tt2 @@ -2066,4 +2066,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; +}