feat: add fill color for svg icons in tables
This commit is contained in:
parent
c8213ca5a5
commit
de35e0e333
1 changed files with 8 additions and 0 deletions
|
@ -103,11 +103,19 @@ table {
|
||||||
td {
|
td {
|
||||||
background-color: var(--table-cell-background);
|
background-color: var(--table-cell-background);
|
||||||
color: var(--table-cell-text-color);
|
color: var(--table-cell-text-color);
|
||||||
|
|
||||||
|
svg {
|
||||||
|
fill: var(--table-cell-text-color);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tr:hover td {
|
tr:hover td {
|
||||||
background-color: var(--table-row-background-hover);
|
background-color: var(--table-row-background-hover);
|
||||||
color: var(--table-cell-text-color-hover);
|
color: var(--table-cell-text-color-hover);
|
||||||
|
|
||||||
|
svg {
|
||||||
|
fill: var(--table-cell-text-color-hover);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tr:last-child td {
|
tr:last-child td {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue