@aplus-frontend/ui
Version:
124 lines (123 loc) • 2.99 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-appendix__suffix {
width: 100%;
display: flex;
align-items: center;
}
.aplus-ap-appendix__download-all {
margin-left: auto;
padding: 0;
height: -moz-min-content;
height: min-content;
}
.aplus-ap-appendix__file-area {
margin-top: 12px;
}
.aplus-ap-appendix__file-area--border {
border: 1px dashed var(--ap-border-color-base);
padding: 12px;
border-radius: 4px;
}
.aplus-ap-appendix__file-area-content {
display: grid;
gap: 16px 80px;
grid-template-columns: var(--ap-appendix-column, repeat(2, 1fr));
}
.aplus-ap-appendix__file-area-content-item {
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.aplus-ap-appendix__file-area-content-item-content {
display: flex;
align-items: center;
width: -moz-max-content;
width: max-content;
cursor: pointer;
max-width: 100%;
}
.aplus-ap-appendix__file-area-content-item-icon {
margin-right: 8px;
}
.aplus-ap-appendix__file-area-content-item-icon svg {
width: 16px;
color: var(--ap-text-color-4);
}
.aplus-ap-appendix__file-area-content-item-file-name {
min-width: 0;
overflow: hidden;
width: -moz-max-content;
width: max-content;
display: flex;
align-items: center;
}
.aplus-ap-appendix__file-area-content-item-file-name .ant-typography {
font-size: 12px;
line-height: 18px;
color: var(--ap-text-color-2);
transition: color 0.2s;
}
.aplus-ap-appendix__file-area-content-item-content:hover .ant-typography {
color: var(--ap-color-link);
}
.aplus-ap-appendix__file-area-content-item--loading-content {
cursor: not-allowed;
}
.aplus-ap-appendix__file-area-content-item--loading .ant-typography {
color: var(--ap-text-color-4);
}
.aplus-ap-appendix__file-area-content-item--loading-content:hover .ant-typography {
color: var(--ap-text-color-4);
}
.aplus-ap-appendix__empty .ant-empty {
margin: 0;
}
.aplus-ap-appendix__empty .ant-empty-description {
margin-bottom: 0;
}