From 9caacc8f6c787932661f4fd8328bddd127ea5161 Mon Sep 17 00:00:00 2001 From: Matteo Pagliazzi Date: Tue, 25 Aug 2020 16:17:12 +0200 Subject: [PATCH] fix(links): restore styles changed in bootstrap@4.5.1 --- website/client/src/assets/scss/typography.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/website/client/src/assets/scss/typography.scss b/website/client/src/assets/scss/typography.scss index 267327b09b..5331e7b121 100644 --- a/website/client/src/assets/scss/typography.scss +++ b/website/client/src/assets/scss/typography.scss @@ -15,6 +15,13 @@ body { color: $gray-200; } +// Restore the default styling for a elements without an href attribute +// that was changed in bootstrap 4.5.1 +a:not([href]), a:not([href]):hover { + color: inherit; + text-decoration: none; +} + a, a:not([href]):not([tabindex]) { cursor: pointer;