.el-tree-node__content > .el-tree-node__expand-icon {
position: absolute;
right: 12px;
}
.el-tree-node__expand-icon {
transform: rotate(-90deg);
}
.el-tree-node__expand-icon.expanded {
transform: rotate(0deg);
}
.el-tree .el-tree-node__expand-icon.expanded.el-icon-caret-right:before {
background: url('~@/assets/images/arrow.png') no-repeat 0 3px;
content: '';
display: block;
width: 12px;
height: 12px;
font-size: 12px;
background-size: 12px;
}
.el-tree .el-icon-caret-right:before {
background: url('~@/assets/images/arrow.png') no-repeat 0 3px;
content: '';
display: block;
width: 12px;
height: 12px;
font-size: 12px;
background-size: 12px;
}
.el-tree .el-tree-node__expand-icon.is-leaf::before {
background: #fff;
content: '';
display: block;
width: 0px;
height: 0px;
font-size: 0px;
background-size: 0px;
}
- 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