Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 22x | // SPDX-License-Identifier: MIT
// Table CSS overrides - striping, borders, headers
/**
* Generate table-related CSS overrides.
* Includes striping, borders, and header styles.
*/
export function cssTableOverrides(): string {
return `/* Tables */
.table.is-striped tbody tr:nth-child(even) {
background-color: var(--theme-table-stripe, var(--theme-surface-2, inherit));
}
.box,
.card,
.dropdown-content,
.menu,
.message,
.panel,
.table,
.table td,
.table th,
.modal-card {
border-color: var(--theme-table-border, var(--bulma-border, currentColor));
}
.table thead th {
background-color: var(--theme-table-thead-bg, var(--theme-surface-2, inherit));
}`;
}
|