Array

MediaWiki:Common.css: Difference between revisions

(Blanked the page)
Tag: Blanking
No edit summary
Line 1: Line 1:
@media only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
/* Language box - prevent overlapping title on mobile */
.languageBox {
position: static !important;
float: none !important;
margin: 10px 0 !important;
display: inline-block !important;
z-index: auto !important;
}


.languageBox a {
font-size: 2.4rem !important;
padding: 8px 12px !important;
}
.languageBox:hover > li > ul {
width: auto !important;
}
}

Revision as of 01:29, 18 February 2026

@media only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
	/* Language box - prevent overlapping title on mobile */
	.languageBox {
		position: static !important;
		float: none !important;
		margin: 10px 0 !important;
		display: inline-block !important;
		z-index: auto !important;
	}

	.languageBox a {
		font-size: 2.4rem !important;
		padding: 8px 12px !important;
	}

	.languageBox:hover > li > ul {
		width: auto !important;
	}
}