2026-04-15 09:47:31 +00:00
|
|
|
.app-pagination-container {
|
|
|
|
|
margin-top: auto;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
width: 100%;
|
2026-06-26 06:13:40 +00:00
|
|
|
height: 50px;
|
|
|
|
|
padding-top: 8px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-pagination-total {
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
color: #333;
|
|
|
|
|
white-space: nowrap;
|
2026-04-15 09:47:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-pagination-container .ant-pagination {
|
2026-06-26 06:13:40 +00:00
|
|
|
flex: 1 1 auto;
|
|
|
|
|
width: auto;
|
|
|
|
|
min-width: 0;
|
2026-04-15 09:47:31 +00:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2026-06-26 06:13:40 +00:00
|
|
|
justify-content: flex-end;
|
2026-04-15 09:47:31 +00:00
|
|
|
margin: 0 !important;
|
2026-06-26 06:13:40 +00:00
|
|
|
overflow: visible;
|
2026-04-15 09:47:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-pagination-container .ant-pagination-total-text {
|
2026-06-26 06:13:40 +00:00
|
|
|
display: none;
|
2026-04-15 09:47:31 +00:00
|
|
|
}
|
2026-06-23 07:23:46 +00:00
|
|
|
|
|
|
|
|
.app-pagination-container .ant-select-selection-search-input {
|
|
|
|
|
caret-color: transparent;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2026-06-26 06:13:40 +00:00
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.app-pagination-container {
|
|
|
|
|
height: auto;
|
|
|
|
|
min-height: 50px;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
overflow: visible;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-pagination-container .ant-pagination {
|
|
|
|
|
width: 100%;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
row-gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|