iep-ui
Version:
An enterprise-class UI design language and Vue-based implementation
112 lines (111 loc) • 2.54 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;
}
.pro-table-tooltip-text span {
color: #fff;
}
.ant-pro-table {
z-index: 1;
}
.ant-pro-table-container {
background: #fff;
}
.ant-pro-table:not(:root):fullscreen {
min-height: 100vh;
overflow: auto;
background: #fff;
}
.ant-pro-table-toolbar-container {
display: flex;
justify-content: space-between;
padding: 16px 0;
}
.ant-pro-table-toolbar-title {
display: flex;
align-items: center;
justify-content: flex-start;
color: rgba(0, 0, 0, 0.85);
font-weight: 500;
font-size: 16px;
}
.ant-pro-table-toolbar-setting-item {
font-size: 16px;
cursor: pointer;
}
.ant-pro-table-toolbar-setting-item:hover {
color: #0F6EFF;
}
.ant-pro-table-toolbar-setting-item.rotate-90 {
transform: rotate(-90deg);
}
.ant-pro-table-toolbar-setting-item-title {
display: flex;
align-items: center;
justify-content: space-between;
height: 32px;
}
.ant-pro-table-toolbar-setting-overlay {
width: 236px;
}
.ant-pro-table-toolbar-setting-overlay .ant-dropdown-menu {
padding: 0;
}
.ant-pro-table-toolbar-setting-overlay .ant-dropdown-menu-item-divider {
margin: 0;
}
.ant-pro-table-extra {
margin-bottom: 16px;
}
.ant-pro-table td.ant-table-cell > a {
font-size: 14px;
}
.ant-pro-table .ant-table,
.ant-pro-table .ant-table-tbody,
.ant-pro-table .ant-table-wrapper:only-child,
.ant-pro-table .ant-table {
margin: 0;
}
.ant-pro-table .ant-table.ant-table-middle .ant-pro-table {
margin: -12px -8px;
}
@keyframes turn {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(90deg);
}
50% {
transform: rotate(180deg);
}
75% {
transform: rotate(270deg);
}
100% {
transform: rotate(360deg);
}
}