@coveord/plasma-mantine
Version:
A Plasma flavoured Mantine theme
13 lines (12 loc) • 346 B
CSS
/*
`readonly` state on checkboxes is not something that exists in Mantine.
So we are allowing ourselves some custom style to achieve the desired effect
*/
.indicator {
@mixin where-light {
&[readonly] {
border-color: var(--coveo-color-input-border);
background-color: var(--checkbox-color);
}
}
}