Skip to content

Commit

Permalink
fix distill hyperlink color (alshedivat#1113)
Browse files Browse the repository at this point in the history
Make distill hyperlink color logic consistent with rest of the theme.

fixes alshedivat#1105
  • Loading branch information
rohandebsarkar authored and pecey committed Jan 27, 2023
1 parent 19bcbbf commit 5986224
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions _sass/_distill.scss
Expand Up @@ -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;
Expand Down

0 comments on commit 5986224

Please sign in to comment.