From 3e2cbd9773aa91eb20f8d197cf65d14159c48d89 Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Thu, 8 Sep 2022 20:17:23 -1000 Subject: [PATCH] Bug 31542: Home page links correct font-family In koha-tmpl/intranet-tmpl/prog/css/mainpage.css the rule of font-family for big links is not complete : font-family: verdana, arial; It is missing sans-serif in case computer has not those fonts. On my computer I dont have them so I see a serif font. We can remove this rule, inherited rule is serif fonts. Test plan : 1) Use a computer without Arial nor Verdana fonts (basically a Linux) 2) Look at home page big links : Circulation, Patrons ... => Without patch they have serif font => With patch they have sans-serif font Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/css/mainpage.css | 1 - 1 file changed, 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/css/mainpage.css b/koha-tmpl/intranet-tmpl/prog/css/mainpage.css index a2e6cdc9c1..bfd95ce88d 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/mainpage.css +++ b/koha-tmpl/intranet-tmpl/prog/css/mainpage.css @@ -82,7 +82,6 @@ ul.biglinks-list li a.icon_general { border-radius: 6px; text-decoration: none; - font-family: verdana, arial; font-weight: bold; font-size: large; color: #000000; -- 2.30.2