To create a page. Send a message
MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* Fix | /* Fix Create New Content input box layout */ | ||
.inputbox | div.inputbox { | ||
.inputbox input[type=" | display: block; | ||
box-sizing: border-box; | width: 100% !important; | ||
width: 100% | max-width: 100% !important; | ||
max-width: 100% | 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:12, 27 August 2025
/* 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; }