mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-23 20:21:57 +08:00
fix: Pagination select arrow icon missing (#49262)
This commit is contained in:
parent
16cc388735
commit
0e99c7c8f1
@ -331,7 +331,7 @@ const genPaginationSimpleStyle: GenerateStyle<PaginationToken, CSSObject> = (tok
|
|||||||
};
|
};
|
||||||
|
|
||||||
const genPaginationJumpStyle: GenerateStyle<PaginationToken, CSSObject> = (token) => {
|
const genPaginationJumpStyle: GenerateStyle<PaginationToken, CSSObject> = (token) => {
|
||||||
const { componentCls } = token;
|
const { componentCls, antCls } = token;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
[`${componentCls}-jump-prev, ${componentCls}-jump-next`]: {
|
[`${componentCls}-jump-prev, ${componentCls}-jump-next`]: {
|
||||||
@ -463,6 +463,11 @@ const genPaginationJumpStyle: GenerateStyle<PaginationToken, CSSObject> = (token
|
|||||||
'&-size-changer': {
|
'&-size-changer': {
|
||||||
display: 'inline-block',
|
display: 'inline-block',
|
||||||
width: 'auto',
|
width: 'auto',
|
||||||
|
|
||||||
|
// https://github.com/ant-design/ant-design/issues/49258
|
||||||
|
[`${antCls}-select-arrow:not(:last-child)`]: {
|
||||||
|
opacity: 1,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
'&-quick-jumper': {
|
'&-quick-jumper': {
|
||||||
|
Loading…
Reference in New Issue
Block a user