2022-05-09 22:20:07 +08:00
|
|
|
import type { CSSObject } from '@ant-design/cssinjs';
|
2023-11-09 16:48:45 +08:00
|
|
|
import { unit } from '@ant-design/cssinjs';
|
2022-04-19 16:54:52 +08:00
|
|
|
import { TinyColor } from '@ctrl/tinycolor';
|
2023-12-21 20:43:40 +08:00
|
|
|
import { genPlaceholderStyle, initInputToken } from '../../input/style';
|
2023-11-09 16:48:45 +08:00
|
|
|
import { resetComponent, textEllipsis } from '../../style';
|
2023-02-19 12:33:09 +08:00
|
|
|
import { genCompactItemStyle } from '../../style/compact-item';
|
2022-11-13 21:45:37 +08:00
|
|
|
import {
|
|
|
|
initMoveMotion,
|
2023-02-19 12:33:09 +08:00
|
|
|
initSlideMotion,
|
2022-11-13 21:45:37 +08:00
|
|
|
slideDownIn,
|
|
|
|
slideDownOut,
|
|
|
|
slideUpIn,
|
|
|
|
slideUpOut,
|
|
|
|
} from '../../style/motion';
|
2023-12-21 20:43:40 +08:00
|
|
|
import type { GenerateStyle } from '../../theme/internal';
|
2023-11-29 17:23:45 +08:00
|
|
|
import { genStyleHooks, mergeToken } from '../../theme/internal';
|
2023-12-21 20:43:40 +08:00
|
|
|
import { genRoundedArrow } from '../../style/roundedArrow';
|
|
|
|
import type {
|
|
|
|
ComponentToken,
|
|
|
|
PanelComponentToken,
|
|
|
|
PickerPanelToken,
|
|
|
|
PickerToken,
|
|
|
|
SharedPickerToken,
|
|
|
|
} from './token';
|
|
|
|
import { initPanelComponentToken, initPickerPanelToken, prepareComponentToken } from './token';
|
|
|
|
import genVariantsStyle from './variants';
|
|
|
|
|
|
|
|
export type { ComponentToken, PanelComponentToken, PickerPanelToken };
|
|
|
|
export { initPickerPanelToken, initPanelComponentToken };
|
|
|
|
|
|
|
|
const genPickerPadding = (
|
2022-04-19 16:54:52 +08:00
|
|
|
token: PickerToken,
|
|
|
|
inputHeight: number,
|
2023-11-09 16:48:45 +08:00
|
|
|
fontHeight: number,
|
2022-04-19 16:54:52 +08:00
|
|
|
paddingHorizontal: number,
|
|
|
|
): CSSObject => {
|
2023-11-09 16:48:45 +08:00
|
|
|
const height = token.calc(fontHeight).add(2).equal();
|
|
|
|
const paddingTop = token.max(token.calc(inputHeight).sub(height).div(2).equal(), 0);
|
|
|
|
const paddingBottom = token.max(token.calc(inputHeight).sub(height).sub(paddingTop).equal(), 0);
|
2022-04-19 16:54:52 +08:00
|
|
|
|
|
|
|
return {
|
2023-11-09 16:48:45 +08:00
|
|
|
padding: `${unit(paddingTop)} ${unit(paddingHorizontal)} ${unit(paddingBottom)}`,
|
2022-04-19 16:54:52 +08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-05-20 14:33:33 +08:00
|
|
|
const genPickerCellInnerStyle = (token: SharedPickerToken): CSSObject => {
|
2022-10-28 16:44:19 +08:00
|
|
|
const {
|
|
|
|
componentCls,
|
2023-01-17 17:51:59 +08:00
|
|
|
pickerCellCls,
|
2022-10-28 16:44:19 +08:00
|
|
|
pickerCellInnerCls,
|
2023-08-22 16:28:20 +08:00
|
|
|
cellHeight,
|
2022-10-28 16:44:19 +08:00
|
|
|
motionDurationSlow,
|
2022-11-01 15:06:38 +08:00
|
|
|
borderRadiusSM,
|
2022-11-17 23:31:41 +08:00
|
|
|
motionDurationMid,
|
2023-08-22 16:28:20 +08:00
|
|
|
cellHoverBg,
|
2022-11-01 15:06:38 +08:00
|
|
|
lineWidth,
|
|
|
|
lineType,
|
2022-10-28 16:44:19 +08:00
|
|
|
colorPrimary,
|
2023-08-22 16:28:20 +08:00
|
|
|
cellActiveWithRangeBg,
|
2022-10-28 16:44:19 +08:00
|
|
|
colorTextLightSolid,
|
|
|
|
controlHeightSM,
|
2023-08-22 16:28:20 +08:00
|
|
|
cellRangeBorderColor,
|
2022-10-28 16:44:19 +08:00
|
|
|
pickerCellBorderGap,
|
2023-08-22 16:28:20 +08:00
|
|
|
cellHoverWithRangeBg,
|
|
|
|
cellWidth,
|
2022-10-28 16:44:19 +08:00
|
|
|
colorTextDisabled,
|
2023-08-22 16:28:20 +08:00
|
|
|
cellBgDisabled,
|
2022-10-28 16:44:19 +08:00
|
|
|
} = token;
|
2022-04-19 16:54:52 +08:00
|
|
|
|
|
|
|
return {
|
|
|
|
'&::before': {
|
|
|
|
position: 'absolute',
|
|
|
|
top: '50%',
|
|
|
|
insetInlineStart: 0,
|
|
|
|
insetInlineEnd: 0,
|
|
|
|
zIndex: 1,
|
2023-08-22 16:28:20 +08:00
|
|
|
height: cellHeight,
|
2022-04-19 16:54:52 +08:00
|
|
|
transform: 'translateY(-50%)',
|
2022-10-28 16:44:19 +08:00
|
|
|
transition: `all ${motionDurationSlow}`,
|
2022-04-19 16:54:52 +08:00
|
|
|
content: '""',
|
|
|
|
},
|
|
|
|
|
|
|
|
// >>> Default
|
2022-05-20 14:33:33 +08:00
|
|
|
[pickerCellInnerCls]: {
|
2022-04-19 16:54:52 +08:00
|
|
|
position: 'relative',
|
|
|
|
zIndex: 2,
|
|
|
|
display: 'inline-block',
|
2023-08-22 16:28:20 +08:00
|
|
|
minWidth: cellHeight,
|
|
|
|
height: cellHeight,
|
2023-11-09 16:48:45 +08:00
|
|
|
lineHeight: unit(cellHeight),
|
2022-11-01 15:06:38 +08:00
|
|
|
borderRadius: borderRadiusSM,
|
2022-11-17 23:31:41 +08:00
|
|
|
transition: `background ${motionDurationMid}, border ${motionDurationMid}`,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
2023-08-14 20:59:34 +08:00
|
|
|
[`&-range-hover-start, &-range-hover-end`]: {
|
|
|
|
[pickerCellInnerCls]: {
|
|
|
|
borderStartEndRadius: 0,
|
|
|
|
borderEndEndRadius: 0,
|
|
|
|
},
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
|
|
|
// >>> Hover
|
2023-01-17 17:51:59 +08:00
|
|
|
[`&:hover:not(${pickerCellCls}-in-view),
|
|
|
|
&:hover:not(${pickerCellCls}-selected):not(${pickerCellCls}-range-start):not(${pickerCellCls}-range-end):not(${pickerCellCls}-range-hover-start):not(${pickerCellCls}-range-hover-end)`]:
|
2022-04-19 16:54:52 +08:00
|
|
|
{
|
2022-05-20 14:33:33 +08:00
|
|
|
[pickerCellInnerCls]: {
|
2023-08-22 16:28:20 +08:00
|
|
|
background: cellHoverBg,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// >>> Today
|
2023-01-17 17:51:59 +08:00
|
|
|
[`&-in-view${pickerCellCls}-today ${pickerCellInnerCls}`]: {
|
2022-04-19 16:54:52 +08:00
|
|
|
'&::before': {
|
|
|
|
position: 'absolute',
|
|
|
|
top: 0,
|
|
|
|
insetInlineEnd: 0,
|
|
|
|
bottom: 0,
|
|
|
|
insetInlineStart: 0,
|
|
|
|
zIndex: 1,
|
2023-11-09 16:48:45 +08:00
|
|
|
border: `${unit(lineWidth)} ${lineType} ${colorPrimary}`,
|
2022-11-01 15:06:38 +08:00
|
|
|
borderRadius: borderRadiusSM,
|
2022-04-19 16:54:52 +08:00
|
|
|
content: '""',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// >>> In Range
|
2023-01-17 17:51:59 +08:00
|
|
|
[`&-in-view${pickerCellCls}-in-range`]: {
|
2022-04-19 16:54:52 +08:00
|
|
|
position: 'relative',
|
|
|
|
|
|
|
|
'&::before': {
|
2023-08-22 16:28:20 +08:00
|
|
|
background: cellActiveWithRangeBg,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// >>> Selected
|
2023-01-17 17:51:59 +08:00
|
|
|
[`&-in-view${pickerCellCls}-selected ${pickerCellInnerCls},
|
|
|
|
&-in-view${pickerCellCls}-range-start ${pickerCellInnerCls},
|
|
|
|
&-in-view${pickerCellCls}-range-end ${pickerCellInnerCls}`]: {
|
2022-10-28 16:44:19 +08:00
|
|
|
color: colorTextLightSolid,
|
|
|
|
background: colorPrimary,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
2023-01-17 17:51:59 +08:00
|
|
|
[`&-in-view${pickerCellCls}-range-start:not(${pickerCellCls}-range-start-single),
|
|
|
|
&-in-view${pickerCellCls}-range-end:not(${pickerCellCls}-range-end-single)`]: {
|
2022-04-19 16:54:52 +08:00
|
|
|
'&::before': {
|
2023-08-22 16:28:20 +08:00
|
|
|
background: cellActiveWithRangeBg,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2023-01-17 17:51:59 +08:00
|
|
|
[`&-in-view${pickerCellCls}-range-start::before`]: {
|
2022-04-19 16:54:52 +08:00
|
|
|
insetInlineStart: '50%',
|
|
|
|
},
|
|
|
|
|
2023-01-17 17:51:59 +08:00
|
|
|
[`&-in-view${pickerCellCls}-range-end::before`]: {
|
2022-04-19 16:54:52 +08:00
|
|
|
insetInlineEnd: '50%',
|
|
|
|
},
|
|
|
|
|
|
|
|
// >>> Range Hover
|
2023-01-17 17:51:59 +08:00
|
|
|
[`&-in-view${pickerCellCls}-range-hover-start:not(${pickerCellCls}-in-range):not(${pickerCellCls}-range-start):not(${pickerCellCls}-range-end),
|
|
|
|
&-in-view${pickerCellCls}-range-hover-end:not(${pickerCellCls}-in-range):not(${pickerCellCls}-range-start):not(${pickerCellCls}-range-end),
|
|
|
|
&-in-view${pickerCellCls}-range-hover-start${pickerCellCls}-range-start-single,
|
|
|
|
&-in-view${pickerCellCls}-range-hover-start${pickerCellCls}-range-start${pickerCellCls}-range-end${pickerCellCls}-range-end-near-hover,
|
|
|
|
&-in-view${pickerCellCls}-range-hover-end${pickerCellCls}-range-start${pickerCellCls}-range-end${pickerCellCls}-range-start-near-hover,
|
|
|
|
&-in-view${pickerCellCls}-range-hover-end${pickerCellCls}-range-end-single,
|
|
|
|
&-in-view${pickerCellCls}-range-hover:not(${pickerCellCls}-in-range)`]: {
|
2022-04-19 16:54:52 +08:00
|
|
|
'&::after': {
|
|
|
|
position: 'absolute',
|
|
|
|
top: '50%',
|
|
|
|
zIndex: 0,
|
2022-10-28 16:44:19 +08:00
|
|
|
height: controlHeightSM,
|
2023-11-09 16:48:45 +08:00
|
|
|
borderTop: `${unit(lineWidth)} dashed ${cellRangeBorderColor}`,
|
|
|
|
borderBottom: `${unit(lineWidth)} dashed ${cellRangeBorderColor}`,
|
2022-04-19 16:54:52 +08:00
|
|
|
transform: 'translateY(-50%)',
|
2022-10-28 16:44:19 +08:00
|
|
|
transition: `all ${motionDurationSlow}`,
|
2022-04-19 16:54:52 +08:00
|
|
|
content: '""',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// Add space for stash
|
|
|
|
[`&-range-hover-start::after,
|
2022-05-20 14:33:33 +08:00
|
|
|
&-range-hover-end::after,
|
|
|
|
&-range-hover::after`]: {
|
2022-04-19 16:54:52 +08:00
|
|
|
insetInlineEnd: 0,
|
2022-10-28 16:44:19 +08:00
|
|
|
insetInlineStart: pickerCellBorderGap,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
// Hover with in range
|
2023-01-17 17:51:59 +08:00
|
|
|
[`&-in-view${pickerCellCls}-in-range${pickerCellCls}-range-hover::before,
|
2023-02-19 21:27:46 +08:00
|
|
|
&-in-view${pickerCellCls}-in-range${pickerCellCls}-range-hover-start::before,
|
|
|
|
&-in-view${pickerCellCls}-in-range${pickerCellCls}-range-hover-end::before,
|
2023-01-17 17:51:59 +08:00
|
|
|
&-in-view${pickerCellCls}-range-start${pickerCellCls}-range-hover::before,
|
|
|
|
&-in-view${pickerCellCls}-range-end${pickerCellCls}-range-hover::before,
|
|
|
|
&-in-view${pickerCellCls}-range-start:not(${pickerCellCls}-range-start-single)${pickerCellCls}-range-hover-start::before,
|
|
|
|
&-in-view${pickerCellCls}-range-end:not(${pickerCellCls}-range-end-single)${pickerCellCls}-range-hover-end::before,
|
2022-05-20 14:33:33 +08:00
|
|
|
${componentCls}-panel
|
2022-04-19 16:54:52 +08:00
|
|
|
> :not(${componentCls}-date-panel)
|
2023-01-17 17:51:59 +08:00
|
|
|
&-in-view${pickerCellCls}-in-range${pickerCellCls}-range-hover-start::before,
|
2022-05-20 14:33:33 +08:00
|
|
|
${componentCls}-panel
|
2022-04-19 16:54:52 +08:00
|
|
|
> :not(${componentCls}-date-panel)
|
2023-01-17 17:51:59 +08:00
|
|
|
&-in-view${pickerCellCls}-in-range${pickerCellCls}-range-hover-end::before`]: {
|
2023-08-22 16:28:20 +08:00
|
|
|
background: cellHoverWithRangeBg,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
// range start border-radius
|
2023-01-17 17:51:59 +08:00
|
|
|
[`&-in-view${pickerCellCls}-range-start:not(${pickerCellCls}-range-start-single):not(${pickerCellCls}-range-end) ${pickerCellInnerCls}`]:
|
2022-05-20 14:33:33 +08:00
|
|
|
{
|
2022-11-01 15:06:38 +08:00
|
|
|
borderStartStartRadius: borderRadiusSM,
|
|
|
|
borderEndStartRadius: borderRadiusSM,
|
2022-05-20 14:33:33 +08:00
|
|
|
borderStartEndRadius: 0,
|
|
|
|
borderEndEndRadius: 0,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
2022-05-20 14:33:33 +08:00
|
|
|
// range end border-radius
|
2023-01-17 17:51:59 +08:00
|
|
|
[`&-in-view${pickerCellCls}-range-end:not(${pickerCellCls}-range-end-single):not(${pickerCellCls}-range-start) ${pickerCellInnerCls}`]:
|
2022-04-19 16:54:52 +08:00
|
|
|
{
|
2022-05-20 14:33:33 +08:00
|
|
|
borderStartStartRadius: 0,
|
|
|
|
borderEndStartRadius: 0,
|
2022-11-01 15:06:38 +08:00
|
|
|
borderStartEndRadius: borderRadiusSM,
|
|
|
|
borderEndEndRadius: borderRadiusSM,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
2023-01-17 17:51:59 +08:00
|
|
|
[`&-range-hover${pickerCellCls}-range-end::after`]: {
|
2022-04-19 16:54:52 +08:00
|
|
|
insetInlineStart: '50%',
|
|
|
|
},
|
|
|
|
|
|
|
|
// Edge start
|
2023-01-17 17:51:59 +08:00
|
|
|
[`tr > &-in-view${pickerCellCls}-range-hover:first-child::after,
|
|
|
|
tr > &-in-view${pickerCellCls}-range-hover-end:first-child::after,
|
|
|
|
&-in-view${pickerCellCls}-start${pickerCellCls}-range-hover-edge-start${pickerCellCls}-range-hover-edge-start-near-range::after,
|
|
|
|
&-in-view${pickerCellCls}-range-hover-edge-start:not(${pickerCellCls}-range-hover-edge-start-near-range)::after,
|
|
|
|
&-in-view${pickerCellCls}-range-hover-start::after`]: {
|
2023-11-09 16:48:45 +08:00
|
|
|
insetInlineStart: token.calc(cellWidth).sub(cellHeight).div(2).equal(),
|
|
|
|
borderInlineStart: `${unit(lineWidth)} dashed ${cellRangeBorderColor}`,
|
2023-08-14 20:59:34 +08:00
|
|
|
borderStartStartRadius: borderRadiusSM,
|
|
|
|
borderEndStartRadius: borderRadiusSM,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
// Edge end
|
2023-01-17 17:51:59 +08:00
|
|
|
[`tr > &-in-view${pickerCellCls}-range-hover:last-child::after,
|
|
|
|
tr > &-in-view${pickerCellCls}-range-hover-start:last-child::after,
|
|
|
|
&-in-view${pickerCellCls}-end${pickerCellCls}-range-hover-edge-end${pickerCellCls}-range-hover-edge-end-near-range::after,
|
|
|
|
&-in-view${pickerCellCls}-range-hover-edge-end:not(${pickerCellCls}-range-hover-edge-end-near-range)::after,
|
|
|
|
&-in-view${pickerCellCls}-range-hover-end::after`]: {
|
2023-11-09 16:48:45 +08:00
|
|
|
insetInlineEnd: token.calc(cellWidth).sub(cellHeight).div(2).equal(),
|
|
|
|
borderInlineEnd: `${unit(lineWidth)} dashed ${cellRangeBorderColor}`,
|
2023-08-14 20:59:34 +08:00
|
|
|
borderStartEndRadius: borderRadiusSM,
|
|
|
|
borderEndEndRadius: borderRadiusSM,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
// >>> Disabled
|
|
|
|
'&-disabled': {
|
2022-10-28 16:44:19 +08:00
|
|
|
color: colorTextDisabled,
|
2022-04-19 16:54:52 +08:00
|
|
|
pointerEvents: 'none',
|
|
|
|
|
2022-05-20 14:33:33 +08:00
|
|
|
[pickerCellInnerCls]: {
|
2022-04-19 16:54:52 +08:00
|
|
|
background: 'transparent',
|
|
|
|
},
|
|
|
|
|
|
|
|
'&::before': {
|
2023-08-22 16:28:20 +08:00
|
|
|
background: cellBgDisabled,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
},
|
2023-01-17 17:51:59 +08:00
|
|
|
[`&-disabled${pickerCellCls}-today ${pickerCellInnerCls}::before`]: {
|
2022-10-28 16:44:19 +08:00
|
|
|
borderColor: colorTextDisabled,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-05-20 14:33:33 +08:00
|
|
|
export const genPanelStyle = (token: SharedPickerToken): CSSObject => {
|
2022-10-28 16:44:19 +08:00
|
|
|
const {
|
|
|
|
componentCls,
|
2023-02-20 11:51:01 +08:00
|
|
|
pickerCellCls,
|
2022-10-28 16:44:19 +08:00
|
|
|
pickerCellInnerCls,
|
|
|
|
pickerYearMonthCellWidth,
|
|
|
|
pickerControlIconSize,
|
2023-08-22 16:28:20 +08:00
|
|
|
cellWidth,
|
2022-10-28 16:44:19 +08:00
|
|
|
paddingSM,
|
|
|
|
paddingXS,
|
2022-12-04 00:45:10 +08:00
|
|
|
paddingXXS,
|
2022-10-28 16:44:19 +08:00
|
|
|
colorBgContainer,
|
2022-11-01 15:06:38 +08:00
|
|
|
lineWidth,
|
|
|
|
lineType,
|
|
|
|
borderRadiusLG,
|
2022-10-28 16:44:19 +08:00
|
|
|
colorPrimary,
|
|
|
|
colorTextHeading,
|
|
|
|
colorSplit,
|
|
|
|
pickerControlIconBorderWidth,
|
|
|
|
colorIcon,
|
2023-08-22 16:28:20 +08:00
|
|
|
textHeight,
|
2022-11-17 23:31:41 +08:00
|
|
|
motionDurationMid,
|
2022-10-28 16:44:19 +08:00
|
|
|
colorIconHover,
|
|
|
|
fontWeightStrong,
|
2023-08-22 16:28:20 +08:00
|
|
|
cellHeight,
|
2022-10-28 16:44:19 +08:00
|
|
|
pickerCellPaddingVertical,
|
|
|
|
colorTextDisabled,
|
|
|
|
colorText,
|
|
|
|
fontSize,
|
2023-08-22 16:28:20 +08:00
|
|
|
cellHoverWithRangeBg,
|
2022-10-28 16:44:19 +08:00
|
|
|
motionDurationSlow,
|
2023-08-22 16:28:20 +08:00
|
|
|
withoutTimeCellHeight,
|
2022-10-28 16:44:19 +08:00
|
|
|
pickerQuarterPanelContentHeight,
|
|
|
|
colorLink,
|
|
|
|
colorLinkActive,
|
|
|
|
colorLinkHover,
|
2023-08-22 16:28:20 +08:00
|
|
|
cellRangeBorderColor,
|
2022-11-01 15:06:38 +08:00
|
|
|
borderRadiusSM,
|
2022-10-28 16:44:19 +08:00
|
|
|
colorTextLightSolid,
|
2023-08-22 16:28:20 +08:00
|
|
|
cellHoverBg,
|
|
|
|
timeColumnHeight,
|
|
|
|
timeColumnWidth,
|
|
|
|
timeCellHeight,
|
2022-10-28 16:44:19 +08:00
|
|
|
controlItemBgActive,
|
|
|
|
marginXXS,
|
2023-02-17 12:04:35 +08:00
|
|
|
pickerDatePanelPaddingHorizontal,
|
2023-11-09 16:48:45 +08:00
|
|
|
pickerControlIconMargin,
|
2022-10-28 16:44:19 +08:00
|
|
|
} = token;
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2023-11-09 16:48:45 +08:00
|
|
|
const pickerPanelWidth = token
|
|
|
|
.calc(cellWidth)
|
|
|
|
.mul(7)
|
|
|
|
.add(token.calc(pickerDatePanelPaddingHorizontal).mul(2))
|
|
|
|
.equal();
|
|
|
|
const commonHoverCellFixedDistance = token
|
|
|
|
.calc(pickerPanelWidth)
|
|
|
|
.sub(token.calc(paddingXS).mul(2))
|
|
|
|
.div(3)
|
|
|
|
.sub(token.pickerYearMonthCellWidth)
|
|
|
|
.sub(paddingSM)
|
|
|
|
.equal();
|
|
|
|
const quarterHoverCellFixedDistance = token
|
|
|
|
.calc(pickerPanelWidth)
|
|
|
|
.sub(token.calc(paddingXS).mul(2))
|
|
|
|
.div(4)
|
|
|
|
.sub(token.pickerYearMonthCellWidth)
|
|
|
|
.equal();
|
2022-04-19 16:54:52 +08:00
|
|
|
|
|
|
|
return {
|
2022-05-11 20:07:40 +08:00
|
|
|
[componentCls]: {
|
|
|
|
'&-panel': {
|
|
|
|
display: 'inline-flex',
|
|
|
|
flexDirection: 'column',
|
|
|
|
textAlign: 'center',
|
2022-10-28 16:44:19 +08:00
|
|
|
background: colorBgContainer,
|
2023-11-09 16:48:45 +08:00
|
|
|
border: `${unit(lineWidth)} ${lineType} ${colorSplit}`,
|
2022-11-01 15:06:38 +08:00
|
|
|
borderRadius: borderRadiusLG,
|
2022-05-11 20:07:40 +08:00
|
|
|
outline: 'none',
|
|
|
|
|
|
|
|
'&-focused': {
|
2022-10-28 16:44:19 +08:00
|
|
|
borderColor: colorPrimary,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
'&-rtl': {
|
|
|
|
direction: 'rtl',
|
|
|
|
|
|
|
|
[`${componentCls}-prev-icon,
|
|
|
|
${componentCls}-super-prev-icon`]: {
|
2023-01-15 15:30:16 +08:00
|
|
|
transform: 'rotate(45deg)',
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
[`${componentCls}-next-icon,
|
|
|
|
${componentCls}-super-next-icon`]: {
|
2023-01-15 15:30:16 +08:00
|
|
|
transform: 'rotate(-135deg)',
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ========================================================
|
|
|
|
// = Shared Panel =
|
|
|
|
// ========================================================
|
|
|
|
[`&-decade-panel,
|
|
|
|
&-year-panel,
|
|
|
|
&-quarter-panel,
|
|
|
|
&-month-panel,
|
|
|
|
&-week-panel,
|
|
|
|
&-date-panel,
|
|
|
|
&-time-panel`]: {
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'column',
|
|
|
|
width: pickerPanelWidth,
|
|
|
|
},
|
|
|
|
|
|
|
|
// ======================= Header =======================
|
|
|
|
'&-header': {
|
|
|
|
display: 'flex',
|
2023-11-09 16:48:45 +08:00
|
|
|
padding: `0 ${unit(paddingXS)}`,
|
2022-10-28 16:44:19 +08:00
|
|
|
color: colorTextHeading,
|
2023-11-09 16:48:45 +08:00
|
|
|
borderBottom: `${unit(lineWidth)} ${lineType} ${colorSplit}`,
|
2022-05-11 20:07:40 +08:00
|
|
|
|
|
|
|
'> *': {
|
|
|
|
flex: 'none',
|
|
|
|
},
|
|
|
|
|
|
|
|
button: {
|
|
|
|
padding: 0,
|
2022-10-28 16:44:19 +08:00
|
|
|
color: colorIcon,
|
2023-11-09 16:48:45 +08:00
|
|
|
lineHeight: unit(textHeight),
|
2022-05-11 20:07:40 +08:00
|
|
|
background: 'transparent',
|
|
|
|
border: 0,
|
|
|
|
cursor: 'pointer',
|
2022-11-17 23:31:41 +08:00
|
|
|
transition: `color ${motionDurationMid}`,
|
2023-02-17 12:04:35 +08:00
|
|
|
fontSize: 'inherit',
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
'> button': {
|
|
|
|
minWidth: '1.6em',
|
2022-10-28 16:44:19 +08:00
|
|
|
fontSize,
|
2022-05-11 20:07:40 +08:00
|
|
|
|
|
|
|
'&:hover': {
|
2022-10-28 16:44:19 +08:00
|
|
|
color: colorIconHover,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
'&-view': {
|
|
|
|
flex: 'auto',
|
2022-10-28 16:44:19 +08:00
|
|
|
fontWeight: fontWeightStrong,
|
2023-11-09 16:48:45 +08:00
|
|
|
lineHeight: unit(textHeight),
|
2022-05-11 20:07:40 +08:00
|
|
|
|
|
|
|
button: {
|
|
|
|
color: 'inherit',
|
|
|
|
fontWeight: 'inherit',
|
2022-10-28 16:44:19 +08:00
|
|
|
verticalAlign: 'top',
|
2022-05-11 20:07:40 +08:00
|
|
|
|
|
|
|
'&:not(:first-child)': {
|
2022-10-28 16:44:19 +08:00
|
|
|
marginInlineStart: paddingXS,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
'&:hover': {
|
2022-10-28 16:44:19 +08:00
|
|
|
color: colorPrimary,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// Arrow button
|
|
|
|
[`&-prev-icon,
|
|
|
|
&-next-icon,
|
|
|
|
&-super-prev-icon,
|
|
|
|
&-super-next-icon`]: {
|
|
|
|
position: 'relative',
|
|
|
|
display: 'inline-block',
|
2022-05-20 14:33:33 +08:00
|
|
|
width: pickerControlIconSize,
|
|
|
|
height: pickerControlIconSize,
|
2022-05-11 20:07:40 +08:00
|
|
|
|
|
|
|
'&::before': {
|
|
|
|
position: 'absolute',
|
|
|
|
top: 0,
|
|
|
|
insetInlineStart: 0,
|
|
|
|
display: 'inline-block',
|
2022-05-20 14:33:33 +08:00
|
|
|
width: pickerControlIconSize,
|
|
|
|
height: pickerControlIconSize,
|
2022-05-11 20:07:40 +08:00
|
|
|
border: `0 solid currentcolor`,
|
2022-10-28 16:44:19 +08:00
|
|
|
borderBlockStartWidth: pickerControlIconBorderWidth,
|
2022-05-20 14:33:33 +08:00
|
|
|
borderBlockEndWidth: 0,
|
2022-10-28 16:44:19 +08:00
|
|
|
borderInlineStartWidth: pickerControlIconBorderWidth,
|
2022-05-20 14:33:33 +08:00
|
|
|
borderInlineEndWidth: 0,
|
2022-05-11 20:07:40 +08:00
|
|
|
content: '""',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
[`&-super-prev-icon,
|
|
|
|
&-super-next-icon`]: {
|
|
|
|
'&::after': {
|
|
|
|
position: 'absolute',
|
2023-11-09 16:48:45 +08:00
|
|
|
top: pickerControlIconMargin,
|
|
|
|
insetInlineStart: pickerControlIconMargin,
|
2022-05-11 20:07:40 +08:00
|
|
|
display: 'inline-block',
|
2022-05-20 14:33:33 +08:00
|
|
|
width: pickerControlIconSize,
|
|
|
|
height: pickerControlIconSize,
|
2022-05-11 20:07:40 +08:00
|
|
|
border: '0 solid currentcolor',
|
2022-10-28 16:44:19 +08:00
|
|
|
borderBlockStartWidth: pickerControlIconBorderWidth,
|
2022-05-20 14:33:33 +08:00
|
|
|
borderBlockEndWidth: 0,
|
2022-10-28 16:44:19 +08:00
|
|
|
borderInlineStartWidth: pickerControlIconBorderWidth,
|
2022-05-20 14:33:33 +08:00
|
|
|
borderInlineEndWidth: 0,
|
2022-05-11 20:07:40 +08:00
|
|
|
content: '""',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
[`&-prev-icon,
|
2022-05-20 14:33:33 +08:00
|
|
|
&-super-prev-icon`]: {
|
2022-05-11 20:07:40 +08:00
|
|
|
transform: 'rotate(-45deg)',
|
|
|
|
},
|
|
|
|
|
|
|
|
[`&-next-icon,
|
2022-05-20 14:33:33 +08:00
|
|
|
&-super-next-icon`]: {
|
2022-05-11 20:07:40 +08:00
|
|
|
transform: 'rotate(135deg)',
|
|
|
|
},
|
|
|
|
|
|
|
|
// ======================== Body ========================
|
|
|
|
'&-content': {
|
|
|
|
width: '100%',
|
|
|
|
tableLayout: 'fixed',
|
|
|
|
borderCollapse: 'collapse',
|
|
|
|
|
|
|
|
'th, td': {
|
|
|
|
position: 'relative',
|
2023-08-22 16:28:20 +08:00
|
|
|
minWidth: cellHeight,
|
2022-05-20 14:33:33 +08:00
|
|
|
fontWeight: 'normal',
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
th: {
|
2023-11-09 16:48:45 +08:00
|
|
|
height: token.calc(cellHeight).add(token.calc(pickerCellPaddingVertical).mul(2)).equal(),
|
2022-10-28 16:44:19 +08:00
|
|
|
color: colorText,
|
2022-05-20 14:33:33 +08:00
|
|
|
verticalAlign: 'middle',
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
'&-cell': {
|
2023-11-09 16:48:45 +08:00
|
|
|
padding: `${unit(pickerCellPaddingVertical)} 0`,
|
2022-10-28 16:44:19 +08:00
|
|
|
color: colorTextDisabled,
|
2022-05-11 20:07:40 +08:00
|
|
|
cursor: 'pointer',
|
|
|
|
|
|
|
|
// In view
|
|
|
|
'&-in-view': {
|
2022-10-28 16:44:19 +08:00
|
|
|
color: colorText,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
2022-05-20 14:33:33 +08:00
|
|
|
...genPickerCellInnerStyle(token),
|
|
|
|
},
|
|
|
|
|
|
|
|
// DatePanel only
|
|
|
|
[`&-date-panel ${componentCls}-cell-in-view${componentCls}-cell-in-range${componentCls}-cell-range-hover-start ${pickerCellInnerCls},
|
|
|
|
&-date-panel ${componentCls}-cell-in-view${componentCls}-cell-in-range${componentCls}-cell-range-hover-end ${pickerCellInnerCls}`]:
|
|
|
|
{
|
|
|
|
'&::after': {
|
|
|
|
position: 'absolute',
|
|
|
|
top: 0,
|
|
|
|
bottom: 0,
|
|
|
|
zIndex: -1,
|
2023-08-22 16:28:20 +08:00
|
|
|
background: cellHoverWithRangeBg,
|
2022-10-28 16:44:19 +08:00
|
|
|
transition: `all ${motionDurationSlow}`,
|
2022-05-20 14:33:33 +08:00
|
|
|
content: '""',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
[`&-date-panel
|
|
|
|
${componentCls}-cell-in-view${componentCls}-cell-in-range${componentCls}-cell-range-hover-start
|
|
|
|
${pickerCellInnerCls}::after`]: {
|
2023-11-09 16:48:45 +08:00
|
|
|
insetInlineEnd: token.calc(cellWidth).sub(cellHeight).mul(-1).div(2).equal(),
|
2022-05-20 14:33:33 +08:00
|
|
|
insetInlineStart: 0,
|
|
|
|
},
|
|
|
|
|
|
|
|
[`&-date-panel ${componentCls}-cell-in-view${componentCls}-cell-in-range${componentCls}-cell-range-hover-end ${pickerCellInnerCls}::after`]:
|
|
|
|
{
|
|
|
|
insetInlineEnd: 0,
|
2023-11-09 16:48:45 +08:00
|
|
|
insetInlineStart: token.calc(cellWidth).sub(cellHeight).mul(-1).div(2).equal(),
|
2022-05-20 14:33:33 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
// Hover with range start & end
|
2023-01-17 17:51:59 +08:00
|
|
|
[`&-range-hover${componentCls}-range-start::after`]: {
|
2022-05-20 14:33:33 +08:00
|
|
|
insetInlineEnd: '50%',
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
[`&-decade-panel,
|
2022-05-20 14:33:33 +08:00
|
|
|
&-year-panel,
|
|
|
|
&-quarter-panel,
|
|
|
|
&-month-panel`]: {
|
2022-05-11 20:07:40 +08:00
|
|
|
[`${componentCls}-content`]: {
|
2023-11-09 16:48:45 +08:00
|
|
|
height: token.calc(withoutTimeCellHeight).mul(4).equal(),
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
[pickerCellInnerCls]: {
|
2023-11-09 16:48:45 +08:00
|
|
|
padding: `0 ${unit(paddingXS)}`,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
'&-quarter-panel': {
|
|
|
|
[`${componentCls}-content`]: {
|
2022-10-28 16:44:19 +08:00
|
|
|
height: pickerQuarterPanelContentHeight,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
2023-02-13 10:42:05 +08:00
|
|
|
|
|
|
|
// Quarter Panel Special Style
|
|
|
|
[`${componentCls}-cell-range-hover-start::after`]: {
|
|
|
|
insetInlineStart: quarterHoverCellFixedDistance,
|
2023-11-09 16:48:45 +08:00
|
|
|
borderInlineStart: `${unit(lineWidth)} dashed ${cellRangeBorderColor}`,
|
2023-02-13 10:42:05 +08:00
|
|
|
|
|
|
|
[`${componentCls}-panel-rtl &`]: {
|
|
|
|
insetInlineEnd: quarterHoverCellFixedDistance,
|
2023-11-09 16:48:45 +08:00
|
|
|
borderInlineEnd: `${unit(lineWidth)} dashed ${cellRangeBorderColor}`,
|
2023-02-13 10:42:05 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
[`${componentCls}-cell-range-hover-end::after`]: {
|
|
|
|
insetInlineEnd: quarterHoverCellFixedDistance,
|
2023-11-09 16:48:45 +08:00
|
|
|
borderInlineEnd: `${unit(lineWidth)} dashed ${cellRangeBorderColor}`,
|
2023-02-13 10:42:05 +08:00
|
|
|
|
|
|
|
[`${componentCls}-panel-rtl &`]: {
|
|
|
|
insetInlineStart: quarterHoverCellFixedDistance,
|
2023-11-09 16:48:45 +08:00
|
|
|
borderInlineStart: `${unit(lineWidth)} dashed ${cellRangeBorderColor}`,
|
2023-02-13 10:42:05 +08:00
|
|
|
},
|
|
|
|
},
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
// ======================== Footer ========================
|
|
|
|
[`&-panel ${componentCls}-footer`]: {
|
2023-11-09 16:48:45 +08:00
|
|
|
borderTop: `${unit(lineWidth)} ${lineType} ${colorSplit}`,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
'&-footer': {
|
|
|
|
width: 'min-content',
|
|
|
|
minWidth: '100%',
|
2023-11-09 16:48:45 +08:00
|
|
|
lineHeight: unit(token.calc(textHeight).sub(token.calc(lineWidth).mul(2)).equal()),
|
2022-05-11 20:07:40 +08:00
|
|
|
textAlign: 'center',
|
|
|
|
|
|
|
|
'&-extra': {
|
2023-11-09 16:48:45 +08:00
|
|
|
padding: `0 ${unit(paddingSM)}`,
|
|
|
|
lineHeight: unit(token.calc(textHeight).sub(token.calc(lineWidth).mul(2)).equal()),
|
2022-05-11 20:07:40 +08:00
|
|
|
textAlign: 'start',
|
|
|
|
|
|
|
|
'&:not(:last-child)': {
|
2023-11-09 16:48:45 +08:00
|
|
|
borderBottom: `${unit(lineWidth)} ${lineType} ${colorSplit}`,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
'&-now': {
|
|
|
|
textAlign: 'start',
|
|
|
|
},
|
|
|
|
|
|
|
|
'&-today-btn': {
|
2022-10-28 16:44:19 +08:00
|
|
|
color: colorLink,
|
2022-05-11 20:07:40 +08:00
|
|
|
|
|
|
|
'&:hover': {
|
2022-10-28 16:44:19 +08:00
|
|
|
color: colorLinkHover,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
'&:active': {
|
2022-10-28 16:44:19 +08:00
|
|
|
color: colorLinkActive,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
2023-01-17 17:51:59 +08:00
|
|
|
[`&${componentCls}-today-btn-disabled`]: {
|
2022-10-28 16:44:19 +08:00
|
|
|
color: colorTextDisabled,
|
2022-05-11 20:07:40 +08:00
|
|
|
cursor: 'not-allowed',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ========================================================
|
|
|
|
// = Special =
|
|
|
|
// ========================================================
|
|
|
|
|
|
|
|
// ===================== Decade Panel =====================
|
|
|
|
'&-decade-panel': {
|
|
|
|
[pickerCellInnerCls]: {
|
2023-11-09 16:48:45 +08:00
|
|
|
padding: `0 ${unit(token.calc(paddingXS).div(2).equal())}`,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
[`${componentCls}-cell::before`]: {
|
|
|
|
display: 'none',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ============= Year & Quarter & Month Panel =============
|
|
|
|
[`&-year-panel,
|
|
|
|
&-quarter-panel,
|
|
|
|
&-month-panel`]: {
|
|
|
|
[`${componentCls}-body`]: {
|
2023-11-09 16:48:45 +08:00
|
|
|
padding: `0 ${unit(paddingXS)}`,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
[pickerCellInnerCls]: {
|
|
|
|
width: pickerYearMonthCellWidth,
|
|
|
|
},
|
|
|
|
|
|
|
|
[`${componentCls}-cell-range-hover-start::after`]: {
|
2022-11-01 15:06:38 +08:00
|
|
|
borderStartStartRadius: borderRadiusSM,
|
2023-02-13 10:42:05 +08:00
|
|
|
borderEndStartRadius: borderRadiusSM,
|
2022-05-11 20:07:40 +08:00
|
|
|
borderStartEndRadius: 0,
|
2023-02-13 10:42:05 +08:00
|
|
|
borderEndEndRadius: 0,
|
2022-05-11 20:07:40 +08:00
|
|
|
|
|
|
|
[`${componentCls}-panel-rtl &`]: {
|
|
|
|
borderStartStartRadius: 0,
|
2023-02-13 10:42:05 +08:00
|
|
|
borderEndStartRadius: 0,
|
2022-11-01 15:06:38 +08:00
|
|
|
borderStartEndRadius: borderRadiusSM,
|
2023-02-13 10:42:05 +08:00
|
|
|
borderEndEndRadius: borderRadiusSM,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
[`${componentCls}-cell-range-hover-end::after`]: {
|
|
|
|
borderStartStartRadius: 0,
|
2023-02-13 10:42:05 +08:00
|
|
|
borderEndStartRadius: 0,
|
|
|
|
borderStartEndRadius: borderRadiusSM,
|
|
|
|
borderEndEndRadius: borderRadiusSM,
|
2022-05-11 20:07:40 +08:00
|
|
|
|
|
|
|
[`${componentCls}-panel-rtl &`]: {
|
2023-02-13 10:42:05 +08:00
|
|
|
borderStartStartRadius: borderRadiusSM,
|
|
|
|
borderEndStartRadius: borderRadiusSM,
|
2022-05-11 20:07:40 +08:00
|
|
|
borderStartEndRadius: 0,
|
2023-02-13 10:42:05 +08:00
|
|
|
borderEndEndRadius: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
[`&-year-panel,
|
|
|
|
&-month-panel`]: {
|
|
|
|
[`${componentCls}-cell-range-hover-start::after`]: {
|
|
|
|
insetInlineStart: commonHoverCellFixedDistance,
|
2023-11-09 16:48:45 +08:00
|
|
|
borderInlineStart: `${unit(lineWidth)} dashed ${cellRangeBorderColor}`,
|
2023-02-13 10:42:05 +08:00
|
|
|
|
|
|
|
[`${componentCls}-panel-rtl &`]: {
|
|
|
|
insetInlineEnd: commonHoverCellFixedDistance,
|
2023-11-09 16:48:45 +08:00
|
|
|
borderInlineEnd: `${unit(lineWidth)} dashed ${cellRangeBorderColor}`,
|
2023-02-13 10:42:05 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
[`${componentCls}-cell-range-hover-end::after`]: {
|
|
|
|
insetInlineEnd: commonHoverCellFixedDistance,
|
2023-11-09 16:48:45 +08:00
|
|
|
borderInlineEnd: `${unit(lineWidth)} dashed ${cellRangeBorderColor}`,
|
2023-02-13 10:42:05 +08:00
|
|
|
|
|
|
|
[`${componentCls}-panel-rtl &`]: {
|
|
|
|
insetInlineStart: commonHoverCellFixedDistance,
|
2023-11-09 16:48:45 +08:00
|
|
|
borderInlineStart: `${unit(lineWidth)} dashed ${cellRangeBorderColor}`,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ====================== Week Panel ======================
|
|
|
|
'&-week-panel': {
|
|
|
|
[`${componentCls}-body`]: {
|
2023-11-09 16:48:45 +08:00
|
|
|
padding: `${unit(paddingXS)} ${unit(paddingSM)}`,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
// Clear cell style
|
|
|
|
[`${componentCls}-cell`]: {
|
|
|
|
[`&:hover ${pickerCellInnerCls},
|
2023-01-17 17:51:59 +08:00
|
|
|
&-selected ${pickerCellInnerCls},
|
|
|
|
${pickerCellInnerCls}`]: {
|
2022-05-11 20:07:40 +08:00
|
|
|
background: 'transparent !important',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
'&-row': {
|
|
|
|
td: {
|
2023-02-19 12:33:09 +08:00
|
|
|
'&:before': {
|
|
|
|
transition: `background ${motionDurationMid}`,
|
|
|
|
},
|
2022-09-20 21:50:36 +08:00
|
|
|
|
2023-02-19 12:33:09 +08:00
|
|
|
'&:first-child:before': {
|
2022-11-01 15:06:38 +08:00
|
|
|
borderStartStartRadius: borderRadiusSM,
|
|
|
|
borderEndStartRadius: borderRadiusSM,
|
2022-09-20 21:50:36 +08:00
|
|
|
},
|
|
|
|
|
2023-02-19 12:33:09 +08:00
|
|
|
'&:last-child:before': {
|
2022-11-01 15:06:38 +08:00
|
|
|
borderStartEndRadius: borderRadiusSM,
|
|
|
|
borderEndEndRadius: borderRadiusSM,
|
2022-09-20 21:50:36 +08:00
|
|
|
},
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
2023-02-20 11:51:01 +08:00
|
|
|
[`&:hover td`]: {
|
2023-02-19 12:33:09 +08:00
|
|
|
'&:before': {
|
2023-08-22 16:28:20 +08:00
|
|
|
background: cellHoverBg,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
2023-02-20 11:51:01 +08:00
|
|
|
},
|
2022-05-11 20:07:40 +08:00
|
|
|
|
2023-02-20 11:51:01 +08:00
|
|
|
[`&-range-start td,
|
|
|
|
&-range-end td,
|
|
|
|
&-selected td`]: {
|
|
|
|
// Rise priority to override hover style
|
|
|
|
[`&${pickerCellCls}`]: {
|
|
|
|
'&:before': {
|
|
|
|
background: colorPrimary,
|
|
|
|
},
|
|
|
|
|
|
|
|
[`&${componentCls}-cell-week`]: {
|
|
|
|
color: new TinyColor(colorTextLightSolid).setAlpha(0.5).toHexString(),
|
|
|
|
},
|
|
|
|
|
|
|
|
[pickerCellInnerCls]: {
|
|
|
|
color: colorTextLightSolid,
|
|
|
|
},
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
},
|
2023-02-19 12:33:09 +08:00
|
|
|
|
|
|
|
[`&-range-hover td:before`]: {
|
|
|
|
background: controlItemBgActive,
|
|
|
|
},
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ====================== Date Panel ======================
|
|
|
|
'&-date-panel': {
|
|
|
|
[`${componentCls}-body`]: {
|
2023-11-09 16:48:45 +08:00
|
|
|
padding: `${unit(paddingXS)} ${unit(pickerDatePanelPaddingHorizontal)}`,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
[`${componentCls}-content`]: {
|
2023-11-09 16:48:45 +08:00
|
|
|
width: token.calc(cellWidth).mul(7).equal(),
|
2022-05-11 20:07:40 +08:00
|
|
|
|
|
|
|
th: {
|
2023-08-22 16:28:20 +08:00
|
|
|
width: cellWidth,
|
2023-08-17 13:15:26 +08:00
|
|
|
boxSizing: 'border-box',
|
|
|
|
padding: 0,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
// ==================== Datetime Panel ====================
|
|
|
|
'&-datetime-panel': {
|
|
|
|
display: 'flex',
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-05-11 20:07:40 +08:00
|
|
|
[`${componentCls}-time-panel`]: {
|
2023-11-09 16:48:45 +08:00
|
|
|
borderInlineStart: `${unit(lineWidth)} ${lineType} ${colorSplit}`,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-05-11 20:07:40 +08:00
|
|
|
[`${componentCls}-date-panel,
|
2022-05-20 14:33:33 +08:00
|
|
|
${componentCls}-time-panel`]: {
|
2022-10-28 16:44:19 +08:00
|
|
|
transition: `opacity ${motionDurationSlow}`,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-05-11 20:07:40 +08:00
|
|
|
// Keyboard
|
|
|
|
'&-active': {
|
|
|
|
[`${componentCls}-date-panel,
|
2022-05-20 14:33:33 +08:00
|
|
|
${componentCls}-time-panel`]: {
|
2022-05-11 20:07:40 +08:00
|
|
|
opacity: 0.3,
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-05-11 20:07:40 +08:00
|
|
|
'&-active': {
|
|
|
|
opacity: 1,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-05-11 20:07:40 +08:00
|
|
|
// ====================== Time Panel ======================
|
|
|
|
'&-time-panel': {
|
|
|
|
width: 'auto',
|
|
|
|
minWidth: 'auto',
|
|
|
|
direction: 'ltr',
|
|
|
|
|
|
|
|
[`${componentCls}-content`]: {
|
2022-04-19 16:54:52 +08:00
|
|
|
display: 'flex',
|
2022-05-11 20:07:40 +08:00
|
|
|
flex: 'auto',
|
2023-08-22 16:28:20 +08:00
|
|
|
height: timeColumnHeight,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
2022-05-11 20:07:40 +08:00
|
|
|
'&-column': {
|
|
|
|
flex: '1 0 auto',
|
2023-08-22 16:28:20 +08:00
|
|
|
width: timeColumnWidth,
|
2023-11-09 16:48:45 +08:00
|
|
|
margin: `${unit(paddingXXS)} 0`,
|
2022-05-11 20:07:40 +08:00
|
|
|
padding: 0,
|
|
|
|
overflowY: 'hidden',
|
|
|
|
textAlign: 'start',
|
|
|
|
listStyle: 'none',
|
2022-11-17 23:31:41 +08:00
|
|
|
transition: `background ${motionDurationMid}`,
|
2022-09-09 17:47:17 +08:00
|
|
|
overflowX: 'hidden',
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2023-10-27 10:17:17 +08:00
|
|
|
'&::-webkit-scrollbar': {
|
2023-10-30 14:48:15 +08:00
|
|
|
width: 8,
|
|
|
|
backgroundColor: 'transparent',
|
2023-10-27 10:17:17 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
'&::-webkit-scrollbar-thumb': {
|
2023-10-30 14:48:15 +08:00
|
|
|
backgroundColor: token.colorTextTertiary,
|
|
|
|
borderRadius: 4,
|
2023-10-27 10:17:17 +08:00
|
|
|
},
|
|
|
|
|
2023-10-30 14:48:15 +08:00
|
|
|
// For Firefox
|
2023-10-27 10:17:17 +08:00
|
|
|
'&': {
|
|
|
|
scrollbarWidth: 'thin',
|
2023-10-30 14:48:15 +08:00
|
|
|
scrollbarColor: `${token.colorTextTertiary} transparent`,
|
2023-10-27 10:17:17 +08:00
|
|
|
},
|
|
|
|
|
2022-05-11 20:07:40 +08:00
|
|
|
'&::after': {
|
|
|
|
display: 'block',
|
2023-11-09 16:48:45 +08:00
|
|
|
height: token.calc(timeColumnHeight).sub(timeCellHeight).equal(),
|
2022-05-11 20:07:40 +08:00
|
|
|
content: '""',
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
2022-05-11 20:07:40 +08:00
|
|
|
'&:not(:first-child)': {
|
2023-11-09 16:48:45 +08:00
|
|
|
borderInlineStart: `${unit(lineWidth)} ${lineType} ${colorSplit}`,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
2022-05-11 20:07:40 +08:00
|
|
|
'&-active': {
|
2022-10-28 16:44:19 +08:00
|
|
|
background: new TinyColor(controlItemBgActive).setAlpha(0.2).toHexString(),
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-05-11 20:07:40 +08:00
|
|
|
'&:hover': {
|
|
|
|
overflowY: 'auto',
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
2022-05-11 20:07:40 +08:00
|
|
|
'> li': {
|
|
|
|
margin: 0,
|
|
|
|
padding: 0,
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-05-11 20:07:40 +08:00
|
|
|
[`&${componentCls}-time-panel-cell`]: {
|
2022-10-28 16:44:19 +08:00
|
|
|
marginInline: marginXXS,
|
2022-05-11 20:07:40 +08:00
|
|
|
[`${componentCls}-time-panel-cell-inner`]: {
|
|
|
|
display: 'block',
|
2023-11-09 16:48:45 +08:00
|
|
|
width: token.calc(timeColumnWidth).sub(token.calc(marginXXS).mul(2)).equal(),
|
2023-08-22 16:28:20 +08:00
|
|
|
height: timeCellHeight,
|
2022-05-11 20:07:40 +08:00
|
|
|
margin: 0,
|
|
|
|
paddingBlock: 0,
|
|
|
|
paddingInlineEnd: 0,
|
2023-11-09 16:48:45 +08:00
|
|
|
paddingInlineStart: token.calc(timeColumnWidth).sub(timeCellHeight).div(2).equal(),
|
2022-10-28 16:44:19 +08:00
|
|
|
color: colorText,
|
2023-11-09 16:48:45 +08:00
|
|
|
lineHeight: unit(timeCellHeight),
|
2022-11-01 15:06:38 +08:00
|
|
|
borderRadius: borderRadiusSM,
|
2022-05-11 20:07:40 +08:00
|
|
|
cursor: 'pointer',
|
2022-11-17 23:31:41 +08:00
|
|
|
transition: `background ${motionDurationMid}`,
|
2022-05-11 20:07:40 +08:00
|
|
|
|
|
|
|
'&:hover': {
|
2023-08-22 16:28:20 +08:00
|
|
|
background: cellHoverBg,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-05-11 20:07:40 +08:00
|
|
|
'&-selected': {
|
|
|
|
[`${componentCls}-time-panel-cell-inner`]: {
|
2022-10-28 16:44:19 +08:00
|
|
|
background: controlItemBgActive,
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
2022-05-11 20:07:40 +08:00
|
|
|
'&-disabled': {
|
|
|
|
[`${componentCls}-time-panel-cell-inner`]: {
|
2022-10-28 16:44:19 +08:00
|
|
|
color: colorTextDisabled,
|
2022-05-11 20:07:40 +08:00
|
|
|
background: 'transparent',
|
|
|
|
cursor: 'not-allowed',
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
2022-12-04 00:45:10 +08:00
|
|
|
// https://github.com/ant-design/ant-design/issues/39227
|
|
|
|
[`&-datetime-panel ${componentCls}-time-panel-column:after`]: {
|
2023-11-09 16:48:45 +08:00
|
|
|
height: token
|
|
|
|
.calc(timeColumnHeight)
|
|
|
|
.sub(timeCellHeight)
|
|
|
|
.add(token.calc(paddingXXS).mul(2))
|
|
|
|
.equal(),
|
2022-12-04 00:45:10 +08:00
|
|
|
},
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
const genPickerStatusStyle: GenerateStyle<PickerToken> = (token) => {
|
2023-12-21 20:43:40 +08:00
|
|
|
const { componentCls, colorError, colorWarning } = token;
|
2022-05-11 20:07:40 +08:00
|
|
|
|
|
|
|
return {
|
2023-09-22 13:55:54 +08:00
|
|
|
[`${componentCls}:not(${componentCls}-disabled):not([disabled])`]: {
|
2023-02-07 20:58:40 +08:00
|
|
|
[`&${componentCls}-status-error`]: {
|
2022-07-12 18:15:14 +08:00
|
|
|
[`${componentCls}-active-bar`]: {
|
2022-10-28 16:44:19 +08:00
|
|
|
background: colorError,
|
2022-07-12 18:15:14 +08:00
|
|
|
},
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2023-02-07 20:58:40 +08:00
|
|
|
[`&${componentCls}-status-warning`]: {
|
2022-07-12 18:15:14 +08:00
|
|
|
[`${componentCls}-active-bar`]: {
|
2022-10-28 16:44:19 +08:00
|
|
|
background: colorWarning,
|
2022-07-12 18:15:14 +08:00
|
|
|
},
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
const genPickerStyle: GenerateStyle<PickerToken> = (token) => {
|
2022-10-28 16:44:19 +08:00
|
|
|
const {
|
|
|
|
componentCls,
|
|
|
|
antCls,
|
|
|
|
controlHeight,
|
2023-08-22 09:38:11 +08:00
|
|
|
paddingInline,
|
2022-11-01 15:06:38 +08:00
|
|
|
lineWidth,
|
|
|
|
lineType,
|
2022-10-28 16:44:19 +08:00
|
|
|
colorBorder,
|
2022-11-01 15:06:38 +08:00
|
|
|
borderRadius,
|
2022-11-17 23:31:41 +08:00
|
|
|
motionDurationMid,
|
2022-10-28 16:44:19 +08:00
|
|
|
colorTextDisabled,
|
|
|
|
colorTextPlaceholder,
|
|
|
|
controlHeightLG,
|
|
|
|
fontSizeLG,
|
|
|
|
controlHeightSM,
|
2023-08-22 09:38:11 +08:00
|
|
|
paddingInlineSM,
|
2022-10-28 16:44:19 +08:00
|
|
|
paddingXS,
|
|
|
|
marginXS,
|
|
|
|
colorTextDescription,
|
|
|
|
lineWidthBold,
|
|
|
|
colorPrimary,
|
|
|
|
motionDurationSlow,
|
|
|
|
zIndexPopup,
|
|
|
|
paddingXXS,
|
|
|
|
paddingSM,
|
2023-08-22 16:28:20 +08:00
|
|
|
textHeight,
|
|
|
|
cellActiveWithRangeBg,
|
2022-10-28 16:44:19 +08:00
|
|
|
colorPrimaryBorder,
|
|
|
|
sizePopupArrow,
|
|
|
|
colorBgElevated,
|
2022-11-01 15:06:38 +08:00
|
|
|
borderRadiusLG,
|
2022-10-28 16:44:19 +08:00
|
|
|
boxShadowSecondary,
|
2022-11-01 15:06:38 +08:00
|
|
|
borderRadiusSM,
|
2022-10-28 16:44:19 +08:00
|
|
|
colorSplit,
|
2023-08-22 16:28:20 +08:00
|
|
|
cellHoverBg,
|
2022-10-28 16:44:19 +08:00
|
|
|
presetsWidth,
|
|
|
|
presetsMaxWidth,
|
2023-02-03 14:36:46 +08:00
|
|
|
boxShadowPopoverArrow,
|
2023-11-09 16:48:45 +08:00
|
|
|
fontHeight,
|
|
|
|
fontHeightLG,
|
|
|
|
lineHeightLG,
|
2022-10-28 16:44:19 +08:00
|
|
|
} = token;
|
2022-05-11 20:07:40 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
return [
|
|
|
|
{
|
|
|
|
[componentCls]: {
|
|
|
|
...resetComponent(token),
|
2023-12-21 20:43:40 +08:00
|
|
|
...genPickerPadding(token, controlHeight, fontHeight, paddingInline),
|
2022-11-13 21:45:37 +08:00
|
|
|
position: 'relative',
|
|
|
|
display: 'inline-flex',
|
|
|
|
alignItems: 'center',
|
2022-12-28 18:12:16 +08:00
|
|
|
lineHeight: 1,
|
2022-11-13 21:45:37 +08:00
|
|
|
borderRadius,
|
2023-12-21 20:43:40 +08:00
|
|
|
transition: `border ${motionDurationMid}, box-shadow ${motionDurationMid}, background ${motionDurationMid}`,
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
// ======================== Input =========================
|
|
|
|
[`${componentCls}-input`]: {
|
|
|
|
position: 'relative',
|
|
|
|
display: 'inline-flex',
|
|
|
|
alignItems: 'center',
|
|
|
|
width: '100%',
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
'> input': {
|
2023-12-21 20:43:40 +08:00
|
|
|
position: 'relative',
|
|
|
|
display: 'inline-block',
|
|
|
|
width: '100%',
|
|
|
|
color: 'inherit',
|
|
|
|
fontSize: token.fontSize,
|
|
|
|
lineHeight: token.lineHeight,
|
|
|
|
transition: `all ${motionDurationMid}`,
|
|
|
|
...genPlaceholderStyle(colorTextPlaceholder),
|
2022-11-13 21:45:37 +08:00
|
|
|
flex: 'auto',
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
// Fix Firefox flex not correct:
|
|
|
|
// https://github.com/ant-design/ant-design/pull/20023#issuecomment-564389553
|
|
|
|
minWidth: 1,
|
|
|
|
height: 'auto',
|
|
|
|
padding: 0,
|
2022-05-11 20:07:40 +08:00
|
|
|
background: 'transparent',
|
2022-11-13 21:45:37 +08:00
|
|
|
border: 0,
|
2023-09-26 13:42:56 +08:00
|
|
|
fontFamily: 'inherit',
|
2022-11-13 21:45:37 +08:00
|
|
|
|
|
|
|
'&:focus': {
|
|
|
|
boxShadow: 'none',
|
2023-12-21 20:43:40 +08:00
|
|
|
outline: 0,
|
2022-11-13 21:45:37 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
'&[disabled]': {
|
|
|
|
background: 'transparent',
|
2023-12-21 20:43:40 +08:00
|
|
|
color: colorTextDisabled,
|
|
|
|
cursor: 'not-allowed',
|
2022-11-13 21:45:37 +08:00
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
'&:hover': {
|
|
|
|
[`${componentCls}-clear`]: {
|
|
|
|
opacity: 1,
|
|
|
|
},
|
2023-12-21 20:43:40 +08:00
|
|
|
// Should use the following selector, but since `:has` has poor compatibility,
|
|
|
|
// we use `:not(:last-child)` instead, which may cause some problems in some cases.
|
|
|
|
// [`${componentCls}-suffix:has(+ ${componentCls}-clear)`]: {
|
|
|
|
[`${componentCls}-suffix:not(:last-child)`]: {
|
|
|
|
opacity: 0,
|
|
|
|
},
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
'&-placeholder': {
|
|
|
|
'> input': {
|
|
|
|
color: colorTextPlaceholder,
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
// Size
|
|
|
|
'&-large': {
|
2023-12-21 20:43:40 +08:00
|
|
|
...genPickerPadding(token, controlHeightLG, fontHeightLG, paddingInline),
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
[`${componentCls}-input > input`]: {
|
|
|
|
fontSize: fontSizeLG,
|
2023-11-09 16:48:45 +08:00
|
|
|
lineHeight: lineHeightLG,
|
2022-11-13 21:45:37 +08:00
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
'&-small': {
|
2023-12-21 20:43:40 +08:00
|
|
|
...genPickerPadding(token, controlHeightSM, fontHeight, paddingInlineSM),
|
2022-11-13 21:45:37 +08:00
|
|
|
},
|
2022-05-11 20:07:40 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
[`${componentCls}-suffix`]: {
|
|
|
|
display: 'flex',
|
|
|
|
flex: 'none',
|
|
|
|
alignSelf: 'center',
|
2023-11-09 16:48:45 +08:00
|
|
|
marginInlineStart: token.calc(paddingXS).div(2).equal(),
|
2022-11-13 21:45:37 +08:00
|
|
|
color: colorTextDisabled,
|
|
|
|
lineHeight: 1,
|
|
|
|
pointerEvents: 'none',
|
2023-12-21 20:43:40 +08:00
|
|
|
transition: `opacity ${motionDurationMid}, color ${motionDurationMid}`,
|
2022-05-11 20:07:40 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
'> *': {
|
|
|
|
verticalAlign: 'top',
|
2022-05-11 20:07:40 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
'&:not(:last-child)': {
|
|
|
|
marginInlineEnd: marginXS,
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
[`${componentCls}-clear`]: {
|
|
|
|
position: 'absolute',
|
|
|
|
top: '50%',
|
|
|
|
insetInlineEnd: 0,
|
|
|
|
color: colorTextDisabled,
|
|
|
|
lineHeight: 1,
|
|
|
|
transform: 'translateY(-50%)',
|
|
|
|
cursor: 'pointer',
|
|
|
|
opacity: 0,
|
2022-11-17 23:31:41 +08:00
|
|
|
transition: `opacity ${motionDurationMid}, color ${motionDurationMid}`,
|
2022-05-11 20:07:40 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
'> *': {
|
|
|
|
verticalAlign: 'top',
|
|
|
|
},
|
2022-05-11 20:07:40 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
'&:hover': {
|
|
|
|
color: colorTextDescription,
|
|
|
|
},
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
[`${componentCls}-separator`]: {
|
|
|
|
position: 'relative',
|
|
|
|
display: 'inline-block',
|
|
|
|
width: '1em',
|
|
|
|
height: fontSizeLG,
|
|
|
|
color: colorTextDisabled,
|
|
|
|
fontSize: fontSizeLG,
|
|
|
|
verticalAlign: 'top',
|
|
|
|
cursor: 'default',
|
2022-05-11 20:07:40 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
[`${componentCls}-focused &`]: {
|
|
|
|
color: colorTextDescription,
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
[`${componentCls}-range-separator &`]: {
|
|
|
|
[`${componentCls}-disabled &`]: {
|
|
|
|
cursor: 'not-allowed',
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
// ======================== Range =========================
|
|
|
|
'&-range': {
|
|
|
|
position: 'relative',
|
|
|
|
display: 'inline-flex',
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
// Clear
|
2022-05-11 20:07:40 +08:00
|
|
|
[`${componentCls}-clear`]: {
|
2023-08-22 09:38:11 +08:00
|
|
|
insetInlineEnd: paddingInline,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
'&:hover': {
|
|
|
|
[`${componentCls}-clear`]: {
|
|
|
|
opacity: 1,
|
|
|
|
},
|
2023-12-21 20:43:40 +08:00
|
|
|
// Should use the following selector, but since `:has` has poor compatibility,
|
|
|
|
// we use `:not(:last-child)` instead, which may cause some problems in some cases.
|
|
|
|
// [`${componentCls}-suffix:has(+ ${componentCls}-clear)`]: {
|
|
|
|
[`${componentCls}-suffix:not(:last-child)`]: {
|
|
|
|
opacity: 0,
|
|
|
|
},
|
2022-11-13 21:45:37 +08:00
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
// Active bar
|
2022-05-11 20:07:40 +08:00
|
|
|
[`${componentCls}-active-bar`]: {
|
2023-11-09 16:48:45 +08:00
|
|
|
bottom: token.calc(lineWidth).mul(-1).equal(),
|
2022-11-13 21:45:37 +08:00
|
|
|
height: lineWidthBold,
|
2023-08-22 09:38:11 +08:00
|
|
|
marginInlineStart: paddingInline,
|
2022-11-13 21:45:37 +08:00
|
|
|
background: colorPrimary,
|
|
|
|
opacity: 0,
|
|
|
|
transition: `all ${motionDurationSlow} ease-out`,
|
|
|
|
pointerEvents: 'none',
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
[`&${componentCls}-focused`]: {
|
|
|
|
[`${componentCls}-active-bar`]: {
|
|
|
|
opacity: 1,
|
|
|
|
},
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
[`${componentCls}-range-separator`]: {
|
|
|
|
alignItems: 'center',
|
2023-11-09 16:48:45 +08:00
|
|
|
padding: `0 ${unit(paddingXS)}`,
|
2022-11-13 21:45:37 +08:00
|
|
|
lineHeight: 1,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
[`&${componentCls}-small`]: {
|
|
|
|
[`${componentCls}-clear`]: {
|
2023-08-22 09:38:11 +08:00
|
|
|
insetInlineEnd: paddingInlineSM,
|
2022-11-13 21:45:37 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
[`${componentCls}-active-bar`]: {
|
2023-08-22 09:38:11 +08:00
|
|
|
marginInlineStart: paddingInlineSM,
|
2022-11-13 21:45:37 +08:00
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
// ======================= Dropdown =======================
|
|
|
|
'&-dropdown': {
|
|
|
|
...resetComponent(token),
|
|
|
|
...genPanelStyle(token),
|
|
|
|
position: 'absolute',
|
|
|
|
// Fix incorrect position of picker popup
|
|
|
|
// https://github.com/ant-design/ant-design/issues/35590
|
|
|
|
top: -9999,
|
|
|
|
left: {
|
|
|
|
_skip_check_: true,
|
|
|
|
value: -9999,
|
|
|
|
},
|
|
|
|
zIndex: zIndexPopup,
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2023-01-20 10:31:27 +08:00
|
|
|
[`&${componentCls}-dropdown-hidden`]: {
|
2022-11-13 21:45:37 +08:00
|
|
|
display: 'none',
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2023-01-20 10:31:27 +08:00
|
|
|
[`&${componentCls}-dropdown-placement-bottomLeft`]: {
|
2022-11-13 21:45:37 +08:00
|
|
|
[`${componentCls}-range-arrow`]: {
|
|
|
|
top: 0,
|
|
|
|
display: 'block',
|
|
|
|
transform: 'translateY(-100%)',
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
2023-01-20 10:31:27 +08:00
|
|
|
[`&${componentCls}-dropdown-placement-topLeft`]: {
|
2022-11-13 21:45:37 +08:00
|
|
|
[`${componentCls}-range-arrow`]: {
|
|
|
|
bottom: 0,
|
|
|
|
display: 'block',
|
|
|
|
transform: 'translateY(100%) rotate(180deg)',
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
2023-01-20 10:31:27 +08:00
|
|
|
[`&${antCls}-slide-up-enter${antCls}-slide-up-enter-active${componentCls}-dropdown-placement-topLeft,
|
|
|
|
&${antCls}-slide-up-enter${antCls}-slide-up-enter-active${componentCls}-dropdown-placement-topRight,
|
|
|
|
&${antCls}-slide-up-appear${antCls}-slide-up-appear-active${componentCls}-dropdown-placement-topLeft,
|
|
|
|
&${antCls}-slide-up-appear${antCls}-slide-up-appear-active${componentCls}-dropdown-placement-topRight`]:
|
|
|
|
{
|
|
|
|
animationName: slideDownIn,
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2023-01-20 10:31:27 +08:00
|
|
|
[`&${antCls}-slide-up-enter${antCls}-slide-up-enter-active${componentCls}-dropdown-placement-bottomLeft,
|
|
|
|
&${antCls}-slide-up-enter${antCls}-slide-up-enter-active${componentCls}-dropdown-placement-bottomRight,
|
|
|
|
&${antCls}-slide-up-appear${antCls}-slide-up-appear-active${componentCls}-dropdown-placement-bottomLeft,
|
|
|
|
&${antCls}-slide-up-appear${antCls}-slide-up-appear-active${componentCls}-dropdown-placement-bottomRight`]:
|
|
|
|
{
|
|
|
|
animationName: slideUpIn,
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2023-01-20 10:31:27 +08:00
|
|
|
[`&${antCls}-slide-up-leave${antCls}-slide-up-leave-active${componentCls}-dropdown-placement-topLeft,
|
|
|
|
&${antCls}-slide-up-leave${antCls}-slide-up-leave-active${componentCls}-dropdown-placement-topRight`]:
|
|
|
|
{
|
|
|
|
animationName: slideDownOut,
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2023-01-20 10:31:27 +08:00
|
|
|
[`&${antCls}-slide-up-leave${antCls}-slide-up-leave-active${componentCls}-dropdown-placement-bottomLeft,
|
|
|
|
&${antCls}-slide-up-leave${antCls}-slide-up-leave-active${componentCls}-dropdown-placement-bottomRight`]:
|
|
|
|
{
|
|
|
|
animationName: slideUpOut,
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
// Time picker with additional style
|
|
|
|
[`${componentCls}-panel > ${componentCls}-time-panel`]: {
|
|
|
|
paddingTop: paddingXXS,
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
// ======================== Ranges ========================
|
|
|
|
[`${componentCls}-ranges`]: {
|
|
|
|
marginBottom: 0,
|
2023-11-09 16:48:45 +08:00
|
|
|
padding: `${unit(paddingXXS)} ${unit(paddingSM)}`,
|
2022-11-13 21:45:37 +08:00
|
|
|
overflow: 'hidden',
|
2023-11-09 16:48:45 +08:00
|
|
|
lineHeight: unit(
|
|
|
|
token
|
|
|
|
.calc(textHeight)
|
|
|
|
.sub(token.calc(lineWidth).mul(2))
|
|
|
|
.sub(token.calc(paddingXS).div(2))
|
|
|
|
.equal(),
|
|
|
|
),
|
2022-11-13 21:45:37 +08:00
|
|
|
textAlign: 'start',
|
|
|
|
listStyle: 'none',
|
|
|
|
display: 'flex',
|
|
|
|
justifyContent: 'space-between',
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
'> li': {
|
|
|
|
display: 'inline-block',
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
// https://github.com/ant-design/ant-design/issues/23687
|
|
|
|
[`${componentCls}-preset > ${antCls}-tag-blue`]: {
|
|
|
|
color: colorPrimary,
|
2023-08-22 16:28:20 +08:00
|
|
|
background: cellActiveWithRangeBg,
|
2022-11-13 21:45:37 +08:00
|
|
|
borderColor: colorPrimaryBorder,
|
|
|
|
cursor: 'pointer',
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
[`${componentCls}-ok`]: {
|
|
|
|
marginInlineStart: 'auto',
|
|
|
|
},
|
|
|
|
},
|
2022-10-28 16:44:19 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
[`${componentCls}-range-wrapper`]: {
|
2022-10-28 16:44:19 +08:00
|
|
|
display: 'flex',
|
2022-11-13 21:45:37 +08:00
|
|
|
position: 'relative',
|
2022-10-28 16:44:19 +08:00
|
|
|
},
|
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
[`${componentCls}-range-arrow`]: {
|
|
|
|
position: 'absolute',
|
|
|
|
zIndex: 1,
|
|
|
|
display: 'none',
|
2023-11-09 16:48:45 +08:00
|
|
|
marginInlineStart: token.calc(paddingInline).mul(1.5).equal(),
|
2022-11-13 21:45:37 +08:00
|
|
|
transition: `left ${motionDurationSlow} ease-out`,
|
2023-11-09 16:48:45 +08:00
|
|
|
...genRoundedArrow(token, colorBgElevated, boxShadowPopoverArrow),
|
2022-11-13 21:45:37 +08:00
|
|
|
},
|
2022-10-28 16:44:19 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
[`${componentCls}-panel-container`]: {
|
|
|
|
overflow: 'hidden',
|
|
|
|
verticalAlign: 'top',
|
|
|
|
background: colorBgElevated,
|
|
|
|
borderRadius: borderRadiusLG,
|
|
|
|
boxShadow: boxShadowSecondary,
|
|
|
|
transition: `margin ${motionDurationSlow}`,
|
|
|
|
|
|
|
|
// ======================== Layout ========================
|
|
|
|
[`${componentCls}-panel-layout`]: {
|
|
|
|
display: 'flex',
|
|
|
|
flexWrap: 'nowrap',
|
|
|
|
alignItems: 'stretch',
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
// ======================== Preset ========================
|
|
|
|
[`${componentCls}-presets`]: {
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'column',
|
|
|
|
minWidth: presetsWidth,
|
|
|
|
maxWidth: presetsMaxWidth,
|
|
|
|
|
|
|
|
ul: {
|
|
|
|
height: 0,
|
|
|
|
flex: 'auto',
|
|
|
|
listStyle: 'none',
|
|
|
|
overflow: 'auto',
|
|
|
|
margin: 0,
|
|
|
|
padding: paddingXS,
|
2023-11-09 16:48:45 +08:00
|
|
|
borderInlineEnd: `${unit(lineWidth)} ${lineType} ${colorSplit}`,
|
2022-11-13 21:45:37 +08:00
|
|
|
|
|
|
|
li: {
|
|
|
|
...textEllipsis,
|
|
|
|
borderRadius: borderRadiusSM,
|
|
|
|
paddingInline: paddingXS,
|
2023-11-09 16:48:45 +08:00
|
|
|
paddingBlock: token.calc(controlHeightSM).sub(fontHeight).div(2).equal(),
|
2022-11-13 21:45:37 +08:00
|
|
|
cursor: 'pointer',
|
|
|
|
transition: `all ${motionDurationSlow}`,
|
|
|
|
|
|
|
|
'+ li': {
|
|
|
|
marginTop: marginXS,
|
|
|
|
},
|
|
|
|
|
|
|
|
'&:hover': {
|
2023-08-22 16:28:20 +08:00
|
|
|
background: cellHoverBg,
|
2022-11-13 21:45:37 +08:00
|
|
|
},
|
2022-10-28 16:44:19 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-08-25 19:39:26 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
// ======================== Panels ========================
|
|
|
|
[`${componentCls}-panels`]: {
|
|
|
|
display: 'inline-flex',
|
|
|
|
flexWrap: 'nowrap',
|
|
|
|
direction: 'ltr',
|
2022-10-28 16:44:19 +08:00
|
|
|
|
2022-08-25 19:39:26 +08:00
|
|
|
[`${componentCls}-panel`]: {
|
2023-11-09 16:48:45 +08:00
|
|
|
borderWidth: `0 0 ${unit(lineWidth)}`,
|
2022-11-13 21:45:37 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
'&:last-child': {
|
|
|
|
[`${componentCls}-panel`]: {
|
|
|
|
borderWidth: 0,
|
|
|
|
},
|
2022-08-25 19:39:26 +08:00
|
|
|
},
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
[`${componentCls}-panel`]: {
|
|
|
|
verticalAlign: 'top',
|
|
|
|
background: 'transparent',
|
|
|
|
borderRadius: 0,
|
|
|
|
borderWidth: 0,
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
[`${componentCls}-content,
|
2022-05-11 20:07:40 +08:00
|
|
|
table`]: {
|
2022-11-13 21:45:37 +08:00
|
|
|
textAlign: 'center',
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
'&-focused': {
|
|
|
|
borderColor: colorBorder,
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
'&-dropdown-range': {
|
2023-11-09 16:48:45 +08:00
|
|
|
padding: `${unit(token.calc(sizePopupArrow).mul(2).div(3).equal())} 0`,
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
'&-hidden': {
|
|
|
|
display: 'none',
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
'&-rtl': {
|
|
|
|
direction: 'rtl',
|
2022-05-11 20:07:40 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
[`${componentCls}-separator`]: {
|
|
|
|
transform: 'rotate(180deg)',
|
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
|
2022-11-13 21:45:37 +08:00
|
|
|
[`${componentCls}-footer`]: {
|
|
|
|
'&-extra': {
|
|
|
|
direction: 'rtl',
|
|
|
|
},
|
2022-05-11 20:07:40 +08:00
|
|
|
},
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-11-13 21:45:37 +08:00
|
|
|
|
|
|
|
// Follow code may reuse in other components
|
|
|
|
initSlideMotion(token, 'slide-up'),
|
|
|
|
initSlideMotion(token, 'slide-down'),
|
|
|
|
initMoveMotion(token, 'move-up'),
|
|
|
|
initMoveMotion(token, 'move-down'),
|
|
|
|
];
|
2022-04-19 16:54:52 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// ============================== Export ==============================
|
2023-11-29 17:23:45 +08:00
|
|
|
export default genStyleHooks(
|
2022-04-19 16:54:52 +08:00
|
|
|
'DatePicker',
|
2022-11-13 21:45:37 +08:00
|
|
|
(token) => {
|
2023-08-22 09:38:11 +08:00
|
|
|
const pickerToken = mergeToken<PickerToken>(initInputToken(token), initPickerPanelToken(token));
|
2022-12-12 16:36:46 +08:00
|
|
|
return [
|
|
|
|
genPickerStyle(pickerToken),
|
2023-12-21 20:43:40 +08:00
|
|
|
genVariantsStyle(pickerToken),
|
2022-12-12 16:36:46 +08:00
|
|
|
genPickerStatusStyle(pickerToken),
|
|
|
|
// =====================================================
|
|
|
|
// == Space Compact ==
|
|
|
|
// =====================================================
|
|
|
|
genCompactItemStyle(token, {
|
|
|
|
focusElCls: `${token.componentCls}-focused`,
|
|
|
|
}),
|
|
|
|
];
|
2022-04-19 16:54:52 +08:00
|
|
|
},
|
2023-11-09 16:48:45 +08:00
|
|
|
prepareComponentToken,
|
2022-04-19 16:54:52 +08:00
|
|
|
);
|