From 092e8fffef8d76cb4c14c19878a1796693cc8eb3 Mon Sep 17 00:00:00 2001 From: Sam Link Date: Wed, 2 Jan 2019 14:04:00 -0500 Subject: [PATCH] LP1736967 Primary a CSS Styling Fix Added a "link" color to src\templates\opac\parts\css\colors.tt2 matched to the default dark green of the css_colors.primary, and set the anchor color in templates\opac\css\style.css.tt2 on line 37 to use css_colors.link. Signed-off-by: Sam Link Signed-off-by: Rogan Hamby Signed-off-by: Galen Charlton --- Open-ILS/src/templates/opac/css/style.css.tt2 | 2 +- Open-ILS/src/templates/opac/parts/css/colors.tt2 | 1 + 2 files changed, 2 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 6c1dc7070d..e5c1b0ba36 100644 --- a/Open-ILS/src/templates/opac/css/style.css.tt2 +++ b/Open-ILS/src/templates/opac/css/style.css.tt2 @@ -34,7 +34,7 @@ img { } a { - color: [% css_colors.primary %]; + color: [% css_colors.link %]; } #search-wrapper input[type=text] { diff --git a/Open-ILS/src/templates/opac/parts/css/colors.tt2 b/Open-ILS/src/templates/opac/parts/css/colors.tt2 index b8c5ca8712..2c0c1f1acf 100644 --- a/Open-ILS/src/templates/opac/parts/css/colors.tt2 +++ b/Open-ILS/src/templates/opac/parts/css/colors.tt2 @@ -33,6 +33,7 @@ table_heading = "#d8d8d8", # grey-blue mobile_header_text = "#fff", # white item_selected = "#ddd", # grey (lighter) + link = "#00593d", # dark green }; %] -- 2.43.2