@aplus-frontend/ui
Version:
93 lines (92 loc) • 2.33 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-scroll-bar {
position: relative;
}
.aplus-scroll-bar--horizontal {
width: 100%;
height: var(--aplus-scroll-bar-track-width, 10px);
}
.aplus-scroll-bar--vertical {
width: var(--aplus-scroll-bar-track-width, 10px);
height: 100%;
}
.aplus-scroll-bar__track {
position: absolute;
width: 100%;
height: 100%;
top: 0;
inset-inline-start: 0;
cursor: pointer;
background-color: var(--aplus-scroll-bar-track-color, #F2F2F2);
}
.aplus-scroll-bar__track--disabled {
pointer-events: none;
background-color: #FAFAFA;
}
.aplus-scroll-bar__track--hidden {
pointer-events: none;
background-color: transparent;
}
.aplus-scroll-bar__bar {
position: absolute;
border-radius: var(--aplus-scroll-bar-bar-width, 8px);
background-color: var(--aplus-scroll-bar-bar-color, #c7c8cc);
cursor: pointer;
}
.aplus-scroll-bar__bar--disabled {
pointer-events: none;
box-shadow: none;
}
.aplus-scroll-bar__bar--horizontal {
height: var(--aplus-scroll-bar-bar-width, 8px);
top: calc(var(--aplus-scroll-bar-track-width, 10px) / 2 - var(--aplus-scroll-bar-bar-width, 8px) / 2);
}
.aplus-scroll-bar__bar--vertical {
width: var(--aplus-scroll-bar-bar-width, 8px);
left: calc(var(--aplus-scroll-bar-track-width, 10px) / 2 - var(--aplus-scroll-bar-bar-width, 8px) / 2);
}