Basculer le menu
Changer de menu des préférences
Basculer le menu personnel
Non connecté(e)
Votre adresse IP sera visible au public si vous faites des modifications.

« MediaWiki:Citizen.css » : différence entre les versions

Page de l’interface de MediaWiki
Aucun résumé des modifications
Aucun résumé des modifications
Ligne 9 : Ligne 9 :
#siteSub{ display: none !important; }
#siteSub{ display: none !important; }


/* Move page header to the bottom for main page */
/* Move page header to the bottom for portal pages */
.page-Exonar .citizen-body-container {
.page-Exonar.action-view {
     grid-template-areas:
    /* Disable sticky header */
         "content"
    #citizen-page-header-sticky-sentinel {
         "header"
        display: none;
         "afterHeader"
    }
         "footer";
     #content {
        display: flex;
        flex-direction: column;
    }
    .citizen-page-header {
        order: 9999;
 
         &-inner {
            justify-content: center;
 
            @media ( min-width: @min-width-breakpoint-desktop ) {
                border-top: var( --border-width-base ) solid var( --border-color-base );
            }
         }
    }
 
    #contentSub,
    .citizen-page-heading {
         display: none;
    }
 
    .citizen-body-container {
         margin-top: var( --space-xl );
    }
}
}

Version du 1 avril 2025 à 20:26

/* La totalité du CSS placé ici s’appliquera aux utilisateurs de l’habillage Citizen. */
/* Move page header to the bottom for main pages */

h2 {
    border-bottom: 1px solid var(--border-color-base );
    padding-bottom: 0.25em;
}

#siteSub{ display: none !important; }

/* Move page header to the bottom for portal pages */
.page-Exonar.action-view {
    /* Disable sticky header */
    #citizen-page-header-sticky-sentinel {
        display: none;
    }
    #content {
        display: flex;
        flex-direction: column;
    }
    .citizen-page-header {
        order: 9999;

        &-inner {
            justify-content: center;

            @media ( min-width: @min-width-breakpoint-desktop ) {
                border-top: var( --border-width-base ) solid var( --border-color-base );
            }
        }
    }

    #contentSub,
    .citizen-page-heading {
        display: none;
    }

    .citizen-body-container {
        margin-top: var( --space-xl );
    }
}