Tip of the Day
Make sure you equip your items to get their effects, most don't work from inventory alone.
MediaWiki:Gadget-TableChecklist.css
From Walkscape Walkthrough
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)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* lighttable colors */
:root {
--lighttable-bg-hover: #fff7e3;
--lighttable-bg-active: #ffe0a3;
--lighttable-link-color: #784c0a;
}
/* ACTIVE (click-selected): apply to cells */
table.mw-lighttable tbody tr.highlight-on > td,
table.mw-lighttable tbody tr.highlight-on > th {
background-color: var(--lighttable-bg-active) !important;
}
/* HOVER: only when not already active; apply to cells */
table.mw-lighttable tbody tr:not(.highlight-on):hover > td,
table.mw-lighttable tbody tr:not(.highlight-on):hover > th {
background-color: var(--lighttable-bg-hover) !important;
}
/* Link color inside highlighted rows */
table.mw-lighttable tbody tr.highlight-on a {
color: var(--lighttable-link-color) !important;
}
/* Optional: link color on hover rows too */
table.mw-lighttable tbody tr:not(.highlight-on):hover a {
color: var(--lighttable-link-color) !important;
}
/* Pointer cursor (keep) */
table.mw-lighttable tbody tr { cursor: pointer; }
/* Footer Button Formatting */
.lt-footer-cell { text-align: center; }
.lt-clear-btn { padding: 0.25em 0.6em; }
