@@ -, +, @@ unstyled select tags - Open the OPAC main page in Firefox. - Click the search type dropdown. The options should be styled using your system's default sans-serif font rather than a serif font. - Check that other areas of the OPAC are still styled with the correct "NotoSans" font. An error with this patch should be obvious when looking at a logged-in user's checkouts. --- koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss | 2 +- koha-tmpl/opac-tmpl/bootstrap/css/src/_fonts.scss | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss +++ a/koha-tmpl/opac-tmpl/bootstrap/css/src/_common.scss @@ -1072,7 +1072,7 @@ button { option, select, textarea { - font-family: "NotoSans"; + font-family: "NotoSans", sans-serif; } } --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/_fonts.scss +++ a/koha-tmpl/opac-tmpl/bootstrap/css/src/_fonts.scss @@ -1,5 +1,5 @@ @font-face { - font-family: "NotoSans, sans-serif"; + font-family: "NotoSans"; font-style: normal; font-weight: 400; src: local("Noto Sans Regular"), @@ -8,7 +8,7 @@ } @font-face { - font-family: "NotoSans, sans-serif"; + font-family: "NotoSans"; font-style: bold; font-weight: 700; src: local("Noto Sans Bold"), @@ -17,7 +17,7 @@ } @font-face { - font-family: "NotoSans, sans-serif"; + font-family: "NotoSans"; font-style: italic; font-weight: 400; src: local("Noto Sans Italic"), @@ -26,7 +26,7 @@ } @font-face { - font-family: "NotoSans, sans-serif"; + font-family: "NotoSans"; font-style: italic; font-weight: 700; src: local("Noto Sans Bold Italic"), --