MediaWiki:Common.css: Difference between revisions
Appearance
Created page with "→Prevent the logo link from turning purple: #p-logo a:visited, .mw-wiki-logo:visited { color: inherit !important; } →For Vector 2022 logo text and link: .vector-header-container .mw-logo a:visited { color: inherit !important; }" |
No edit summary |
||
| Line 10: | Line 10: | ||
.vector-header-container .mw-logo a:visited { | .vector-header-container .mw-logo a:visited { | ||
color: inherit !important; | color: inherit !important; | ||
} | |||
/* Optional cleanup for logo text layout */ | |||
.mw-logo a { | |||
white-space: normal !important; | |||
line-height: 1.2em !important; | |||
font-style: normal !important; | |||
} | } | ||
Latest revision as of 18:50, 19 June 2025
/* Prevent the logo link from turning purple */
#p-logo a:visited,
.mw-wiki-logo:visited {
color: inherit !important;
}
/* For Vector 2022 logo text and link */
.vector-header-container .mw-logo a:visited {
color: inherit !important;
}
/* Optional cleanup for logo text layout */
.mw-logo a {
white-space: normal !important;
line-height: 1.2em !important;
font-style: normal !important;
}