MediaWiki:CustomDatatable.css
From The Seven Sages of Rome
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
table.dataTable tbody tr {
background-color: red; /* Optional row background */
transition: background-color 0.3s ease;
}
table.dataTable tbody tr:hover {
background-color: #f5f5f5; /* Light grey on hover */
}
table.dataTable tbody tr:nth-child(even) {
background-color: #fafafa; /* Zebra striping */
}
table.dataTable tbody tr:nth-child(even):hover {
background-color: #f0f0f0; /* Slightly darker on hover for even rows */
}