iep-ui
Version:
An enterprise-class UI design language and Vue-based implementation
136 lines (135 loc) • 3.22 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;
}
.iep-table-template {
height: 100%;
display: flex;
flex-direction: column;
}
.iep-table-template-header {
flex: 0 0 1;
display: flex;
justify-content: space-between;
line-height: 40px;
margin-bottom: 20px;
}
.iep-table-template-titletime {
margin-right: 20px;
}
.iep-table-template-titleline {
width: 0;
height: 12px;
background: transparent;
border: 1px solid #e5e5e5;
}
.iep-table-template-cloumnset {
margin-left: 20px;
}
.iep-table-template-cloumnset .ant-dropdown-link {
cursor: pointer;
}
.iep-table-template-cloumnset .ant-dropdown-link:hover {
color: #0071fa;
}
.iep-table-template-titleExport {
margin-left: 20px;
display: inline-block;
}
.iep-table-template .ant-select-tips-box {
flex: 1;
overflow: hidden;
}
.iep-table-template-wrapper {
height: 100%;
}
.iep-table-template .ant-spin-nested-loading {
height: 100%;
}
.iep-table-template .ant-spin-container {
display: flex;
flex-direction: column;
height: 100%;
}
.iep-table-template .ant-spin-container .ant-table {
flex: 1;
overflow: hidden;
}
.iep-table-template .ant-spin-container .ant-pagination {
flex: 0 0 1;
text-align: right;
}
.iep-table-template .ant-table-body {
height: 100%;
display: flex;
flex-direction: column;
}
.iep-table-template .ant-table-body .ant-table-tbody {
overflow-y: auto;
}
.iep-table-template .ant-table-content {
height: 100%;
}
.iep-table-template-dropcontent {
min-width: 240px;
background-color: #fff;
border-radius: 4px;
border: 1px solid #e5e5e5;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}
.iep-table-template-dropcontent .ant-checkbox-group {
width: 100%;
}
.iep-table-template-dropcontent-header {
padding: 8px 16px;
font-size: 14px;
color: #999;
border-bottom: 1px solid #e5e5e5;
}
.iep-table-template-dropcontent-content {
padding: 8px 16px;
}
.iep-table-template-dropcontent-content .ant-checkbox-group {
display: grid;
grid-template-columns: 1fr 1fr;
max-height: 240px;
overflow-y: auto;
}
.iep-table-template-dropcontent-content .ant-checkbox-wrapper {
line-height: 30px;
}
.iep-table-template-dropcontent-footer {
padding: 8px 16px;
font-size: 14px;
color: #999;
border-top: 1px solid #e5e5e5;
}
.iep-table-template-stripe tr:nth-of-type(2n) {
background: #f8f8f8;
}
.iep-table-template-stripe tr > td {
border-bottom: none;
}