Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Citizen.css: Difference between revisions

MediaWiki interface page
No edit summary
Tag: Manual revert
No edit summary
Line 4: Line 4:
#ca-history {
#ca-history {
     display: none !important;
     display: none !important;
}
/* Fix grid content column so it doesn't bleed under TOC */
.citizen-body {
    min-width: 0 !important;
    overflow-x: auto !important;
}
/* Constrain images within content */
.mw-parser-output img,
.fullImageLink img {
    max-width: 100% !important;
    height: auto !important;
}
/* Make wide images scrollable instead of overflowing */
.fullImageLink {
    overflow-x: auto !important;
    display: block !important;
}
}

Revision as of 21:09, 29 April 2026

/* All CSS here will be loaded for users of the Citizen skin */

/* Hide the History link from page actions */
#ca-history {
    display: none !important;
}


/* Fix grid content column so it doesn't bleed under TOC */
.citizen-body {
    min-width: 0 !important;
    overflow-x: auto !important;
}

/* Constrain images within content */
.mw-parser-output img,
.fullImageLink img {
    max-width: 100% !important;
    height: auto !important;
}

/* Make wide images scrollable instead of overflowing */
.fullImageLink {
    overflow-x: auto !important;
    display: block !important;
}