iep-ui
Version:
An enterprise-class UI design language and Vue-based implementation
84 lines (83 loc) • 1.98 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-select-tips-box {
width: 100%;
position: relative;
height: 100%;
}
.ant-select-tips-box-content {
height: 100%;
display: flex;
flex-direction: column;
}
.ant-select-tips-box-wrap {
background: rgba(15, 110, 255, 0.15);
border: 1px solid rgba(15, 110, 255, 0.5);
padding: 10px 30px 10px 20px;
display: flex;
justify-content: space-between;
flex: 0 0 1;
}
.ant-select-tips-box-main {
flex: 1;
overflow: hidden;
}
.ant-select-tips-box-bottom {
position: fixed;
text-align: right;
padding: 14px 44px;
bottom: 0;
right: 0;
width: 100%;
background: #fff;
box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.08);
}
.ant-select-tips-box-bottom .ant-btn {
margin-left: 10px;
}
.ant-select-tips-box-left {
display: flex;
font-size: 12px;
color: #000;
line-height: 22px;
margin-right: 16px;
}
.ant-select-tips-box-left .ant-checkbox-wrapper span {
padding: 0 4px 0 0;
font-size: 12px;
}
.ant-select-tips-box-num {
line-height: 23px;
}
.ant-select-tips-box-right {
font-weight: 400;
font-size: 12px;
color: #0f6eff;
line-height: 24px;
cursor: pointer;
}