Array

MediaWiki:Common.css: Difference between revisions

No edit summary
No edit summary
Line 1: Line 1:
@media only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
@media only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
/* Language box - prevent overlapping title on mobile */
/* Language box - prevent overlapping title on mobile */
.languageBox {
.languageBox {
Line 15: Line 16:
.portlet ul li a:hover {
.portlet ul li a:hover {
color: #7BB375 !important;
color: #7BB375 !important;
}
.portlet ul li a {
color: #009ABF !important;
}
}
}
}

Revision as of 01:52, 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:hover {
		color: #7BB375 !important;
	}

	.portlet ul li a:hover {
		color: #7BB375 !important;
	}	

	.portlet ul li a {
		color: #009ABF !important;
	}	
}