MediaWiki:Common.css: Difference between revisions

From Ghost Theory Wiki
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 266: Line 266:


/* ============================================
/* ============================================
   TIMELESS — HAMBURGER ICON COLOR FIX
   TIMELESS — FORCE HAMBURGER ICON VISIBLE
  (Overrides background-image SVG)
   ============================================ */
   ============================================ */


/* The button wrapper */
#mw-timeless-drawer-button .mw-ui-icon,
#mw-timeless-drawer-button {
#mw-timeless-drawer-button .mw-ui-icon::before,
     color: #ffea00 !important; /* yellow icon */
#mw-timeless-drawer-button .mw-ui-iconElement-icon,
#mw-timeless-drawer-button .mw-ui-iconElement-icon::before {
     background-image: none !important;
    background-color: transparent !important;
}
}


/* The icon itself (OOUI icon) */
/* Replace the icon with a visible custom one */
#mw-timeless-drawer-button .oo-ui-iconElement-icon {
#mw-timeless-drawer-button::before {
     color: #ffea00 !important;
     content: "≡";
}
    font-size: 26px;
 
    line-height: 1;
/* Some Timeless builds use this span instead */
     color: #ffea00 !important; /* yellow */
#mw-timeless-drawer-button span {
    display: inline-block;
     color: #ffea00 !important;
     padding: 4px 6px;
}
 
/* If the icon is using a mask-image (rare but possible) */
#mw-timeless-drawer-button .oo-ui-iconElement-icon::before {
     background-color: #ffea00 !important;
}
}