From 042a58006cc9d037990821a0bb4b2ac7c19b86e4 Mon Sep 17 00:00:00 2001 From: Daniel Wilkowski Date: Wed, 16 Oct 2024 16:19:12 +0200 Subject: [PATCH] Remove {font-weight:bold} from nav-pills on active --- resources/sass/core/_navs.scss | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/resources/sass/core/_navs.scss b/resources/sass/core/_navs.scss index 1639daa66..d6c312c0e 100644 --- a/resources/sass/core/_navs.scss +++ b/resources/sass/core/_navs.scss @@ -1,5 +1,7 @@ @charset "UTF-8"; +@import "bootstrap/scss/mixins/breakpoints"; + .nav { > li > a:focus { background-color: transparent; @@ -75,9 +77,14 @@ .nav-pills { border-bottom: 1px solid $card-border-color; + .nav-link { + color: #777777; + } + .nav-link.active { + color: black; + &, &:hover, &:focus, &:active { - font-weight: bold; border-bottom: 2px solid $alt-link-hover-color; margin-bottom: -1px; }