MediaWiki:Common.css: Difference between revisions
Appearance
mNo edit summary |
m text in form fields should not be smaller than the text on the page (ie labels) |
||
| Line 25: | Line 25: | ||
vertical-align: middle; | vertical-align: middle; | ||
cursor: pointer; | cursor: pointer; | ||
} | |||
/* Form fields should match the page text size (they default smaller) */ | |||
input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]), | |||
textarea, | |||
select, | |||
.oo-ui-inputWidget-input { | |||
font-size: 1em; | |||
} | } | ||
Revision as of 14:43, 11 July 2026
/* Larger, easier-to-click form action buttons (Request account, Confirm, etc.) */
input[type="submit"],
input[type="button"],
input[type="reset"] {
font-size: 1.15em;
padding: 0.55em 1.6em;
line-height: 1.4;
cursor: pointer;
}
/* Larger, easier-to-click form action buttons (Request account, Confirm, etc.) */
input[type="submit"],
input[type="button"],
input[type="reset"] {
font-size: 1.15em;
padding: 0.55em 1.6em;
line-height: 1.4;
cursor: pointer;
}
/* Slightly larger checkboxes and radio buttons */
input[type="checkbox"],
input[type="radio"] {
width: 1.2em;
height: 1.2em;
vertical-align: middle;
cursor: pointer;
}
/* Form fields should match the page text size (they default smaller) */
input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]),
textarea,
select,
.oo-ui-inputWidget-input {
font-size: 1em;
}