From 0c2a97e60f0f3a2c162d905749600f619a20b978 Mon Sep 17 00:00:00 2001 From: Spectralitree <72747870+Spectralitree@users.noreply.github.com> Date: Thu, 30 Dec 2021 08:22:13 +0100 Subject: [PATCH] feat: different description link colors based on style --- styles/dark.scss | 4 ++++ styles/generic.scss | 6 ++++-- styles/light.scss | 4 ++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/styles/dark.scss b/styles/dark.scss index 28ce844e..770a1bc1 100644 --- a/styles/dark.scss +++ b/styles/dark.scss @@ -8,4 +8,8 @@ .footer.bg-light { background-color: var(--bs-dark) !important; +} + +.description a { + color: #159bd4 !important; } \ No newline at end of file diff --git a/styles/generic.scss b/styles/generic.scss index 2dd5652c..2f006dac 100644 --- a/styles/generic.scss +++ b/styles/generic.scss @@ -65,8 +65,6 @@ code { .description a { text-decoration: none; - color: #457ead !important; - font-weight: bold; } // bootstrap elements @@ -92,6 +90,10 @@ code { display: none; } +.accordion-collapse { + overflow: visible !important; +} + .pagination { justify-content: center !important; } diff --git a/styles/light.scss b/styles/light.scss index 6c45c038..bed9db16 100644 --- a/styles/light.scss +++ b/styles/light.scss @@ -3,4 +3,8 @@ .footer.bg-light { background-color: var(--bs-light) !important; +} + +.description a { + color: var(--bs-primary) !important; } \ No newline at end of file