解决冲突

main
wangqiujuan0808 2024-08-12 16:17:45 +08:00
commit 4c92d07df8
1 changed files with 22 additions and 0 deletions

View File

@ -290,3 +290,25 @@ s {
.el-form-item__label {
width: 100px !important;
}
/* 点击树结构项的选中颜色 */
.el-tree--highlight-current .is-current.el-tree-node > .el-tree-node__content {
background-color: #74dad1 !important;
color: #fff;
}
/* 滚动条样式 */
::-webkit-scrollbar {
width: 4px; /* 设置纵轴y轴轴滚动条 */
height: 4px; /* 设置横轴x轴轴滚动条 */
}
/* 滚动条滑块(里面小方块) */
::-webkit-scrollbar-thumb {
border-radius: 10px;
box-shadow: inset 0 0 5px #539f9a;
background: #539f9a;
}
/* 滚动条轨道 */
::-webkit-scrollbar-track {
border-radius: 0;
box-shadow: inset #fff;
background: #2B5451;
}