From 941989827b12fb54ceefc72dbc26f2727acf2a44 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 8 May 2020 13:42:55 +0000 Subject: [PATCH] Bug 24405: Make OPAC link underlining consistent This patch makes a minor modification to the OPAC CSS so that links are consistently displayed without underlines in their inactive state. This corrects two cases: Links in the facets sidebar and "Check all/none" links shown on search results. To test, apply the patch and rebuild the OPAC CSS (https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client). - In the OPAC, perform a search. - In the search results facets sidebar, confirm that links are not underlined. - At the top of the search results table, confirm that the "Select all" and "Clear all" links are not underlined. Signed-off-by: Katrin Fischer Signed-off-by: Martin Renvoize Signed-off-by: Jonathan Druart --- koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss index 8babc17..442d275 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -2099,7 +2099,6 @@ input { a { font-weight: normal; - text-decoration: underline; } .facet-count { @@ -2208,7 +2207,6 @@ input { .CheckNone { font-weight: normal; margin: 0 .5em; - text-decoration: underline; } .sep { -- 1.7.2.5