“dzb”
2022-10-04 797cc9c1a5c90f413d46c5cb88e1ee5e3a84b071
src/App.vue
@@ -60,13 +60,38 @@
  background-color: #17324c !important;
}
.el-tree{
  background-color: #17324c !important;
  background-color: #09152f !important;
}
.el-tree-node__content:hover, .el-upload-list__item:hover{
  background-color: #09152f !important;
  color: #4b9bb7 !important;
}
.el-tree-node:focus>.el-tree-node__content{
  background-color: #09152f !important;
  background-color: #070f22 !important;
  color:#4b9bb7
}
/*定义滚动条高宽及背景
 高宽分别对应横竖滚动条的尺寸*/
 ::-webkit-scrollbar
{
    width:4px;
    height:4px;
    background-color:#070f22;
}
/*定义滚动条轨道
 内阴影+圆角*/
::-webkit-scrollbar-track
{
    -webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.3);
    border-radius:10px;
    background-color:#070f22;
}
/*定义滑块
 内阴影+圆角*/
::-webkit-scrollbar-thumb
{
    border-radius:10px;
    -webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);
    background-color:#555;
}
</style>