From 026b74aa0edc97b758aecfdf6ae1b6bf1e3266bb Mon Sep 17 00:00:00 2001 From: lijianan <574980606@qq.com> Date: Wed, 10 May 2023 14:56:58 +0800 Subject: [PATCH] fix: add active style (#42249) --- components/segmented/style/index.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/components/segmented/style/index.tsx b/components/segmented/style/index.tsx index 454628878b..abe63909b3 100644 --- a/components/segmented/style/index.tsx +++ b/components/segmented/style/index.tsx @@ -1,7 +1,7 @@ import type { CSSObject } from '@ant-design/cssinjs'; +import { resetComponent, textEllipsis } from '../../style'; import type { FullToken, GenerateStyle } from '../../theme/internal'; import { genComponentStyleHook, mergeToken } from '../../theme/internal'; -import { resetComponent, textEllipsis } from '../../style'; export interface ComponentToken {} @@ -13,6 +13,7 @@ interface SegmentedToken extends FullToken<'Segmented'> { labelColorHover: string; bgColor: string; bgColorHover: string; + bgColorActive: string; bgColorSelected: string; } @@ -106,11 +107,16 @@ const genSegmentedStyle: GenerateStyle = (token: SegmentedToken) [`&:hover:not(${componentCls}-item-selected):not(${componentCls}-item-disabled)`]: { color: token.labelColorHover, - '&::after': { backgroundColor: token.bgColorHover, }, }, + [`&:active:not(${componentCls}-item-selected):not(${componentCls}-item-disabled)`]: { + color: token.labelColorHover, + '&::after': { + backgroundColor: token.bgColorActive, + }, + }, '&-label': { minHeight: token.controlHeight - token.segmentedContainerPadding * 2, @@ -200,6 +206,7 @@ export default genComponentStyleHook('Segmented', (token) => { colorTextLabel, colorText, colorFillSecondary, + colorFill, colorBgLayout, colorBgElevated, } = token; @@ -212,6 +219,7 @@ export default genComponentStyleHook('Segmented', (token) => { labelColorHover: colorText, bgColor: colorBgLayout, bgColorHover: colorFillSecondary, + bgColorActive: colorFill, bgColorSelected: colorBgElevated, }); return [genSegmentedStyle(segmentedToken)];