1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
.plTableBox .plTbaleTotal .el-table__footer-two {
border-top: 1px solid #c7c9cc;
}
.plTableBox .el-table .el-table__header th{background-color:#f8f8f9}
.plTableBox .el-table th.is-leaf {
border-bottom: none !important;
}
.plTableBox .el-table__body {
background-color: transparent !important;
}
.plTableBox .el-table__fixed-right-patch {
top: 0px;
border-bottom: none;
}
.plTableBox .el-table__footer-wrapper td {
border-top: none !important;
border-bottom: none !important;
}
.plTableBox .el-table__fixed-footer-wrapper tbody td {
border-top: none !important;
border-bottom: none !important;
}
.plTableBox .el-table .lineFooter td {
border-bottom: 1px solid #EBEEF5 !important;
}
.plTableBox .el-table__fixed::before,
.plTableBox .el-table__fixed-right::before {
background-color: transparent !important;
}
.plTableBox .el-table__header-wrapper {
background: #f7f7f7;
}
/*隐藏固定列的td边框线*/
.plTableBox .el-table__fixed-right .el-table__row td:last-child {
border-right: none;
}
.plTableBox .el-table__expand-icon > .el-icon {
margin-left: -7px;
margin-top: -3px;
top: 32%;
}
.plTableBox .el-table__footer-wrapper {
background-color: #f5f7fa !important;
}
.plTableBox .el-table th {
background: #f7f7f7;
}
.plTableBox .el-table--border th.gutter:last-of-type {
border: none !important;
}
.plTableBox .el-table--group::after,
.plTableBox .el-table--border::after {
width: 0 !important;
}
.plTableBox .el-table::before {
height: 0 !important;
}
.plTableBox .el-table--group,
.plTableBox .el-table--border {
border: none !important;
}
.plTableBox .el-table__fixed-right-patch {
background-color: transparent !important;
}
::-webkit-scrollbar {
width: 9px;
height: 9px;
background-color: rgba(255, 255, 255, 0);/*其他样式,比如圆角等*/
}
.singleTable ::-webkit-scrollbar-thumb {
-webkit-border-radius: 5px;
border-radius: 5px;
background-color: rgba(144, 147, 153, 0.5);
}
/*修改ele固定列样式, 对固定列阴影修改*/
.plTableBox .el-table__fixed {
box-shadow: 5px 0 5px rgba(0, 0, 0, 0.1);
}
.plTableBox .el-table__fixed-right {
box-shadow: -6px 0 6px rgba(0, 0, 0, 0.1);
}