Jump to content

MediaWiki:Vector.css: Difference between revisions

From Transight Wiki
No edit summary
No edit summary
Line 1: Line 1:
/* Force visible black icon for main menu button */
/* Force black color on the sidebar toggle (main menu) icon */
#vector-main-menu-dropdown-label .cdx-button__icon {
#vector-main-menu-dropdown-label svg {
     color: black !important;
     color: black !important;
     fill: black !important;
     fill: black !important;
Line 6: Line 6:
}
}


/* Optional: Remove purple/burgundy hover background */
/* Optional: Fix icon button background to be transparent */
#vector-main-menu-dropdown-label.cdx-button {
#vector-main-menu-dropdown-label {
     background-color: transparent !important;
     background-color: transparent !important;
     border: none !important;
     border: none !important;
}
}


/* Optional: On hover/focus, keep icon black */
/* Optional: On hover and focus, keep icon black */
#vector-main-menu-dropdown-label:hover .cdx-button__icon,
#vector-main-menu-dropdown-label:hover svg,
#vector-main-menu-dropdown-label:focus .cdx-button__icon {
#vector-main-menu-dropdown-label:focus svg {
    color: black !important;
     fill: black !important;
     fill: black !important;
     stroke: black !important;
     stroke: black !important;
}
}

Revision as of 09:25, 28 June 2025

/* Force black color on the sidebar toggle (main menu) icon */
#vector-main-menu-dropdown-label svg {
    color: black !important;
    fill: black !important;
    stroke: black !important;
}

/* Optional: Fix icon button background to be transparent */
#vector-main-menu-dropdown-label {
    background-color: transparent !important;
    border: none !important;
}

/* Optional: On hover and focus, keep icon black */
#vector-main-menu-dropdown-label:hover svg,
#vector-main-menu-dropdown-label:focus svg {
    fill: black !important;
    stroke: black !important;
}