自动检测/手动检测页面

This commit is contained in:
zhujiyan
2024-10-10 17:47:55 +08:00
parent 507ea137e4
commit e060939bc1
30 changed files with 3176 additions and 116 deletions

View File

@@ -84,8 +84,6 @@
/* main-box (树形表格 treeFilter 页面会使用,左右布局 flex) */
.main-box {
display: flex;
width: 100%;
height: 100%;
.table-box {
// 这里减去的 230px 是 treeFilter 组件宽度
width: calc(100% - 230px);
@@ -138,7 +136,9 @@
// el-table 表格样式
.el-table {
flex: 1;
// flex: 1;
width: 100%;
height: 100%;
// 修复 safari 浏览器表格错位 https://github.com/HalseySpicy/Geeker-Admin/issues/83
table {
@@ -334,19 +334,23 @@
margin-right: 10px !important;
margin-bottom: 20px !important;
}
.el-tree-node__content:hover {
// background-color: var(--el-color-primary) !important;
// color: #fff;
}
.el-tree-node is-expanded is-current is-focusable is-checked{
background-color: var(--el-color-primary) !important;
color: #fff;
}
.el-table__body-wrapper,.el-scrollbar{
.el-table__body-wrapper,
.el-scrollbar {
/* scroll bar */
z-index: 2001;
&::-webkit-scrollbar {
width: 8px !important;
height: 200px !important;
// background-color: var(--el-color-primary);
z-index: 3001;
z-index: 3001;
}
/* 滚动条实际可拖动部分的颜色 */
::-webkit-scrollbar-thumb {
@@ -379,4 +383,4 @@
background-color: var(--el-color-primary);
box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}
}
}