Jump to content

Module:Hatnote/styles.css: Difference between revisions

From WikipediNyah
Created page with "{{pp|small=y}}: .hatnote { font-style: italic; } Limit structure CSS to divs because of [[Module:Hatnote inline]]: div.hatnote { @noflip: padding-left: 1.6em; margin-bottom: 0.5em; } .hatnote i { font-style: normal; } The templatestyles element inserts a link element before hatnotes. * TODO: Remove link if/when WMF resolves T200206: .hatnote + link + .hatnote { margin-top: -0.5em; }"
 
No edit summary
Tags: Mobile edit Mobile web edit Advanced mobile edit
 
Line 19: Line 19:
.hatnote + link + .hatnote {
.hatnote + link + .hatnote {
margin-top: -0.5em;
margin-top: -0.5em;
}
@media print {
body.ns-0 .hatnote {
display: none !important;
}
}
}

Latest revision as of 10:38, 29 December 2024

/* {{pp|small=y}} */
.hatnote {
	font-style: italic;
}

/* Limit structure CSS to divs because of [[Module:Hatnote inline]] */
div.hatnote {
	/* @noflip */
	padding-left: 1.6em;
	margin-bottom: 0.5em;
}

.hatnote i {
	font-style: normal;
}

/* The templatestyles element inserts a link element before hatnotes.
 * TODO: Remove link if/when WMF resolves T200206 */
.hatnote + link + .hatnote {
	margin-top: -0.5em;
}

@media print {
	body.ns-0 .hatnote {
		display: none !important;
	}
}