MediaWiki:Common.css

Revision as of 01:43, 18 February 2026 by MikeParker (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
@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: 10000 !important;
		overflow: visible !important;
	}

	/* Ensure dropdown has enough space and doesn't get clipped */
	.languageBox:hover > li > ul {
		width: auto !important;
		min-width: 180px !important;
		overflow: visible !important;
	}

	/* Links stay blue by default, green on hover */
	.languageBox a:hover {
		color: #7BB375 !important;
	}
	
}