/**
 * Coloris color picker styles and overrides for WordPress admin.
 *
 * Imported before Tailwind in admin.css so styles are preserved.
 * We hide the preview swatch and wrapper button because we render
 * our own swatch/input in the ColorPickerComponentView template.
 */
@import "@melloware/coloris/dist/coloris.css";

.clr-preview {
	display: none;
}

.clr-field {
	display: contents;
}

.clr-field > button {
	display: none;
}

input.clr-color {
	width: calc(100% - 40px);
}
