修改el-tree 背景⾊,字体⾊// *设置树形最外层的背景颜⾊为none ,字体颜⾊为⽩⾊*/.eL -tree {  background : none ;  color : #fff ;}// *设置三⾓图标的颜⾊*/.eL -tree -node__expand -icon {  color : #fff ;}// *设置节点⿏标悬浮三⾓图标⿏标悬浮的颜⾊*/.el -tree -node__content :hover .el -tree -node__expand -icon {  color : #000;}.el -tree -node__content :hover .el -tree -node__expand -icon .is -Leaf {  color : transparent ;}/*树节点⿏标悬浮时改变背景颜⾊为⽩⾊,字体为⿊⾊*/.eL -tree -node__content :hover {  background -color : #fff ;  color : #0ee ;}/*节点前边的三⾓图标并不会备节被节点样式影响,需单独修改*/.el -tree -node :focus > .el -tree -node__content .el -tree -node__expand -icon {  color : #008;}/*改变被点击节点背景颜⾊,背景颜⾊改为⽩⾊,字体为⿊⾊*/.eL -tree -node :focus > .eL -tree -node__content {  background -color : #fff ;  color : #000;}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