4747ca7f by 任超

style;表格修改

1 parent 4552de5c
......@@ -173,12 +173,17 @@
// element table 样式修改
//去掉表格内的线
table th {
border-bottom: 8px solid rgba(0, 0, 0, 0.1) !important;
border-bottom: none !important;
}
.el-table__body {
-webkit-border-vertical-spacing: 6px !important; // 垂直间距
}
table td {
box-sizing: border-box;
border-bottom: 8px solid rgba(0, 0, 0, 0.1) !important;
border-bottom: none !important;
;
}
//去掉最下面的那一条线
......@@ -186,6 +191,9 @@ table td {
height: 0;
}
.el-table__body tr {
box-sizing: content-box !important;
}
.el-table__body tr:hover {
background: rgba(2, 160, 253, 0.3) !important;
......@@ -194,7 +202,6 @@ table td {
.el-table__body tr:hover>td {
background: none !important;
border-bottom: 8px solid transparent !important;
}
// 表格样式
......