fix distill hyperlink color (#1113)

Make distill hyperlink color logic consistent with rest of the theme.

fixes #1105
This commit is contained in:
Rohan Deb Sarkar 2023-01-15 09:26:38 +05:30 committed by GitHub
parent cfdde2426d
commit aca95e563b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,14 +19,17 @@ d-byline a, d-article d-byline a {
d-article { d-article {
border-top-color: var(--global-divider-color) !important; 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; 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; border-bottom-color: var(--global-divider-color) !important;
} }
a:hover { a {
border-bottom-color: var(--global-hover-color) !important; color: var(--global-theme-color) !important;
&:hover {
color: var(--global-theme-color) !important;
}
} }
b i { b i {
display: inline; display: inline;