Skip to content

Commit

Permalink
Reformat link color rules to be more readable.
Browse files Browse the repository at this point in the history
  • Loading branch information
kjellr committed Feb 22, 2023
1 parent 7d9f077 commit 00292c9
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions assets/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -732,23 +732,28 @@ details > * {
.underlined-link,
.customer a,
.inline-richtext a {
color: rgba(var(--color-link), var(--alpha-link));
text-underline-offset: 0.3rem;
text-decoration-thickness: 0.1rem;
transition: text-decoration-thickness ease 100ms;
}

.underlined-link,
.customer a {
color: rgba(var(--color-link), var(--alpha-link));
}

.inline-richtext a,
.rte.inline-richtext a {
color: currentColor;
}

.underlined-link:hover,
.customer a:hover,
.inline-richtext a:hover {
color: rgb(var(--color-link));
text-decoration-thickness: 0.2rem;
}

.inline-richtext a,
.rte.inline-richtext a {
color: currentColor;
}

.icon-arrow {
width: 1.5rem;
Expand Down

0 comments on commit 00292c9

Please sign in to comment.