From 812be95f59da60e046e4023a2933c61155193c4d Mon Sep 17 00:00:00 2001 From: Dunqing Date: Fri, 25 Nov 2022 11:34:27 +0800 Subject: [PATCH 1/3] fix: incorrect select text for dark theme --- components/select/style/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/components/select/style/index.tsx b/components/select/style/index.tsx index 66b8413e9d01..13ecfcddd1a5 100644 --- a/components/select/style/index.tsx +++ b/components/select/style/index.tsx @@ -35,6 +35,7 @@ const genSelectorStyle: GenerateStyle = (token) => { input: { cursor: 'auto', + color: token.colorText, }, }, From db1a4504ff33132ac8a83d6d9bf2255499ef84fb Mon Sep 17 00:00:00 2001 From: Dunqing Date: Fri, 25 Nov 2022 11:48:59 +0800 Subject: [PATCH 2/3] Update components/select/style/index.tsx Co-authored-by: afc163 --- components/select/style/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/select/style/index.tsx b/components/select/style/index.tsx index 13ecfcddd1a5..adc262db5b29 100644 --- a/components/select/style/index.tsx +++ b/components/select/style/index.tsx @@ -35,7 +35,7 @@ const genSelectorStyle: GenerateStyle = (token) => { input: { cursor: 'auto', - color: token.colorText, + color: 'inherit', }, }, From b68154fff57f29873f32efc97a980d2924ab9d28 Mon Sep 17 00:00:00 2001 From: Dunqing Date: Fri, 25 Nov 2022 11:56:00 +0800 Subject: [PATCH 3/3] fix: same --- components/pagination/style/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/components/pagination/style/index.tsx b/components/pagination/style/index.tsx index 08a753f345a4..3b4707fa15e1 100644 --- a/components/pagination/style/index.tsx +++ b/components/pagination/style/index.tsx @@ -222,6 +222,7 @@ const genPaginationSimpleStyle: GenerateStyle = (tok borderRadius: token.borderRadius, outline: 'none', transition: `border-color ${token.motionDurationMid}`, + color: 'inherit', '&:hover': { borderColor: token.colorPrimary,