.el-tree {
background: #1b243b !important;
color: #fff !important;
height: 911px;
font-size: 20px;
line-height: 32px;
padding: 10px 0 10px 0;
img {
width: 20px;
height: 20px;
margin-right: 8px;
margin-top: -3px;
}
// 选中颜色
/deep/.el-tree-node.is-current > .el-tree-node__content {
background-color: #205166 !important;
}
// 鼠标漂浮颜色
/deep/.el-tree-node__content {
&:hover {
background: #223f53 !important;
}
}
// 鼠标点击时节点时的背景颜色及字体颜色,这项不设置,会出现白底现象
/deep/.el-tree-node:focus > .el-tree-node__content {
background-color: #223f53 !important;
}
// 高度
/deep/.el-tree-node .el-tree-node__content {
height: 48px;
}
}