Module:Citation/CS1/styles.css: Difference between revisions
sync from sandbox;
(sync from sandbox;) |
(sync from sandbox;) |
||
Line 1: | Line 1: | ||
/* | /* Protection icon | ||
the following line controls the page-protection icon in the upper right corner | the following line controls the page-protection icon in the upper right corner | ||
it must remain within this comment | it must remain within this comment | ||
Line 7: | Line 6: | ||
*/ | */ | ||
/* Overrides | |||
/* | Some wikis do not override user agent default styles for HTML <cite> and <q>, | ||
unlike en.wp. On en.wp, keep these the same as [[MediaWiki:Common.css]] | |||
*/ | */ | ||
cite.citation { | cite.citation { | ||
font-style: inherit; /* Remove italics for <cite> */ | |||
font-style: inherit; | |||
} | } | ||
.citation q { | .citation q { | ||
quotes: '"' '"' "'" "'"; /* Straight quote marks for <q> */ | |||
quotes: '"' '"' "'" "'"; | |||
} | } | ||
Line 36: | Line 25: | ||
the .id-lock-... selectors are for use by non-citation templates like {{Catalog lookup link}} | the .id-lock-... selectors are for use by non-citation templates like {{Catalog lookup link}} | ||
*/ | */ | ||
.id-lock-free a, | .id-lock-free a, | ||
.citation .cs1-lock-free a { | .citation .cs1-lock-free a { | ||
background | background: linear-gradient(transparent, transparent), | ||
url(//upload.wikimedia.org/wikipedia/commons/6/65/Lock-green.svg) | |||
right 0.1em center/9px no-repeat; | |||
} | } | ||
Line 50: | Line 36: | ||
.citation .cs1-lock-limited a, | .citation .cs1-lock-limited a, | ||
.citation .cs1-lock-registration a { | .citation .cs1-lock-registration a { | ||
background | background: linear-gradient(transparent, transparent), | ||
url(//upload.wikimedia.org/wikipedia/commons/d/d6/Lock-gray-alt-2.svg) | |||
right 0.1em center/9px no-repeat; | |||
} | } | ||
.id-lock-subscription a, | .id-lock-subscription a, | ||
.citation .cs1-lock-subscription a { | .citation .cs1-lock-subscription a { | ||
background | background: linear-gradient(transparent, transparent), | ||
url(//upload.wikimedia.org/wikipedia/commons/a/aa/Lock-red-alt-2.svg) | |||
right 0.1em center/9px no-repeat; | |||
} | } | ||
Line 77: | Line 59: | ||
} | } | ||
/* Wikisource | /* Wikisource | ||
Wikisource icon when |chapter= or |title= is wikilinked to Wikisource | |||
icon when |chapter= or |title= is wikilinked to | as in cite wikisource | ||
*/ | */ | ||
.cs1-ws-icon a { | .cs1-ws-icon a { | ||
background | background: linear-gradient(transparent, transparent), | ||
url(//upload.wikimedia.org/wikipedia/commons/4/4c/Wikisource-logo.svg) | |||
right 0.1em center/12px no-repeat; | |||
} | } | ||
Line 92: | Line 72: | ||
code.cs1-code { | code.cs1-code { | ||
/* <code>...</code> style override: mediawiki's css definition is specified here: | /* <code>...</code> style override: mediawiki's css definition is specified here: | ||
https://git.wikimedia.org/blob/mediawiki%2Fcore.git/69cd73811f7aadd093050dbf20ed70ef0b42a713/skins%2Fcommon%2FcommonElements.css#L199 | https://git.wikimedia.org/blob/mediawiki%2Fcore.git/ | ||
69cd73811f7aadd093050dbf20ed70ef0b42a713/skins%2Fcommon%2FcommonElements.css#L199 | |||
*/ | */ | ||
color: inherit; | color: inherit; | ||
background: inherit; | background: inherit; | ||
border: | border: none; /* this maybe can be inherit. MDN says yes, code editor says no */ | ||
padding: inherit; | padding: inherit; | ||
} | } |