MediaWiki:Common.css: Difference between revisions

No edit summary
Tag: Manual revert
No edit summary
 
(11 intermediate revisions by the same user not shown)
Line 32: Line 32:
}
}


/* Set up the counter style for various reference groups */
.mw-ref > a[data-mw-group=lower-alpha]::after {
content: '[' counter(mw-ref-linkback, lower-alpha) ']';
}
.mw-ref > a[style~="mw-Ref"][data-mw-group=upper-alpha]::after {
content: '[' counter(mw-Ref, upper-alpha) ']';
}
.mw-ref > a[style~="mw-Ref"][data-mw-group=decimal]::after {
content: '[' counter(mw-Ref, decimal) ']';
}
.mw-ref > a[style~="mw-Ref"][data-mw-group=lower-roman]::after {
content: '[' counter(mw-Ref, lower-roman) ']';
}
.mw-ref > a[style~="mw-Ref"][data-mw-group=upper-roman]::after {
content: '[' counter(mw-Ref, upper-roman) ']';
}
.mw-ref > a[style~="mw-Ref"][data-mw-group=lower-greek]::after {
content: '[' counter(mw-Ref, lower-greek) ']';
}


/* 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 209: Line 187:
.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;*/
   content: "[" counter(footnote-counter, lower-alpha) "] " !important;
}
}


Line 312: Line 290:




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 */
/* Hide the pre-content heading holder on Main_Page in mobile view */
Line 319: Line 318:
     }
     }


}
/* Hide ShortDescription on desktop */
body.skin-vector #siteSub {
    display: none;
}
/* Show ShortDescription on mobile */
@media (max-width: 768px) {
    body.skin-vector #siteSub {
        display: block;
    }
}
}