程序员の奇妙冒险

返回
ElementUI ElementUI
2025-05-04 17:20 阅读:341 评论:1

element-plus Tree 树形控件自定义选中高亮

el-tree 设置高亮:highlight-current="true" 添加以下样式

  • el-tree 设置高亮:highlight-current="true"
  • 添加以下样式
1
2
3
4
5
6
7
8
9
10
11
12
:deep(.el-tree-node:focus>.el-tree-node__content) {
background-color: transparent !important;
}
:deep(.el-tree-node.is-current > .el-tree-node__content) {
background-color: #e3f4fc !important;
}
:deep(.el-tree-node.is-current > .el-tree-node__content:hover) {
background-color: #e3f4fc !important;
}
:deep(.el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content) {
background-color: #e3f4fc !important;
}
评论 (1)
暂无评论 来抢沙发吧~