From aa3e94c8abbe3f34a247ac55c557f0dec22f0e71 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 5 Jul 2023 14:47:41 +0200 Subject: [PATCH] Bug 34129: Fix plus and minus icon --- .../opac-tmpl/bootstrap/css/src/_common.scss | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss b/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss index a25d513c835..6888ba9a298 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss @@ -559,7 +559,7 @@ table { border-radius: .25rem; box-shadow: none; color: #000; - content: "\f067"; + content: "\2b"; font-family: FontAwesome; font-size: 1em; font-style: normal; @@ -576,7 +576,20 @@ table { th { &.dtr-control { &::before { - content: "\f068"; + background-color: #E1E1E1; + background-image: linear-gradient(180deg, #EBEBEB, #E1E1E1); + border: 1px solid #B3B3B3; + border-radius: .25rem; + box-shadow: none; + color: #000; + content: "\2d"; + font-family: FontAwesome; + font-size: 1em; + font-style: normal; + height: 1em; + left: 35%; + padding: .5rem; + width: 1em; } } } -- 2.25.1