/**
 * The plugin declares no look of its own. It inherits one, and where inheriting is not
 * possible the script copies one — from the shop's own controls, measured in the browser.
 *
 * This file is only the first half: the properties a <textarea> CAN inherit but does not,
 * because every browser gives a form control its own fallback family and size instead of
 * the page's. That is why the box used to render in the wrong font at the browser's
 * twenty-character default width, next to inputs that had taken the shop's own font.
 *
 * The second half is not here, and deliberately so. A border, a corner radius and a
 * padding are not inherited properties — nothing hands them down — and themes
 * overwhelmingly style `select` and `input.input-text` without ever mentioning
 * `textarea`. `relist-custom-fields.js` reads those off a control the theme has already
 * rendered and writes them into a <style> element of its own. Nothing can be written
 * here, because the values are the shop's and are not known until the page runs.
 *
 * The selector is deliberately weak (0,1,1), and the generated rules are (0,2,1). A real
 * theme rule such as `.woocommerce div.product form.cart textarea` is (0,3,4) and outranks
 * both, so a shop that has an opinion about textareas keeps it.
 */

.relist-custom textarea {
	font: inherit;
	letter-spacing: inherit;
	color: inherit;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	display: block;
}
