@aplus-frontend/ui
Version:
95 lines (94 loc) • 2.08 kB
CSS
.reset-component {
box-sizing: border-box;
margin: 0;
padding: 0;
color: #182948;
font-size: 12px;
font-family: inherit;
line-height: 18px;
list-style: none;
}
.reset-scrollbar ::-webkit-scrollbar {
width: 10px;
height: 10px;
}
.reset-scrollbar ::-webkit-scrollbar-thumb {
background-color: var(--ap-scrollbar-thumb-color-base);
background-clip: content-box;
border: 1px solid transparent;
border-radius: 4px;
}
.reset-scrollbar ::-webkit-scrollbar-track,
.reset-scrollbar ::-webkit-scrollbar-corner {
background-color: var(--ap-table-header-bg, #f2f6f9);
}
.reset-scrollbar ::-webkit-scrollbar-thumb:hover,
.reset-scrollbar ::-webkit-scrollbar-thumb:active {
background-color: var(--ap-scrollbar-thumb-color-hover);
}
.clear-fix::before {
display: table;
content: '';
}
.clear-fix::after {
display: table;
clear: both;
content: '';
}
.common-style {
box-sizing: border-box;
font-size: 12px;
font-family: inherit;
}
.common-style::before,
.common-style::after {
box-sizing: border-box;
}
.aplus-ap-list-content-container {
position: relative;
}
.aplus-ap-list-content-container--spinning {
opacity: 0.5;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
pointer-events: none;
}
.aplus-ap-list__footer {
margin-top: 8px;
display: flex;
justify-content: flex-end;
}
.aplus-ap-list__spin-wrapper {
position: absolute;
width: 100%;
top: 0;
bottom: 0;
border-radius: 4px;
display: flex;
justify-content: center;
align-items: center;
z-index: 1;
}
.aplus-ap-list-scroll-wrapper {
height: 100%;
}
.aplus-ap-list--adaptive {
height: 100%;
display: flex;
flex-direction: column;
}
.aplus-ap-list--adaptive .aplus-ap-list-content-container {
flex-grow: 1;
flex-shrink: 1;
overflow: hidden;
}
.aplus-ap-list--adaptive .aplus-ap-list-content-container:has(.ant-empty) {
display: flex;
justify-content: center;
align-items: center;
}
.aplus-ap-list--adaptive .aplus-ap-list-content-container .aplus-ap-list__content {
height: 100%;
overflow: auto;
}