MediaWiki:Common.css: Difference between revisions

From Ghost Theory Wiki
No edit summary
Tag: Reverted
mNo edit summary
 
(12 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* ============================
#ca-talk { display: none !important; }
  TIMELESS — FIX HAMBURGER ICON
  ============================ */


/* Remove Timeless SVG mask so it doesn't hide the icon */
/* Hide mobile version on desktop */
#mw-header-hamburger .mw-ui-icon,
.episode-image-mobile {
#mw-header-hamburger .mw-ui-icon::before {
     display: none;
     mask-image: none !important;
    background-image: none !important;
}
}


/* Replace with a visible yellow ≡ icon */
/* Hide desktop version on small screens */
#mw-header-hamburger::before {
@media screen and (max-width: 600px) {
     content: "≡";
     .episode-image-desktop {
    font-size: 26px;
        display: none;
    line-height: 1;
     }
    color: #ffea00 !important;
    .episode-image-mobile {
    display: inline-block;
        display: 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;
}
}

Latest revision as of 15:11, 17 December 2025

#ca-talk { display: none !important; }

/* Hide mobile version on desktop */
.episode-image-mobile {
    display: none;
}

/* Hide desktop version on small screens */
@media screen and (max-width: 600px) {
    .episode-image-desktop {
        display: none;
    }
    .episode-image-mobile {
        display: block;
    }
}