MediaWiki:Gadget-ResponsiveStyle.css: Difference between revisions

From Destinypedia, the Destiny wiki

 
No edit summary
Line 1: Line 1:
/* Responsive CSS applied to both desktop and mobile */
/* Responsive CSS applied to both desktop and mobile */
@media all and (max-width: 719px) {
/* User board */
.user-board-message {
width: auto !important;
}
.user-page-message-form textarea {
width: 100% !important;
}
/* PdfHandler */
.multipageimage > tbody > tr > td:nth-of-type(2) {
display: none !important;
}
}

Revision as of 08:38, March 9, 2022

/* Responsive CSS applied to both desktop and mobile */

@media all and (max-width: 719px) {
	/* User board */
	.user-board-message {
		width: auto !important;
	}
	.user-page-message-form textarea {
		width: 100% !important;
	}

	/* PdfHandler */
	.multipageimage > tbody > tr > td:nth-of-type(2) {
		display: none !important;
	}
}