Jump to content

Template:Infobox government agency/styles.css: Difference between revisions

From the Vrienden Universe, a fictional wiki
Created page with "Dark mode fix for Infobox government agency: @media (prefers-color-scheme: dark) { Section headers like "Agency overview": .infobox caption, .infobox .infobox-header, .infobox th.infobox-header, .infobox .infobox-section-header { background-color: #1B223D !important; same dark blue: color: #e0f0ff !important; border-color: #3a506b !important; } Specifically target the white overview row: .inf..."
 
No edit summary
Line 1: Line 1:
/* Dark mode fix for Infobox government agency */
/* Infobox government agency — Dark mode override */
/* Uses MediaWiki client preference dark theme */


@media (prefers-color-scheme: dark) {
html.skin-theme-clientpref-dark .infobox {
    background-color: #1e1e1e !important;
    color: #d0d0d0 !important;
    border-color: #444 !important;
}


    /* Section headers like "Agency overview" */
/* Main title (e.g., "Bau-Einsatz") */
    .infobox caption,
html.skin-theme-clientpref-dark .infobox caption {
    .infobox .infobox-header,
    background-color: #1B223D !important;
    .infobox th.infobox-header,
    color: #e0f0ff !important;
    .infobox .infobox-section-header {
    border-color: #3a506b !important;
        background-color: #1B223D !important; /* same dark blue */
}
        color: #e0f0ff !important;
        border-color: #3a506b !important;
    }


    /* Specifically target the white overview row */
/* Section headers like "Agency overview" */
    .infobox th[colspan="2"] {
html.skin-theme-clientpref-dark .infobox th.infobox-header,
        background-color: #1B223D !important;
html.skin-theme-clientpref-dark .infobox .infobox-header,
        color: #e0f0ff !important;
html.skin-theme-clientpref-dark .infobox .infobox-section-header,
        border-color: #3a506b !important;
html.skin-theme-clientpref-dark .infobox th[colspan="2"] {
     }
    background-color: #1B223D !important;
    color: #e0f0ff !important;
    border-color: #3a506b !important;
}
 
/* Label cells (left column) */
html.skin-theme-clientpref-dark .infobox th {
    background-color: #2a2a2a !important;
    color: #e0e0e0 !important;
     border-color: #444 !important;
}
 
/* Data cells (right column) */
html.skin-theme-clientpref-dark .infobox td {
    background-color: #1e1e1e !important;
    color: #d0d0d0 !important;
    border-color: #444 !important;
}
 
/* Links inside infobox */
html.skin-theme-clientpref-dark .infobox a {
    color: #8ec5ff !important;
}
}

Revision as of 07:42, 1 March 2026

/* Infobox government agency — Dark mode override */
/* Uses MediaWiki client preference dark theme */

html.skin-theme-clientpref-dark .infobox {
    background-color: #1e1e1e !important;
    color: #d0d0d0 !important;
    border-color: #444 !important;
}

/* Main title (e.g., "Bau-Einsatz") */
html.skin-theme-clientpref-dark .infobox caption {
    background-color: #1B223D !important;
    color: #e0f0ff !important;
    border-color: #3a506b !important;
}

/* Section headers like "Agency overview" */
html.skin-theme-clientpref-dark .infobox th.infobox-header,
html.skin-theme-clientpref-dark .infobox .infobox-header,
html.skin-theme-clientpref-dark .infobox .infobox-section-header,
html.skin-theme-clientpref-dark .infobox th[colspan="2"] {
    background-color: #1B223D !important;
    color: #e0f0ff !important;
    border-color: #3a506b !important;
}

/* Label cells (left column) */
html.skin-theme-clientpref-dark .infobox th {
    background-color: #2a2a2a !important;
    color: #e0e0e0 !important;
    border-color: #444 !important;
}

/* Data cells (right column) */
html.skin-theme-clientpref-dark .infobox td {
    background-color: #1e1e1e !important;
    color: #d0d0d0 !important;
    border-color: #444 !important;
}

/* Links inside infobox */
html.skin-theme-clientpref-dark .infobox a {
    color: #8ec5ff !important;
}