43 lines
1.2 KiB
SCSS
43 lines
1.2 KiB
SCSS
@each $theme in dark, light {
|
|
|
|
// @include theme($theme);
|
|
.v-application.#{$theme}-mode {
|
|
|
|
.ant-pagination-item,
|
|
.ant-pagination-prev,
|
|
.ant-pagination-next {
|
|
// border: none !important;
|
|
// box-shadow: none !important;
|
|
background-color: map-deep-get($config, #{$theme}, "paging-background") !important;
|
|
color: map-deep-get($config, #{$theme}, "paging-text") !important;
|
|
border: 0.5px solid #424242;
|
|
|
|
.ant-pagination-item-link {
|
|
border: none;
|
|
background-color: map-deep-get($config, #{$theme}, "paging-background") !important;
|
|
}
|
|
}
|
|
|
|
.ant-pagination-item-active {
|
|
border-color: #1890ff !important;
|
|
color: #1890ff !important
|
|
}
|
|
|
|
.ant-pagination-options-size-changer {
|
|
.ant-select-selection {
|
|
border: 0.5px solid #424242;
|
|
background: map-deep-get($config, #{$theme}, "paging-background") !important;
|
|
color: map-deep-get($config, #{$theme}, "paging-text") !important;
|
|
}
|
|
|
|
.ant-select-arrow {
|
|
color: map-deep-get($config, #{$theme}, "paging-text") !important;
|
|
}
|
|
|
|
.ant-select-selection__rendered {
|
|
margin-right: 30px;
|
|
}
|
|
}
|
|
|
|
}
|
|
} |