124 lines
1.9 KiB
CSS
124 lines
1.9 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
outline: 0 !important;
|
|
}
|
|
|
|
|
|
body {
|
|
font-family: 'PingFang SC', 'Helvetica Neue', Helvetica, 'microsoft yahei', arial, STHeiTi, sans-serif;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
i {
|
|
font-style: normal;
|
|
}
|
|
|
|
.container {
|
|
flex: 1;
|
|
padding: 0 20px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.table-container {
|
|
background-color: #fff;
|
|
padding: 22px 17px;
|
|
box-sizing: border-box;
|
|
border-radius: 5px;
|
|
box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.el-table th {
|
|
background-color: #f5f7fa !important;
|
|
}
|
|
|
|
.plugins-tips {
|
|
padding: 20px 10px;
|
|
margin-bottom: 20px;
|
|
background: #eef1f6;
|
|
}
|
|
|
|
.plugins-tips a {
|
|
color: var(--el-color-primary);
|
|
}
|
|
|
|
.el-button+.el-tooltip {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.mgb20 {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.mgb10 {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.mr10 {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.move-enter-active,
|
|
.move-leave-active {
|
|
transition: opacity 0.1s ease;
|
|
}
|
|
|
|
.move-enter-from,
|
|
.move-leave-to {
|
|
opacity: 0;
|
|
}
|
|
|
|
.el-time-panel__content::after,
|
|
.el-time-panel__content::before {
|
|
margin-top: -7px;
|
|
}
|
|
|
|
.el-time-spinner__wrapper .el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default) {
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
[hidden] {
|
|
display: none !important;
|
|
}
|
|
|
|
.flex-center {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
:root {
|
|
--header-bg-color: #242f42;
|
|
--header-text-color: #fff;
|
|
--active-color: var(--el-color-primary);
|
|
}
|
|
|
|
.noScrollbar {
|
|
scrollbar-width: none;
|
|
-ms-overflow-style: none;
|
|
}
|
|
|
|
.scrollbar {
|
|
overflow: auto;
|
|
}
|
|
|
|
.scrollbar::-webkit-scrollbar {
|
|
width: 6px;
|
|
height: 6px;
|
|
}
|
|
|
|
.scrollbar::-webkit-scrollbar-thumb {
|
|
background-color: #B2B2B2;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.scrollbar::-webkit-scrollbar-track:hover {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.scrollbar::-webkit-scrollbar-thumb:hover {
|
|
background-color: #909399;
|
|
} |