Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Gadget-Common.css: Difference between revisions

MediaWiki interface page
No edit summary
(I think this will work? setting width 100% in .collapse-on-mobile)
Line 4: Line 4:
.collapse-on-mobile {
.collapse-on-mobile {
display: block;
display: block;
width: 100%;
}
}
}
}

Revision as of 02:00, 13 August 2022

/* CSS for everyone, all skins, desktop and mobile. */

@media screen and (max-width: 850px) {
	.collapse-on-mobile {
		display: block;
		width: 100%;
	}
}

#n-getsupport {
	font-weight: bold;
}

/* not needed on the Main Page */
.page-Main_Page.approvedRevs-approved #contentSub,
.page-Main_Page.approvedRevs-approved #catlinks {
	display: none;
}

/* image max width (but only sometimes) */
.img-maxwidth img {
	max-width: 100%;
	height: auto;
}