解决冲突
commit
4c92d07df8
|
@ -290,3 +290,25 @@ s {
|
||||||
.el-form-item__label {
|
.el-form-item__label {
|
||||||
width: 100px !important;
|
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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue