You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
608 B
34 lines
608 B
3 years ago
|
# Element-UI笔记
|
||
|
|
||
|
## 重写样式
|
||
|
|
||
|
- 重写el-table背景
|
||
|
|
||
|
表格背景透明, 便于定制整体背景样式
|
||
|
|
||
|
``` scss
|
||
|
.main-table .el-table,
|
||
|
.el-table__expanded-cell {
|
||
|
background-color: transparent;
|
||
|
border: none;
|
||
|
}
|
||
|
|
||
|
.main-table .el-table tr {
|
||
|
background-color: transparent !important;
|
||
|
border: none;
|
||
|
}
|
||
|
|
||
|
.main-table .el-table--enable-row-transition .el-table__header td,
|
||
|
.el-table .cell {
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
|
||
|
.main-table .el-table--enable-row-transition .el-table__body td,
|
||
|
.el-table .cell {
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
-
|
||
|
|