UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

76 lines 2.09 kB
import { getTransBg } from './color-block'; const genPickerStyle = token => { const { componentCls, controlHeightLG, borderRadiusSM, colorPickerInsetShadow, marginSM, colorBgElevated, colorFillSecondary, lineWidthBold, colorPickerHandlerSize, colorPickerHandlerSizeSM, colorPickerSliderHeight } = token; return { [`${componentCls}-select`]: { [`${componentCls}-palette`]: { minHeight: controlHeightLG * 4, overflow: 'hidden', borderRadius: borderRadiusSM }, [`${componentCls}-saturation`]: { position: 'absolute', borderRadius: 'inherit', boxShadow: colorPickerInsetShadow, inset: 0 }, marginBottom: marginSM }, [`${componentCls}-handler`]: { width: colorPickerHandlerSize, height: colorPickerHandlerSize, border: `${lineWidthBold}px solid ${colorBgElevated}`, position: 'relative', borderRadius: '50%', cursor: 'pointer', boxShadow: `${colorPickerInsetShadow}, 0 0 0 1px ${colorFillSecondary}`, '&-sm': { width: colorPickerHandlerSizeSM, height: colorPickerHandlerSizeSM } }, [`${componentCls}-slider`]: { borderRadius: colorPickerSliderHeight / 2, [`${componentCls}-palette`]: { height: colorPickerSliderHeight }, [`${componentCls}-gradient`]: { borderRadius: colorPickerSliderHeight / 2, boxShadow: colorPickerInsetShadow }, '&-alpha': getTransBg(`${colorPickerSliderHeight}px`, token.colorFillSecondary), '&-hue': { marginBottom: marginSM } }, [`${componentCls}-slider-container`]: { display: 'flex', gap: marginSM, marginBottom: marginSM, [`${componentCls}-slider-group`]: { flex: 1, '&-disabled-alpha': { display: 'flex', alignItems: 'center', [`${componentCls}-slider`]: { flex: 1, marginBottom: 0 } } } } }; }; export default genPickerStyle;