mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-27 16:37:22 +00:00
9 lines
270 B
CSS
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;
|
|
}
|