From dfb56b6d2c163f6094a92baab9b902057aab23fd Mon Sep 17 00:00:00 2001 From: Ben Shum Date: Mon, 1 May 2017 22:27:10 -0400 Subject: [PATCH] LP#1681943: Use variables for CSS colors There were some hardcoded references to #ccc in the stylesheet, and those should be variables like [% css_colors.accent_light %] instead. Signed-off-by: Ben Shum Signed-off-by: Galen Charlton Signed-off-by: Terran McCanna --- Open-ILS/src/templates/opac/css/style.css.tt2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Open-ILS/src/templates/opac/css/style.css.tt2 b/Open-ILS/src/templates/opac/css/style.css.tt2 index 81653927dc..fbcbeeabc1 100644 --- a/Open-ILS/src/templates/opac/css/style.css.tt2 +++ b/Open-ILS/src/templates/opac/css/style.css.tt2 @@ -594,7 +594,7 @@ span#rdetail_hold_counts p { .rdetail_aux_utils { padding-bottom: 6px; [% IF rtl == 't' -%] - border-right: 1px dotted #ccc; + border-right: 1px dotted [% css_colors.accent_light %]; padding-right:17px; padding-left:70px; [%- ELSE %] @@ -2600,7 +2600,7 @@ a.preflib_change { width: 95%; margin: 5px 0px 5px 0px; text-align: left; - border: 1px #ccc solid; + border: 1px solid [% css_colors.accent_light %]; padding:5px; } .bookbag-specific div.meta { @@ -2621,7 +2621,7 @@ a.preflib_change { } .bbag-content { padding:5px; - border:1px #ccc solid; + border:1px solid [% css_colors.accent_light %]; } .bbag-action { margin-left:0px; -- 2.43.2