feat: add fill color for svg icons in tables

This commit is contained in:
Sebin Nyshkim 2022-10-11 22:25:54 +02:00
parent c8213ca5a5
commit de35e0e333

View file

@ -103,11 +103,19 @@ table {
td {
background-color: var(--table-cell-background);
color: var(--table-cell-text-color);
svg {
fill: var(--table-cell-text-color);
}
}
tr:hover td {
background-color: var(--table-row-background-hover);
color: var(--table-cell-text-color-hover);
svg {
fill: var(--table-cell-text-color-hover);
}
}
tr:last-child td {