plans: Remove overwrought !important declarations.

These were unnecessary, and interfered with expected link, :hover,
and :active styles.
This commit is contained in:
Karl Stolley 2024-01-05 14:42:04 -06:00 committed by Tim Abbott
parent 2994685399
commit 6d3f0361f5
1 changed files with 0 additions and 4 deletions

View File

@ -97,21 +97,17 @@
.comparison-table a {
color: var(--color-table-link);
text-decoration: underline !important;
text-underline-offset: 4px;
text-decoration-thickness: 1px;
text-decoration-color: var(--color-table-link-decoration);
}
.comparison-table a:hover {
text-decoration: underline !important;
color: var(--color-table-link-hover);
text-decoration-color: var(--color-table-link-decoration-hover);
}
.comparison-table a:active {
text-decoration: underline !important;
color: !important;
text-decoration-color: var(--color-table-link-decoration-active);
}