Files
PhpSpreadsheet/docs/extra/tablestripes.css
T
2026-08-26 22:56:33 -07:00

9 lines
270 B
CSS

/* Light mode alternating rows */
[data-md-color-scheme="default"] table tbody tr:nth-child(2n) {
background-color: #f3f6f6;
}
/* Dark mode (slate scheme) alternating rows */
[data-md-color-scheme="slate"] table tbody tr:nth-child(2n) {
background-color: #404040;
}