MediaWiki:Common.css/dark: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/ | /* ===== Dark‐mode overrides for all infoboxes ===== */ | ||
/* | /* In “night” mode (Vector > Appearance > Dark), flip the infobox background */ | ||
. | html.skin-theme-clientpref-night table.infobox, | ||
html.skin-theme-clientpref-night table.infobox-subbox { | |||
background-color: var(--surface-secondary) !important; | |||
} | } | ||
/* | /* In dark mode, invert all text and borders inside infoboxes */ | ||
. | html.skin-theme-clientpref-night table.infobox, | ||
html.skin-theme-clientpref-night table.infobox th, | |||
html.skin-theme-clientpref-night table.infobox td { | |||
color: var(--text-primary) !important; | |||
border-color: var(--border-color-base) !important; | |||
} | } | ||
/* | /* Ensure the infobox title and header keep your brand color */ | ||
html.skin-theme-clientpref-night table.infobox caption.infobox-title, | |||
html.skin-theme-clientpref-night table.infobox .infobox-header { | |||
background-color: #003B6F !important; | |||
color: #ffffff !important; | |||
. | |||
. | |||
} | } | ||
/* | /* If you have a specialized “serverbuild” variant: */ | ||
html.skin-theme-clientpref-night table.infobox.serverbuild { | |||
html.skin-theme-clientpref-night .infobox | |||
background-color: var(--surface-secondary) !important; | background-color: var(--surface-secondary) !important; | ||
} | } | ||
html.skin-theme-clientpref-night table.infobox.serverbuild .infobox-header, | |||
html.skin-theme-clientpref-night table.infobox.serverbuild .infobox-label { | |||
.infobox .infobox- | |||
background-color: #003B6F !important; | background-color: #003B6F !important; | ||
color: # | color: #ffffff !important; | ||
} | } | ||
/* | /* End of dark overrides */ | ||
Revision as of 01:00, 6 May 2025
/* ===== Dark‐mode overrides for all infoboxes ===== */
/* In “night” mode (Vector > Appearance > Dark), flip the infobox background */
html.skin-theme-clientpref-night table.infobox,
html.skin-theme-clientpref-night table.infobox-subbox {
background-color: var(--surface-secondary) !important;
}
/* In dark mode, invert all text and borders inside infoboxes */
html.skin-theme-clientpref-night table.infobox,
html.skin-theme-clientpref-night table.infobox th,
html.skin-theme-clientpref-night table.infobox td {
color: var(--text-primary) !important;
border-color: var(--border-color-base) !important;
}
/* Ensure the infobox title and header keep your brand color */
html.skin-theme-clientpref-night table.infobox caption.infobox-title,
html.skin-theme-clientpref-night table.infobox .infobox-header {
background-color: #003B6F !important;
color: #ffffff !important;
}
/* If you have a specialized “serverbuild” variant: */
html.skin-theme-clientpref-night table.infobox.serverbuild {
background-color: var(--surface-secondary) !important;
}
html.skin-theme-clientpref-night table.infobox.serverbuild .infobox-header,
html.skin-theme-clientpref-night table.infobox.serverbuild .infobox-label {
background-color: #003B6F !important;
color: #ffffff !important;
}
/* End of dark overrides */