a469054a by 任超

style:table样式完成修改

1 parent e3cca5dc
......@@ -173,26 +173,18 @@
// element table 样式修改
//去掉表格内的线
table th {
border-bottom: 1px solid #29409D !important;
border-bottom: 8px solid rgba(0, 0, 0, 0.1) !important;
}
table td {
border-bottom: 1px solid #29409D !important;
border-bottom: 8px solid rgba(0, 0, 0, 0.1) !important;
}
//去掉最下面的那一条线
.el-table::before {
height: 1px !important;
background-color: #29409D !important;
height: 0;
}
.lb-table {
background-color: $containerbg;
}
.el-table__body-wrapper {
background-color: $containerbg !important;
}
.el-table__body tr:hover {
background: rgba(2, 160, 253, 0.1) !important;
......@@ -211,17 +203,12 @@ table td {
}
.el-table tr:nth-child(even) {
background: #FCFDFD !important;
}
.el-table tr td {
font-size: 14px;
color: #7A7A7A;
}
.lb-table .el-table {
border: 1px solid #E4EBF4;
border-bottom: none;
border-radius: 4px 4px 0 0;
}
......
......@@ -2,9 +2,11 @@
/deep/.el-table {
border: none !important;
border-radius: 0 !important;
background-color: rgba(0, 0, 0, 0);
.el-table__header-wrapper {
border-right: 1px solid #103E99;
}
.cell {
......@@ -12,7 +14,7 @@
}
.el-table__row {
background-color: $containerbg !important;
background: #0F56A3 !important;
}
thead {
......@@ -113,22 +115,34 @@
color: #FFFFFF;
}
.bgc {
box-shadow: inset 0px 0px 8px 0px rgba(255, 255, 255, 0.5);
background-color: rgba(0, 0, 0, 0);
}
/deep/ .el-pagination {
.el-input__inner {
background: #1F357A !important;
color: #FFFFFF;
border: none;
@extend .bgc;
}
.el-pager li:not(.disabled).active {
box-shadow: inset 0px 0px 12px 0px #02D9FD;
border-radius: 1px;
border: 1px solid #02D9FD;
background-color: rgba(0, 0, 0, 0);
}
.el-pager li {
background: #1F357A;
@extend .bgc;
color: #FFFFFF;
}
}
/deep/.btn-next,
/deep/.btn-prev {
background: #1F357A !important;
@extend .bgc;
color: #FFFFFF;
}
......