MediaWiki:Common.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 55: | Line 55: | ||
.cdx-search-input__input { | .cdx-search-input__input { | ||
padding-left: 10px !important; /* keep text aligned after icon removal */ | padding-left: 10px !important; /* keep text aligned after icon removal */ | ||
} | |||
/* ========================================================= | |||
Lumenward: force logo to a single line (Vector 2022 safe) | |||
========================================================= */ | |||
/* Prevent line breaks in the logo */ | |||
.mw-logo, | |||
.mw-logo a { | |||
white-space: nowrap !important; | |||
display: inline-flex !important; | |||
align-items: center !important; | |||
} | |||
/* Ensure lambda + text stay together */ | |||
.mw-logo a span, | |||
.mw-logo a { | |||
white-space: nowrap !important; | |||
} | |||
/* Optional: tighten spacing if needed */ | |||
.mw-logo a { | |||
gap: 6px; /* adjust or remove if unnecessary */ | |||
} | } | ||
Revision as of 13:01, 14 December 2025
/* =========================================================
Lumenward: force neutral link + logo colors (no layout changes)
========================================================= */
/* Logo text: always black */
.mw-logo a,
.mw-logo a:visited,
.mw-logo a:hover,
.mw-logo a:active {
color: #000 !important;
text-decoration: none !important;
}
/* All links: black (including visited) */
a,
a:visited {
color: #111 !important;
}
/* Hover: underline only (no color shift) */
a:hover,
a:focus {
color: #111 !important;
text-decoration: underline !important;
}
/* Contents / TOC links specifically (these are the ones showing purple) */
.vector-toc a,
.vector-toc a:visited,
#toc a,
#toc a:visited {
color: #111 !important;
}
/* =========================================================
Lumenward: prevent GitHub/Discord from wrapping/truncating
(targets the wrapper you added via Common.js)
========================================================= */
#lumenward-header-links {
white-space: nowrap !important;
flex-wrap: nowrap !important;
}
#lumenward-header-links a {
white-space: nowrap !important;
}
/* =========================================================
Lumenward: remove magnifying-glass icon inside the search input
(Vector 2022 / Codex)
========================================================= */
.cdx-search-input__icon {
display: none !important;
}
.cdx-search-input__input {
padding-left: 10px !important; /* keep text aligned after icon removal */
}
/* =========================================================
Lumenward: force logo to a single line (Vector 2022 safe)
========================================================= */
/* Prevent line breaks in the logo */
.mw-logo,
.mw-logo a {
white-space: nowrap !important;
display: inline-flex !important;
align-items: center !important;
}
/* Ensure lambda + text stay together */
.mw-logo a span,
.mw-logo a {
white-space: nowrap !important;
}
/* Optional: tighten spacing if needed */
.mw-logo a {
gap: 6px; /* adjust or remove if unnecessary */
}