Jump to content

MediaWiki:Vector.css: Difference between revisions

From Wiki
No edit summary
Tags: Manual revert Reverted
No edit summary
 
(17 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* All CSS here will be loaded for users of the Vector skin */
/* Force lining numbers in headers (for fonts like Georgia) */
h1,
h2,
.firstHeading {
    -webkit-font-feature-settings: "lnum";
    font-feature-settings: "lnum";
}


/* Bring the text to 14px */
/* Consistent size for sub/sup */
#bodyContent {
.mw-body sub,
  font-size: 0.885em;
.mw-body sup,
span.reference /* for Parsoid */ {
    font-size: 80%;
}
 
 
/* Hide confusing "Discussion" tab on [[Project:Support_desk]],
* For sanity, only do this if [[Project_talk:Support_desk]] is a
* redirect (which goes back to [[Project:Support_desk]]).
* If that is changed for some reason, it automatically comes back.
*/
.page-Project_Support_desk #ca-talk a.mw-redirect {
display: none;
}
}

Latest revision as of 17:11, 30 August 2022

/* Force lining numbers in headers (for fonts like Georgia) */
h1,
h2,
.firstHeading {
    -webkit-font-feature-settings: "lnum";
    font-feature-settings: "lnum";
}

/* Consistent size for sub/sup */
.mw-body sub,
.mw-body sup,
span.reference /* for Parsoid */ {
    font-size: 80%;
}


/* Hide confusing "Discussion" tab on [[Project:Support_desk]],
 * For sanity, only do this if [[Project_talk:Support_desk]] is a
 * redirect (which goes back to [[Project:Support_desk]]).
 * If that is changed for some reason, it automatically comes back.
 */
.page-Project_Support_desk #ca-talk a.mw-redirect {
	display: none;
}