Bugzilla – Attachment 115975 Details for
Bug 27566
CSS rule not applying to HTML select / option - displays with serif font ignoring rules
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 27566: Add generic font family to prevent unstyled select tags
Bug-27566-Add-generic-font-family-to-prevent-unsty.patch (text/plain), 1.90 KB, created by
Owen Leonard
on 2021-01-28 16:43:53 UTC
(
hide
)
Description:
Bug 27566: Add generic font family to prevent unstyled select tags
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2021-01-28 16:43:53 UTC
Size:
1.90 KB
patch
obsolete
>From ce050d4d8eb128fbaf5ff2ca69649a833912fca1 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Thu, 28 Jan 2021 16:37:13 +0000 >Subject: [PATCH] Bug 27566: Add generic font family to prevent unstyled select > tags > >This patch adds a default font family "sans-serif" to the OPAC CSS as a >workaround for this Firefox bug: > >font-family isn't honored in `<option>` element within `<select>` >dropdown >https://bugzilla.mozilla.org/show_bug.cgi?id=1536148 > >To test, apply the patch and rebuild the OPAC CSS >(https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client). > > - 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. >--- > koha-tmpl/opac-tmpl/bootstrap/css/src/_fonts.scss | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/src/_fonts.scss b/koha-tmpl/opac-tmpl/bootstrap/css/src/_fonts.scss >index b0ebcd45fa..85d77fb352 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/css/src/_fonts.scss >+++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/_fonts.scss >@@ -1,5 +1,5 @@ > @font-face { >- font-family: "NotoSans"; >+ font-family: "NotoSans, sans-serif"; > font-style: normal; > font-weight: 400; > src: local("Noto Sans Regular"), >@@ -8,7 +8,7 @@ > } > > @font-face { >- font-family: "NotoSans"; >+ font-family: "NotoSans, sans-serif"; > font-style: bold; > font-weight: 700; > src: local("Noto Sans Bold"), >@@ -17,7 +17,7 @@ > } > > @font-face { >- font-family: "NotoSans"; >+ font-family: "NotoSans, sans-serif"; > font-style: italic; > font-weight: 400; > src: local("Noto Sans Italic"), >@@ -26,7 +26,7 @@ > } > > @font-face { >- font-family: "NotoSans"; >+ font-family: "NotoSans, sans-serif"; > font-style: italic; > font-weight: 700; > src: local("Noto Sans Bold Italic"), >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 27566
:
115975
|
118369
|
118568
|
118591
|
119322
|
119560
|
120031