From 57d8ae8fce8a5d1996503fbc959fd7c9581eb8fc Mon Sep 17 00:00:00 2001 From: afc163 Date: Sat, 27 Jan 2024 23:02:48 +0800 Subject: [PATCH] fix: Select and AutoComplete notFoundContent style missing (#47192) --- components/select/style/dropdown.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/select/style/dropdown.ts b/components/select/style/dropdown.ts index aafa6d2162..35548cc68b 100644 --- a/components/select/style/dropdown.ts +++ b/components/select/style/dropdown.ts @@ -155,6 +155,11 @@ const genSingleStyle: GenerateStyle = (token) => { paddingInlineStart: token.calc(token.controlPaddingHorizontal).mul(2).equal(), }, }, + + '&-empty': { + ...genItemStyle(token), + color: token.colorTextDisabled, + }, }, // =========================== RTL ===========================