@aplus-frontend/ui
Version:
103 lines (102 loc) • 2.39 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-action-item {
box-sizing: border-box;
margin: 0;
padding: 0;
color: #182948;
font-size: 12px;
font-family: inherit;
line-height: 18px;
list-style: none;
display: inline-block;
cursor: pointer;
}
.aplus-action-item--primary {
color: var(--ap-color-link);
}
.aplus-action-item--primary:not(.aplus-action-item--disabled):hover {
color: var(--ap-color-link-hover);
}
.aplus-action-item--success {
color: var(--ap-color-success);
}
.aplus-action-item--error {
color: var(--ap-color-error);
}
.aplus-action-item--warn {
color: var(--ap-color-warn);
}
.aplus-action-item--loading {
opacity: 0.35;
transition: opacity 0.2s;
cursor: default;
}
.aplus-action-item--loading .btn-loading-icon {
margin-right: 4px;
}
.aplus-action-item--disabled {
cursor: not-allowed;
}
.aplus-action-item--primary.aplus-action-item--disabled {
color: var(--ap-color-link-disabled);
}
.aplus-action-item--success.aplus-action-item--disabled {
color: var(--ap-color-success-disabled);
}
.aplus-action-item--error.aplus-action-item--disabled {
color: var(--ap-color-error-disabled);
}
.aplus-action-item--warn.aplus-action-item--disabled {
color: var(--ap-color-warn-disabled);
}
.aplus-action-item__icon-wrapper {
padding-right: 4px;
}
.aplus-action-item--icon-first .aplus-action-item__icon-wrapper {
padding-right: 0;
}