From ab5c597b28640ff62fab0bb4a78fe4b14c8f36e3 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Thu, 22 Jun 2023 19:36:39 +0000 Subject: [PATCH] Bug 34100: Increase font size in staff interface header To test: 1. Apply patch 2. Regenerate CSS ( https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_interface ) 3. Look at the font size of the header on different pages in Koha making sure it looks good. 4. Look at different and smaller screen sizes making sure the text and icons look right. --- koha-tmpl/intranet-tmpl/prog/css/src/_header.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss b/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss index 8234f8a023..59f94e1741 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss @@ -4,6 +4,7 @@ a.navbar-toggle { #header { .navbar-nav > li > a { + font-size: 16px; overflow: hidden; color: #FFFFFF; text-shadow: unset; @@ -18,7 +19,7 @@ a.navbar-toggle { .dropdown-menu { background-color: rgb(53, 44, 46); - font-size: 13px; + font-size: 16px; li a { color: #FFFFFF; @@ -51,6 +52,7 @@ a.navbar-toggle { } #header_search { + font-size: 16px; background-color: $background-color-primary; border-radius: 0; border: 1px solid $background-color-primary; -- 2.30.2