@plone/components
Version:
ReactJS components for Plone
31 lines (27 loc) • 563 B
CSS
@layer plone-components.base {
.react-aria-ColorThumb {
width: 20px;
height: 20px;
box-sizing: border-box;
border: 2px solid white;
border-radius: 50%;
box-shadow:
0 0 0 1px black,
inset 0 0 0 1px black;
&[data-focus-visible] {
width: 24px;
height: 24px;
}
}
.react-aria-ColorWheel {
&[data-disabled] {
.react-aria-ColorWheelTrack {
background: gray ;
}
.react-aria-ColorThumb {
background: gray ;
opacity: 0.5;
}
}
}
}