MediaWiki:Common.css
From PC Gaming Shelter
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.
/* CSS placed here will be applied to all skins */
/* Force tables to use 100% width when this class is used */
.fullwidth {
width: 100% !important;
}
/* Optional: Prevent Game Mode from wrapping onto two lines */
.nowrap {
white-space: nowrap;
}
/* Disable links in table headers but keep sorting */
table.smwtable th.headerSort a,
table.smwtable th a {
pointer-events: none;
cursor: default;
color: black; /* Optional: makes it look like normal text */
text-decoration: none;
}
/* Re-enable pointer events for the sort icon if needed,
but usually clicking the TH cell handles the sort. */
table.smwtable th {
cursor: pointer;
}
