From cbba836b697f8bea218f5d6d774b74380b7d1b7c Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 22 Nov 2022 12:10:20 +0000 Subject: [PATCH] Bug 32320: Remove text-shadow from header menu links This patch unsets the text-shadow style on links in the header menu. This makes the links look a little crisper. The style is inherited from Bootstrap's defaults and is incorrect for our design. To test, apply the patch and rebuild the staff interface CSS. View any page in the staff interface to confirm that header menu links look correct. Signed-off-by: Lucas Gass --- koha-tmpl/intranet-tmpl/prog/css/src/_header.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss b/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss index e912ab659e5..3797b5b6c7d 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss @@ -6,6 +6,7 @@ a.navbar-toggle { .navbar-nav > li > a { overflow: hidden; color: #FFFFFF; + text-shadow: unset; &:hover, &:active { border-bottom: 1px #FFFFFF; -- 2.30.2