
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Evergreen ILS". The branch, rel_3_14 has been updated via c5bd01a8be884464f8943f348dfd728819264303 (commit) from 223d1db84549c2fe3ce538fc9eeacf821211bbf6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit c5bd01a8be884464f8943f348dfd728819264303 Author: Stephanie Leary <stephanie.leary@equinoxoli.org> Date: Tue Apr 29 22:03:02 2025 +0000 LP2109643 Browser default font size for self-checkout Sets the font size for self checkout in rems rather than pixels, so that font sizes always respect the browser's default setting. Adds a default line height to avoid colliding lines when text wraps. Release-note: Respect browser default font size for self checkout Signed-off-by: Stephanie Leary <stephanie.leary@equinoxoli.org> Signed-off-by: Jane Sandberg <js7389@princeton.edu> Signed-off-by: Michele Morgan <mmorgan@noblenet.org> Signed-off-by: Ruth Frasur Davis <redavis4974@gmail.com> Signed-off-by: Dan Guarracino <dguarracino@owwl.org> diff --git a/Open-ILS/src/eg2/src/app/staff/scko/scko.component.css b/Open-ILS/src/eg2/src/app/staff/scko/scko.component.css index dbb1806abb..48782045fb 100644 --- a/Open-ILS/src/eg2/src/app/staff/scko/scko.component.css +++ b/Open-ILS/src/eg2/src/app/staff/scko/scko.component.css @@ -1,6 +1,7 @@ body { font-family: Arial, Verdana; - font-size: 13px; + font-size: 1rem; + line-height: 1.6; } a { @@ -9,6 +10,7 @@ a { h1 { font-size: 1.5rem; + line-height: 2; color: #00593d; display: inline; } @@ -39,14 +41,14 @@ h2 { } #scko-scan-input-text { - font-size: 16px; + font-size: 1rem; background: none repeat scroll 0 0 #252525; color: white; padding: 10px; } #scko-welcome-message { - font-size: 16px; + font-size: 1rem; background: none repeat scroll 0 0 #252525; color: white; padding: 10px; @@ -72,7 +74,7 @@ h2 { } #scko-circ-info-div fieldset legend { - font-size: 13px; + font-size: 0.825rem; color: #00593d; background-color: white; font-weight: bold; @@ -194,7 +196,7 @@ label.btn-check-label.active:before { } .scko-status-row { - font-size: 20px; + font-size: 1.4rem; } input[type="checkbox"] { diff --git a/Open-ILS/web/css/skin/default/selfcheck.css b/Open-ILS/web/css/skin/default/selfcheck.css index 37b8dff62a..c4ef670b34 100644 --- a/Open-ILS/web/css/skin/default/selfcheck.css +++ b/Open-ILS/web/css/skin/default/selfcheck.css @@ -1,7 +1,8 @@ body { font-family: Arial, Verdana; - font-size: 13px; + font-size: 1rem; + line-height: 1.6; } #oils-selfck-top-div { @@ -34,7 +35,7 @@ body { } #oils-selfck-scan-text { - font-size: 16px; + font-size: 1rem; background: none repeat scroll 0 0 #252525; color: white; padding: 10px; @@ -213,7 +214,7 @@ A { #dijit_form_TextBox_0 { padding: 5px; height: 28px; - font-size: 16px; + font-size: 1rem; box-shadow: inset 0 0 8px #ADADB2; border-radius: 12px; } ----------------------------------------------------------------------- Summary of changes: Open-ILS/src/eg2/src/app/staff/scko/scko.component.css | 12 +++++++----- Open-ILS/web/css/skin/default/selfcheck.css | 7 ++++--- 2 files changed, 11 insertions(+), 8 deletions(-) hooks/post-receive -- Evergreen ILS