From: Sam Link Date: Wed, 2 Jan 2019 19:04:00 +0000 (-0500) Subject: LP1736967 Primary a CSS Styling Fix X-Git-Url: http://git.equinoxoli.org/?p=evergreen-equinox.git;a=commitdiff_plain;h=092e8fffef8d76cb4c14c19878a1796693cc8eb3 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 --- diff --git a/Open-ILS/src/templates/opac/css/style.css.tt2 b/Open-ILS/src/templates/opac/css/style.css.tt2 index 6c1dc70..e5c1b0b 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 b8c5ca8..2c0c1f1 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 }; %]