From: Bill Erickson Date: Thu, 12 Jan 2023 15:55:44 +0000 (-0500) Subject: LP2000482 Bootstrap 5: Avoid default href links X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e5ec2b57f818cef7a2bdec46964a8b7672824394;p=working%2FEvergreen.git LP2000482 Bootstrap 5: Avoid default href links Signed-off-by: Bill Erickson Signed-off-by: Stephanie Leary --- diff --git a/Open-ILS/src/eg2/src/styles.css b/Open-ILS/src/eg2/src/styles.css index c3244384dd..3f48cb92cf 100644 --- a/Open-ILS/src/eg2/src/styles.css +++ b/Open-ILS/src/eg2/src/styles.css @@ -415,4 +415,12 @@ input.small { badge.text-bg-dark { color: #000; background: #adb5bd; -} \ No newline at end of file +} + +/* + * https://getbootstrap.com/docs/5.0/migration/#content-reboot-etc + * Links are underlined by default. + */ +a { + text-decoration: none; +}