fix: Pagination select arrow icon missing (#49262)

This commit is contained in:
afc163 2024-06-06 10:00:39 +08:00 committed by GitHub
parent 16cc388735
commit 0e99c7c8f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -331,7 +331,7 @@ const genPaginationSimpleStyle: GenerateStyle<PaginationToken, CSSObject> = (tok
};
const genPaginationJumpStyle: GenerateStyle<PaginationToken, CSSObject> = (token) => {
const { componentCls } = token;
const { componentCls, antCls } = token;
return {
[`${componentCls}-jump-prev, ${componentCls}-jump-next`]: {
@ -463,6 +463,11 @@ const genPaginationJumpStyle: GenerateStyle<PaginationToken, CSSObject> = (token
'&-size-changer': {
display: 'inline-block',
width: 'auto',
// https://github.com/ant-design/ant-design/issues/49258
[`${antCls}-select-arrow:not(:last-child)`]: {
opacity: 1,
},
},
'&-quick-jumper': {