MediaWiki:Timeless.css: Difference between revisions

From Ghost Theory Wiki
No edit summary
Tag: Manual revert
No edit summary
Line 277: Line 277:
#mw-navigation a:visited {
#mw-navigation a:visited {
     color: #c0c0c0 !important;
     color: #c0c0c0 !important;
}
/* Force a visible yellow hamburger in Timeless header */
.skin-timeless #mw-header {
    position: relative !important;
}
/* Overlay our own yellow hamburger symbol */
.skin-timeless #mw-header::before {
    content: "≡";
    position: absolute;
    left: 12px;  /* adjust horizontally */
    top: 10px;    /* adjust vertically */
    font-size: 28px;
    color: #ffff00;
    z-index: 9999;
    pointer-events: none; /* clicks go through to Timeless' hidden button */
}
}