MediaWiki:Common.css: Difference between revisions
EnWikiAdmin (talk | contribs) No edit summary |
EnWikiAdmin (talk | contribs) No edit summary |
||
(37 intermediate revisions by 2 users not shown) | |||
Line 29: | Line 29: | ||
/* Reset the reference counter for each group */ | /* Reset the reference counter for each group */ | ||
span[rel="mw:referencedBy"] { | span[rel="mw:referencedBy"] { | ||
counter-reset: mw-ref-linkback 0; | /* counter-reset: mw-ref-linkback 0;*/ | ||
} | } | ||
/* Custom styling for each type of reference */ | /* Custom styling for each type of reference */ | ||
Line 139: | Line 115: | ||
vertical-align: top; | vertical-align: top; | ||
} | } | ||
.infobox-label, | .infobox-label, | ||
Line 204: | Line 182: | ||
/* Simplified footnote style */ | /* Simplified footnote style */ | ||
.mw-reflist { | .mw-reflist { | ||
counter-reset: footnote-counter !important; | /*counter-reset: footnote-counter !important;*/ | ||
} | } | ||
.mw-reflist li::before { | .mw-reflist li::before { | ||
counter-increment: footnote-counter !important; | counter-increment: footnote-counter !important; | ||
content: "[" counter(footnote-counter, lower-alpha) "] " !important; | |||
} | |||
body.skin-vector .nomobile { | |||
display: block !important; | |||
} | |||
body.skin-vector .onlymobile { | |||
display: none !important; | |||
} | } | ||
/* Minimum thumb width */ | |||
@media (min-width: 640px) { | |||
figure[typeof~='mw:File/Thumb'], | |||
figure[typeof~='mw:File/Frame'], | |||
.thumbinner { | |||
min-width: 100px; | |||
} | |||
} | |||
@media screen { | @media screen { | ||
/* Put a chequered background behind images, only visible if they have transparency, | |||
* except on main, user, and portal namespaces | |||
*/ | |||
body:not(.ns-0):not(.ns-2):not(.ns-100) .gallerybox .thumb img { | body:not(.ns-0):not(.ns-2):not(.ns-100) .gallerybox .thumb img { | ||
background: #fff url(//upload.wikimedia.org/wikipedia/commons/5/5d/Checker-16x16.png) repeat; | background: #fff url(//upload.wikimedia.org/wikipedia/commons/5/5d/Checker-16x16.png) repeat; | ||
} | } | ||
@media screen { | |||
.nochecker .gallerybox .thumb img { | .nochecker .gallerybox .thumb img { | ||
background-image: none; | background-image: none; | ||
} | } | ||
.flagicon a > img, | @media (max-width: 640px) { | ||
.flagicon noscript > img { | .flagicon a > img, | ||
.flagicon noscript > img { | |||
max-width: none !important; | |||
} | |||
} | } | ||
Line 282: | Line 279: | ||
color: #202122; /* Text color for contrast */ | color: #202122; /* Text color for contrast */ | ||
line-height: 1.5; | line-height: 1.5; | ||
} | |||
/* Hide the entire tags section in Recent Changes */ | |||
.mw-tag-markers { | |||
display: none !important; | |||
} | |||
/*body.page-Main_Page #firstHeading { | |||
display: none !important; | |||
}*/ | |||
body.page-Test_page .mw-body { | |||
grid-template-columns: minmax(0, 1fr) min-content; | |||
} | |||
body.page-Test_page #firstHeading { | |||
display: none !important; | |||
} | |||
body.page-Main_Page .mw-body { | |||
grid-template-columns: minmax(0, 1fr) min-content; | |||
} | |||
body.page-Main_Page #firstHeading { | |||
display: none !important; | |||
} | |||
body.page-Main_Page .mw-body { | |||
grid-template-columns: minmax(0, 1fr) min-content; | |||
} | |||
/* Hide the pre-content heading holder on Main_Page in mobile view */ | |||
@media (max-width: 1120px) { /* Adjust the breakpoint as needed */ | |||
body.page-Main_Page .pre-content.heading-holder { | |||
display: none !important; | |||
} | |||
} | |||
/* Hide ShortDescription on desktop */ | |||
body.skin-vector #siteSub { | |||
display: none; | |||
} | |||
/* Show ShortDescription on mobile */ | |||
@media (max-width: 768px) { | |||
body.skin-vector #siteSub { | |||
display: block; | |||
} | |||
} | } |