MediaWiki:Common.css
From Ghost Theory Wiki
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.
/* ============================
TIMELESS — FIX HAMBURGER ICON
============================ */
/* Remove Timeless SVG mask so it doesn't hide the icon */
#mw-header-hamburger .mw-ui-icon,
#mw-header-hamburger .mw-ui-icon::before {
mask-image: none !important;
background-image: none !important;
}
/* Replace with a visible yellow ≡ icon */
#mw-header-hamburger::before {
content: "≡";
font-size: 26px;
line-height: 1;
color: #ffea00 !important;
display: inline-block;
padding: 4px 6px;
}
/* Ensure the button itself is visible */
#mw-header-hamburger {
background: #000 !important;
color: #ffea00 !important;
border: none !important;
}
/* Fix the overlay so the drawer actually opens */
#mw-timeless-drawer-overlay,
#mw-timeless-overlay {
background: rgba(0,0,0,0.85) !important;
}
