管理界面可以切换风格

This commit is contained in:
GoEdgeLab
2021-07-12 10:21:17 +08:00
parent a0dfda626f
commit 2f0627aa23
12 changed files with 159 additions and 12 deletions

View File

@@ -273,7 +273,6 @@ body.expanded .main {
z-index: 1000;
overflow-x: auto;
border: 0 !important;
background: #14539A !important;
}
.top-nav img.avatar {
width: 1.6em !important;
@@ -297,6 +296,15 @@ body.expanded .main {
.top-nav .item.red {
color: red !important;
}
.top-nav.theme1 {
background: #14539A !important;
}
.top-nav.theme2 {
background: #276AC6 !important;
}
.top-nav.theme3 {
background: #007D9C !important;
}
.top-nav::-webkit-scrollbar {
height: 2px;
}
@@ -410,14 +418,30 @@ body.expanded .main {
top: 2em;
bottom: 0;
overflow-y: auto;
background: #14539A !important;
z-index: 10;
}
.main-menu .menu {
background: #14539A !important;
border: 0 !important;
box-shadow: none !important;
}
.main-menu.theme1 {
background: #14539A !important;
}
.main-menu.theme1 .menu {
background: #14539A !important;
}
.main-menu.theme2 {
background: #276AC6 !important;
}
.main-menu.theme2 .menu {
background: #276AC6 !important;
}
.main-menu.theme3 {
background: #007D9C !important;
}
.main-menu.theme3 .menu {
background: #007D9C !important;
}
.main-menu::-webkit-scrollbar {
width: 2px;
}