MediaWiki:Gadget-ResponsiveStyle.css: Difference between revisions
From Destinypedia, the Destiny wiki
mNo edit summary |
mNo edit summary |
||
Line 14: | Line 14: | ||
.user-page-message-form textarea { | .user-page-message-form textarea { | ||
width: 100% !important; | width: 100% !important; | ||
} | } | ||
} | } |
Revision as of 12:36, January 28, 2024
/* Responsive CSS applied to both desktop and mobile */
/* Mobile phone */
@media all and (max-width: 719px) {
/* Echo extension */
.mw-echo-ui-notificationItemWidget-content-actions-buttons {
font-size: 10px;
}
/* User board */
.user-board-message {
width: auto !important;
}
.user-page-message-form textarea {
width: 100% !important;
}
}
/* Desktop/tablet */
@media all and (min-width: 720px) {
/* User profile */
#user-page-left > .profile-info-container > div {
width: 50%;
float: left;
}
}