123456789101112131415161718192021222324252627282930313233343536373839404142 |
- .warn-table {
- .el-table {
- thead th.el-table__cell {
- background: rgba(83, 89, 104, 0.3);
- }
- &.el-table--striped .el-table__body tr.el-table__row--striped td {
- background-color: #161415;
- }
- th {
- background-color: #161f1e !important;
- color: #fff;
- height: 40px;
- }
- tr {
- height: 40px;
- background: #161f1e !important;
- td {
- color: #fff !important;
- }
- &.isConfirm {
- &:hover {
- td {
- color: #05bb4c !important;
- background-color: transparent !important;
- }
- }
- }
- &:hover {
- td {
- color: #d35400 !important;
- background-color: transparent !important;
- }
- }
- }
- }
- }
|