UNPKG

iep-ui

Version:

An enterprise-class UI design language and Vue-based implementation

129 lines (128 loc) 3.08 kB
/* 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; } .flex { display: flex; justify-content: space-between; align-items: center; } .ant-iep-sundry-transfer { width: 550px; height: 400px; border-radius: 4px; background: #fff; border: 1px solid #E5E5E5; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08); display: flex; overflow: hidden; flex-direction: column; } .ant-iep-sundry-transfer-header { height: 40px; border-bottom: 1px solid #E5E5E5; padding: 0 12px; display: flex; justify-content: space-between; align-items: center; } .ant-iep-sundry-transfer-header-tag { font-weight: 400; font-size: 12px; color: #999; } .ant-iep-sundry-transfer-footer { flex: 1; display: flex; justify-content: space-between; align-items: center; overflow: hidden; } .ant-iep-sundry-transfer-footer-item { flex: 1; overflow: hidden; height: 100%; width: 100%; display: flex; justify-content: space-between; align-items: center; flex-direction: column; box-sizing: border-box; } .ant-iep-sundry-transfer-footer-item:first-child { border-right: 1px solid #E5E5E5; } .ant-iep-sundry-transfer-footer-item-header { width: 100%; padding: 12px; height: 56px; } .ant-iep-sundry-transfer-footer-item-header-text { font-weight: 400; font-size: 14px; color: #999; line-height: 32px; } .ant-iep-sundry-transfer-footer-item-footer { flex: 1; width: 100%; overflow: hidden; padding: 0 0 12px 12px; -webkit-user-select: none; -moz-user-select: none; user-select: none; } .ant-iep-sundry-transfer-footer-item-footer-inner { display: flex; justify-content: space-between; align-items: center; padding-right: 12px; flex-direction: column; align-items: flex-start; height: 290px; justify-content: flex-start; gap: 10px 0; } .ant-iep-sundry-transfer-footer-item-footer-inner-empty { justify-content: center; align-items: center; } .ant-iep-sundry-transfer-select-item { display: flex; justify-content: space-between; align-items: center; width: 100%; } .ant-iep-sundry-transfer-select-item-text { font-weight: 400; font-size: 14px; color: #333; overflow: hidden; text-overflow: ellipsis; } .ant-iep-sundry-transfer-select-item-btn { cursor: pointer; }