MediaWiki:Common.css: Difference between revisions

From Montepedia
Created page with "CSS placed here will be applied to all skins: Rresizing External Images: .externalimage-holder { position: relative; } .externalimage-holder img { width: 100%; height: auto; }"
 
ABC wiki: show arrow marker on Wikipedia fallback links
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
 
/* Rresizing External Images */
/* ABC Wiki: missing imported article links that open English Wikipedia */
.externalimage-holder {
.abc-wikipedia-missing-link {
    position: relative;
border-bottom: 1px dotted currentColor;
}
}
.externalimage-holder img {
.abc-wikipedia-missing-link::after {
    width: 100%;
content: " ↗";
    height: auto;
font-size: 85%;
}
}
/* ABC-WIKIPEDIA-REDLINKS-CSS-START */
/* ABC Wiki: mark missing local article links that open Wikipedia in a new tab */
.abc-wikipedia-missing-link {
border-bottom: 1px dotted currentColor;
}
.abc-wikipedia-missing-link::after {
content: " ↗";
font-size: 85%;
white-space: nowrap;
}
/* ABC-WIKIPEDIA-REDLINKS-CSS-END */

Latest revision as of 21:32, 15 June 2026

/* ABC Wiki: missing imported article links that open English Wikipedia */
.abc-wikipedia-missing-link {
	border-bottom: 1px dotted currentColor;
}
.abc-wikipedia-missing-link::after {
	content: " ↗";
	font-size: 85%;
}

/* ABC-WIKIPEDIA-REDLINKS-CSS-START */
/* ABC Wiki: mark missing local article links that open Wikipedia in a new tab */
.abc-wikipedia-missing-link {
	border-bottom: 1px dotted currentColor;
}

.abc-wikipedia-missing-link::after {
	content: " ↗";
	font-size: 85%;
	white-space: nowrap;
}
/* ABC-WIKIPEDIA-REDLINKS-CSS-END */