Jump to content

MediaWiki:Common.css: Difference between revisions

From Costa Sano MediaWiki
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 21: Line 21:


/* ============================================================
/* ============================================================
   PAGE FORMS MANDATORY FIELD VISIBILITY (DARK UI)
   Page Forms mandatory field fix Vector 2022 dark mode
   ============================================================ */
   ============================================================ */


.skin-vector-2022 .pfMandatoryField input,
html.skin-theme-clientpref-night .pfMandatoryField {
.skin-vector-2022 .pfMandatoryField textarea,
    --background-color-base: #101418;
.skin-vector-2022 .pfMandatoryField select {
    --background-color-neutral: #27292d;
     background-color: #2b2b2b !important;
     --background-color-inverted: #101418;
     color: #ffffff !important;
     --color-base: #eaecf0;
     border: 2px solid #e5533d !important;
     --color-emphasized: #f8f9fa;
}
}

Revision as of 16:28, 16 February 2026

/* CSS placed here will be applied to all skins */

/* ============================================================
   ANONYMOUS USER INTERFACE CLEANUP
   ============================================================ */

/* Hide the top toolbar for anonymous users in Main namespace */
.ns-0 .vector-page-toolbar {
    display: none !important;
}

/* Hide the right column tools for anonymous users */
.ns-0 .vector-column-end {
    display: none !important;
}

/* Full-width layout for anonymous users */
.ns-0 .mw-content-container {
    max-width: none !important;
}

/* ============================================================
   Page Forms mandatory field fix – Vector 2022 dark mode
   ============================================================ */

html.skin-theme-clientpref-night .pfMandatoryField {
    --background-color-base: #101418;
    --background-color-neutral: #27292d;
    --background-color-inverted: #101418;
    --color-base: #eaecf0;
    --color-emphasized: #f8f9fa;
}