From c9671b5319abbe5933deaddee3ff85d81bb3482c Mon Sep 17 00:00:00 2001 From: Emiel Popelier Date: Fri, 3 Jun 2022 22:41:46 +0200 Subject: [PATCH] Styling Bugfix: 13772 (#13983) --- website/client/src/assets/scss/typography.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/website/client/src/assets/scss/typography.scss b/website/client/src/assets/scss/typography.scss index f4b3306baf..a15f2b7eae 100644 --- a/website/client/src/assets/scss/typography.scss +++ b/website/client/src/assets/scss/typography.scss @@ -18,8 +18,10 @@ body { // 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; + &:not([role=button]) { + color: inherit; + text-decoration: none; + } } a, a:not([href]):not([tabindex]) {