161
edits
To create a page. Send a message
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; | |||
} | } |