fix: correct link colors inside tables in light mode

This commit is contained in:
Sebin Nyshkim 2023-02-04 18:44:48 +01:00
parent 538d09f7be
commit f881c1aac1

View file

@ -144,6 +144,18 @@ table {
background-color: var(--table-row-background-hover);
color: var(--table-cell-text-color-hover);
a {
color: var(--theme-c-text-dark);
box-shadow: inset 0 calc(var(--link-inset-box-shadow) * -0.125) 0 0
var(--table-cell-text-color-hover);
&:hover {
color: var(--theme-c-text-light);
box-shadow: inset 0 calc(var(--link-inset-box-shadow) * -1) 0 0
var(--table-cell-text-color-hover);
}
}
svg {
fill: var(--table-cell-text-color-hover);
}