@aplus-frontend/ui
Version:
67 lines (66 loc) • 1.56 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-radio-group {
font-size: 12px;
padding: 8px 8px 0;
background-color: #fff;
}
.aplus-ap-radio-group__item {
cursor: pointer;
padding-inline: 12px;
border-radius: 4px;
color: var(--ap-text-color-1);
transition: all 0.3s ease-in-out;
will-change: background-color;
}
.aplus-ap-radio-group__item:hover {
background-color: var(--ap-color-bg-2);
}
.aplus-ap-radio-group__item--active {
color: var(--ap-color-primary);
background-color: var(--ap-radio-group-item-active-bg-color) ;
}