iep-ui
Version:
An enterprise-class UI design language and Vue-based implementation
96 lines (95 loc) • 2.41 kB
CSS
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
width: 6px;
background-color: transparent;
}
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
-webkit-box-shadow: none;
border-radius: 4px;
background-color: transparent;
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
border-radius: 6px;
-webkit-box-shadow: none;
background-color: rgba(144, 147, 153, 0.3);
}
/*定义最上方和最下方的按钮*/
::-webkit-scrollbar-button {
display: none;
background-color: #252540;
border: 1px solid #252540;
}
.ant-iep-sundry-upload-cropper {
border-radius: 8px;
background: #fff;
border: 1px solid #e5e5e5;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
min-width: 500px;
}
.ant-iep-sundry-upload-cropper-header {
padding: 8px 12px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #eaedf3;
}
.ant-iep-sundry-upload-cropper-header-text {
font-weight: bold;
font-size: 16px;
color: #333;
}
.ant-iep-sundry-upload-cropper-header-icon {
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.ant-iep-sundry-upload-cropper-body {
padding: 8px 12px;
display: flex;
flex-direction: column;
gap: 12px 0;
}
.ant-iep-sundry-upload-cropper-body svg {
width: 16px;
height: 16px;
}
.ant-iep-sundry-upload-cropper-body-picture {
height: 220px;
}
.ant-iep-sundry-upload-cropper-body-tools {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.ant-iep-sundry-upload-cropper-body-tools-item {
width: 260px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 0 8px;
}
.ant-iep-sundry-upload-cropper-body-tools-item-core {
flex: 1;
}
.ant-iep-sundry-upload-cropper-body-tools-item-btn {
cursor: pointer;
}
.ant-iep-sundry-upload-cropper-body-tools-item-btn:active svg {
fill: #0F6EFF;
}
.ant-iep-sundry-upload-cropper-footer {
display: flex;
justify-content: center;
align-items: center;
padding: 8px 0;
background: rgba(182, 191, 206, 0.2);
gap: 0 10px;
}