To create a page. Send a message

MediaWiki:Common.css: Difference between revisions

From EverybodyWiki
Jump to navigation Jump to search
No edit summary
Tag: Replaced
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* Fix Create New Content input box layout */
div.inputbox {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    margin: 0 auto;
}
div.inputbox input[type="text"] {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    margin: 0 0 10px 0; /* gap below input */
}
div.inputbox input[type="submit"] {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

Revision as of 14:13, 27 August 2025

/* CSS placed here will be applied to all skins */