.custom-tree-node {
flex: 1;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 14px;
padding-right: 8px;
width: 80%;
flex: 1 140px;
}
.custom-tree-node > span:nth-child(1){
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.custom-tree-node .btn{
opacity: 0;
transition: opacity 0.5s;
-webkit-transition: opacity 0.5s;
}
.custom-tree-node:hover .btn{
opacity: 1;
}
.custom-tree-node .btn .el-icon-edit{
color: #67c23a;
}
.custom-tree-node .btn .el-icon-delete{
color: #f56c6c;
}
.el-input-group__append{
padding: 0 10px !important;
}
/* .el-form-item__error{
line-height: 0;
} */
.el-row>.zhc-birt-cell-children>.el-button {
border: none;
border-right: 1px solid #ddd;
border-radius: 0;
padding: 5px 15px;
}
/* 整个滚动条 */
::-webkit-scrollbar {
width: 8px;
height: 10px;
}
/* 滚动条上的滚动滑块 */
::-webkit-scrollbar-thumb {
/* background-color: #49b1f5; */
/* 关键代码 */
/* background-image: -webkit-linear-gradient(45deg,
rgba(255, 255, 255, 0.4) 25%,
transparent 25%,
transparent 50%,
rgba(255, 255, 255, 0.4) 50%,
rgba(255, 255, 255, 0.4) 75%,
transparent 75%,
transparent); */
background-color: rgba(0,0,0,.3);
border-radius: 32px;
}
/* 滚动条轨道 */
::-webkit-scrollbar-track {
background-color: #dbeffd;
border-radius: 32px;
}
.el-icon-folder-opened,.el-icon-folder{
color: #ffc107;
}
.el-icon-document{
color: #009688;
}
.icon-root{
color: blue;
}
.icon-ptm{
color: royalblue;
}
.icon-org, .icon-func{
color: aqua;
}
.icon-dpt, .icon-flow{
color: deepskyblue;
}
.el-table__header-wrapper th.isrequired ::before{
content: '*';
color: red;
margin-right: 5px;
}
.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content {
background-color: #f0f7ff;
color: #2355f1;
}