@aplus-frontend/ui
Version:
99 lines (98 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-copy {
display: flex;
align-items: center;
width: 100%;
}
.aplus-ap-copy .copy-btn {
opacity: 0;
transition: opacity 0.2s ease;
}
.aplus-ap-copy:hover .copy-btn {
opacity: 1;
}
.aplus-ap-copy__text {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
height: 18px;
line-height: 18px;
}
.aplus-ap-copy--text-major {
color: var(--ap-text-color-2);
}
.aplus-ap-copy--text-minor {
color: var(--ap-text-color-3);
}
.aplus-ap-copy--text-link {
color: var(--ap-color-link);
cursor: pointer;
}
.aplus-ap-copy--text-link:hover {
color: var(--ap-color-link-hover);
}
.aplus-ap-copy__copy-btn {
flex-shrink: 0;
width: 16px;
margin-left: 4px;
display: flex;
align-items: center;
}
.aplus-ap-copy__copy-btn .aplus-frontend-icon {
cursor: pointer;
color: #ABB7CC;
height: 14px;
line-height: 14px;
}
.aplus-ap-copy__copy-btn:hover .aplus-frontend-icon {
cursor: pointer;
color: var(--ap-color-link);
}
.aplus-ap-copy--admin .aplus-ap-product-info__text {
color: #333333;
}