shu-c-view
Version:
rollup 打包vue组件库框架
66 lines (65 loc) • 1.24 kB
text/less
/* tree 树 */
.base-tree-el-scrollbar {
height: 100%;
padding-bottom: 10px;
.el-scrollbar__wrap {
overflow-x: hidden;
}
}
.base-tree {
.el-tree-node__content {
position: relative;
height: 30px;
&:hover {
color: #000;
background-color: #e0f0ff;
}
}
> .el-tree-node {
display: inline-block;
min-width: 100%;
}
// elementUI Tree 选中节点背景色修改
.el-tree-node.is-current > .el-tree-node__content {
background-color: #cde6ff ;
.el-input__count-inner {
background-color: #cde6ff;
}
}
}
.handle-menu-tree-node {
display: flex;
flex: 1;
align-items: center;
justify-content: space-between;
padding-right: 8px;
font-size: 14px;
}
.base-tree-node-item {
box-sizing: border-box;
padding-right: 5px;
> div:nth-child(2) {
display: none;
.confirm-btn {
color: #0080ff;
}
.cancel-btn {
}
.confirm-btn,
.cancel-btn {
padding-left: 4px;
font-size: 14px;
}
}
input {
width: 80px ;
height: 21px ;
line-height: 21px ;
}
.base-tree-node-edit-input {
> input:first-child {
display: inline-block;
margin-right: 10px;
}
}
}