MediaWiki:Common.css: verschil tussen versies
Naar navigatie springen
Naar zoeken springen
Geen bewerkingssamenvatting |
Geen bewerkingssamenvatting |
||
Regel 39: | Regel 39: | ||
@media print { | @media print { | ||
/* Gallery in print: 1 kolom, | /* Gallery in print: 1 kolom, rand tot rand */ | ||
.gallery { | .gallery { | ||
display: grid !important; | display: grid !important; | ||
grid-template-columns: 1fr !important; | grid-template-columns: 1fr !important; | ||
gap: | gap: 0 !important; /* geen ruimte ertussen */ | ||
} | } | ||
Regel 51: | Regel 51: | ||
width: 100% !important; | width: 100% !important; | ||
max-width: none !important; | max-width: none !important; | ||
margin: 0 !important; | |||
padding: 0 !important; | |||
border: none !important; | border: none !important; | ||
background: none !important; | background: none !important; | ||
Regel 58: | Regel 60: | ||
.gallerybox img, | .gallerybox img, | ||
.gallerybox .thumbimage { | .gallerybox .thumbimage { | ||
width: 100% !important; /* | display: block !important; | ||
width: 100% !important; /* volledige breedte */ | |||
height: auto !important; | |||
max-width: 100% !important; | max-width: 100% !important; | ||
margin: 0 !important; | |||
page-break-inside: avoid; | page-break-inside: avoid; | ||
} | } | ||
} | } |
Versie van 2 okt 2025 07:33
/** CSS die hier wordt geplaatst heeft invloed op alle vormgevingen */ #ca-history { display: none !important;} #ca-talk { display: none !important; } /* Content links uitlijnen naast de sidebar */ #content { max-width: 900px; /* smalle kolom */ margin-left: 11em; /* ruimte voor de sidebar (pas eventueel aan) */ margin-right: auto; /* rechts witruimte */ } /* Forceer logo zichtbaar in Vector 2011 */ #p-logo, #p-logo a.mw-wiki-logo { display:block !important; width: 10em !important; height: 160px !important; background-size: contain !important; background-repeat: no-repeat !important; background-position: left center !important; } /* En voor Vector 2022 */ .vector-header .mw-logo-wordmark img, .vector-header .mw-logo-wordmark { display:block !important; max-width: 160px !important; height: 18px !important; } .vector-header .mw-logo-icon { display:block !important; } /* Maak thumbnails in categoriepagina's groter */ .category-gallery img { width: 350px !important; height: auto !important; } @media print { /* Gallery in print: 1 kolom, rand tot rand */ .gallery { display: grid !important; grid-template-columns: 1fr !important; gap: 0 !important; /* geen ruimte ertussen */ } .gallerybox, .gallerybox .thumb, .gallerybox .thumbinner { width: 100% !important; max-width: none !important; margin: 0 !important; padding: 0 !important; border: none !important; background: none !important; box-shadow: none !important; } .gallerybox img, .gallerybox .thumbimage { display: block !important; width: 100% !important; /* volledige breedte */ height: auto !important; max-width: 100% !important; margin: 0 !important; page-break-inside: avoid; } }