From 5986224990117ddd9e839592e2aadd4b3d8ceb10 Mon Sep 17 00:00:00 2001 From: Rohan Deb Sarkar Date: Sun, 15 Jan 2023 09:26:38 +0530 Subject: [PATCH] fix distill hyperlink color (#1113) Make distill hyperlink color logic consistent with rest of the theme. fixes #1105 --- _sass/_distill.scss | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/_sass/_distill.scss b/_sass/_distill.scss index d83fafd4263a..47837e7a8f7f 100644 --- a/_sass/_distill.scss +++ b/_sass/_distill.scss @@ -19,14 +19,17 @@ d-byline a, d-article d-byline a { d-article { border-top-color: var(--global-divider-color) !important; - a, p, h1, h2, h3, h4, h5, h6, li, table { + p, h1, h2, h3, h4, h5, h6, li, table { color: var(--global-text-color) !important; } - a, h1, h2, hr, table, table th, table td { + h1, h2, hr, table, table th, table td { border-bottom-color: var(--global-divider-color) !important; } - a:hover { - border-bottom-color: var(--global-hover-color) !important; + a { + color: var(--global-theme-color) !important; + &:hover { + color: var(--global-theme-color) !important; + } } b i { display: inline;