MediaWiki:Vector.css: Difference between revisions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* | /* Force the hamburger menu icon to appear in black */ | ||
.vector-main-menu-landmark | .vector-main-menu-landmark .vector-icon { | ||
color: black !important; | |||
fill: black !important; | |||
stroke: black !important; | |||
} | |||
/* Button hover/focus state also in black */ | |||
.vector-main-menu-landmark .vector-icon:hover, | |||
.vector-main-menu-landmark .vector-icon:focus { | |||
color: black !important; | |||
fill: black !important; | |||
stroke: black !important; | |||
} | } | ||
/* | /* Optional: Remove burgundy background on hover */ | ||
.vector-main-menu-landmark button | .vector-main-menu-landmark button { | ||
background: transparent !important; | |||
border: none !important; | |||
} | } | ||
Revision as of 09:18, 28 June 2025
/* Force the hamburger menu icon to appear in black */
.vector-main-menu-landmark .vector-icon {
color: black !important;
fill: black !important;
stroke: black !important;
}
/* Button hover/focus state also in black */
.vector-main-menu-landmark .vector-icon:hover,
.vector-main-menu-landmark .vector-icon:focus {
color: black !important;
fill: black !important;
stroke: black !important;
}
/* Optional: Remove burgundy background on hover */
.vector-main-menu-landmark button {
background: transparent !important;
border: none !important;
}