diff --git a/src/styles/_dark.scss b/src/styles/_dark.scss index a73eec929bc..b129eb02271 100644 --- a/src/styles/_dark.scss +++ b/src/styles/_dark.scss @@ -6,13 +6,10 @@ html.dark { body { $blue: $blue; color: darken($light, 10%) !important; - a { + a:not(.btn) { color: lighten($blue, 10%); } - a.btn { - color: $light !important; - } - a:hover { + a:not(.btn):hover { color: lighten($blue, 35%); } .active:hover { diff --git a/src/styles/_overrides.scss b/src/styles/_overrides.scss index e85fb9db616..e4ff728e717 100644 --- a/src/styles/_overrides.scss +++ b/src/styles/_overrides.scss @@ -68,7 +68,7 @@ a code { .version-dropdown.dropdown-menu, [aria-labelledby="page-actions-button"] { border-radius: $border-radius !important; - border-top-color: #4d89b1 !important; + border-top-color: $blue !important; } .dropdown-item.active, diff --git a/src/styles/_theme.scss b/src/styles/_theme.scss index e333a7505e2..653ed948e67 100644 --- a/src/styles/_theme.scss +++ b/src/styles/_theme.scss @@ -47,7 +47,7 @@ $h6-font-size: $font-size-base * 0.8; $text-muted: $gray-500; $code-color: #457a00; $link-decoration: none; -$link-hover-decoration: none; +$link-hover-decoration: underline; // forms $input-btn-padding-y: 0.5rem;