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: style missing imported article links that open Wikipedia
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%;
}
}

Revision as of 20:55, 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%;
}