|
Tags: Blanking Manual revert Reverted |
| Line 1: |
Line 1: |
| /* ============================
| |
| 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;
| |
| }
| |