Skip to content

Commit

Permalink
Merge pull request #11 from ejunga/table-colors
Browse files Browse the repository at this point in the history
Fix table colors in light mode
  • Loading branch information
mart2070 authored May 30, 2025
2 parents 65b0e83 + 3b7c1c8 commit f8e597b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions tdx-enhanced.js
Original file line number Diff line number Diff line change
Expand Up @@ -2613,9 +2613,12 @@ thead, tbody, tfoot, tr, td, th {
background-color: var(--bg-1); /* can change to 0 for non-striped rows */
}
td.k-table-td,
.k-grid .k-grid-header .k-table-th, .k-table-tbody .k-group-cell {
background-color: var(--bg-0);
td.k-table-td {
background-color: var(--bg-1);
}
tr.k-alt td.k-table-td {
background-color: var(--bg-0)
}
.k-table-th {
Expand All @@ -2626,7 +2629,7 @@ td.k-table-td,
color: var(--txt-4) !important;
}
td.k-table-td, .k-grid .k-grid-header .k-table-th, .k-table-tbody .k-group-cell {
.k-grid .k-grid-header .k-table-th, .k-table-tbody .k-group-cell {
background-color: unset;
}
Expand Down

0 comments on commit f8e597b

Please sign in to comment.