@aplus-frontend/ui
Version:
108 lines (107 loc) • 2.23 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-title {
position: relative;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding-left: 10px;
font-size: 12px;
}
.aplus-ap-title::before {
position: absolute;
content: '';
left: 0;
top: 50%;
transform: translateY(-50%);
width: 3px;
height: 14px;
background: #0070ff;
border-radius: 0px 4px 4px 0px;
z-index: 1;
}
.aplus-ap-title__prefix {
font-weight: bold;
color: #182948;
display: flex;
align-items: center;
}
.aplus-ap-title__prefix .anticon-question-circle {
font-size: 14px;
margin-left: 5px;
color: #8896b0;
}
.aplus-ap-title--admin {
padding-left: 14px;
}
.aplus-ap-title--admin::before {
top: 50%;
transform: translateY(-50%);
width: 8px;
height: 8px;
border-radius: 50%;
border-width: 2px;
border-style: solid;
border-color: #34b77c;
background: #fff;
z-index: 1;
}
.aplus-ap-title--admin .aplus-ap-title__prefix {
font-weight: bold;
color: #333;
display: flex;
align-items: center;
}
.aplus-ap-title--admin .aplus-ap-title__prefix .anticon-question-circle {
font-size: 14px;
margin-left: 5px;
color: #999999;
}
.aplus-ap-title__suffix {
color: #526a90;
}