|
|
|
@ -26,6 +26,30 @@
|
|
|
|
|
z-index: 1001;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
box-shadow: $menu-box-shadow;
|
|
|
|
|
|
|
|
|
|
// 左侧边框渐变
|
|
|
|
|
&::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 4px;
|
|
|
|
|
background: $primary-gradient;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 底部装饰效果
|
|
|
|
|
&::after {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 20px;
|
|
|
|
|
left: 20px;
|
|
|
|
|
right: 20px;
|
|
|
|
|
height: 1px;
|
|
|
|
|
background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// reset element-ui css
|
|
|
|
|
.horizontal-collapse-transition {
|
|
|
|
@ -34,6 +58,7 @@
|
|
|
|
|
|
|
|
|
|
.scrollbar-wrapper {
|
|
|
|
|
overflow-x: hidden !important;
|
|
|
|
|
padding: 0 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-scrollbar__bar.is-vertical {
|
|
|
|
@ -46,7 +71,7 @@
|
|
|
|
|
|
|
|
|
|
&.has-logo {
|
|
|
|
|
.el-scrollbar {
|
|
|
|
|
height: calc(100% - 60px);
|
|
|
|
|
height: calc(100% - 110px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -63,6 +88,7 @@
|
|
|
|
|
.svg-icon {
|
|
|
|
|
margin-right: 16px;
|
|
|
|
|
color: $base-menu-icon-color;
|
|
|
|
|
transition: $base-transition;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-menu {
|
|
|
|
@ -81,6 +107,8 @@
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: $base-menu-color;
|
|
|
|
|
transition: $base-transition;
|
|
|
|
|
border-radius: $base-border-radius;
|
|
|
|
|
margin: 4px 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// menu hover
|
|
|
|
@ -89,6 +117,11 @@
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: $base-menu-hover !important;
|
|
|
|
|
color: $base-menu-color-active !important;
|
|
|
|
|
|
|
|
|
|
.svg-icon {
|
|
|
|
|
transform: translateX(3px);
|
|
|
|
|
color: $base-menu-color-active;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -100,6 +133,8 @@
|
|
|
|
|
& .el-submenu .el-menu-item {
|
|
|
|
|
min-width: $base-sidebar-width !important;
|
|
|
|
|
background-color: $base-sub-menu-background !important;
|
|
|
|
|
border-radius: $base-border-radius;
|
|
|
|
|
margin: 3px 0;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: $base-sub-menu-hover !important;
|
|
|
|
@ -120,7 +155,7 @@
|
|
|
|
|
.el-menu-item.is-active {
|
|
|
|
|
background-color: $base-menu-active-background !important;
|
|
|
|
|
color: $base-menu-color-active !important;
|
|
|
|
|
border-right: 3px solid $blue;
|
|
|
|
|
border-left: 3px solid $blue;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: $base-menu-active-background !important;
|
|
|
|
@ -130,15 +165,36 @@
|
|
|
|
|
color: $base-menu-color-active;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 子菜单上下边距
|
|
|
|
|
.el-submenu {
|
|
|
|
|
.el-menu {
|
|
|
|
|
padding: 2px 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 添加滚动条美化
|
|
|
|
|
.el-scrollbar__thumb {
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hideSidebar {
|
|
|
|
|
.sidebar-container {
|
|
|
|
|
width: 54px !important;
|
|
|
|
|
width: 64px !important;
|
|
|
|
|
|
|
|
|
|
.scrollbar-wrapper {
|
|
|
|
|
padding: 0 2px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.main-container {
|
|
|
|
|
margin-left: 54px;
|
|
|
|
|
margin-left: 64px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.submenu-title-noDropdown {
|
|
|
|
@ -232,9 +288,13 @@
|
|
|
|
|
>.el-menu--popup {
|
|
|
|
|
max-height: 100vh;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
background-color: $base-menu-background;
|
|
|
|
|
padding: 4px;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-track-piece {
|
|
|
|
|
background: #f0f2f5;
|
|
|
|
|
background: $base-sub-menu-background;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
@ -242,51 +302,93 @@
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
|
|
|
background: #c0c4cc;
|
|
|
|
|
background: rgba(0, 0, 0, 0.1);
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-menu-item {
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
margin: 2px 0;
|
|
|
|
|
|
|
|
|
|
&.is-active {
|
|
|
|
|
background-color: $base-menu-active-background !important;
|
|
|
|
|
color: $base-menu-color-active !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 侧边栏 Logo 样式
|
|
|
|
|
// Logo样式
|
|
|
|
|
.sidebar-logo-container {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 60px;
|
|
|
|
|
line-height: 60px;
|
|
|
|
|
background: $base-menu-background;
|
|
|
|
|
height: 110px;
|
|
|
|
|
line-height: 50px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
padding: 10px 15px;
|
|
|
|
|
|
|
|
|
|
& .sidebar-logo-link {
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
|
|
.logo-wrapper {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 80px;
|
|
|
|
|
height: 80px;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
background: linear-gradient(135deg, rgba(255,255,255,1), rgba(240,242,245,0.7));
|
|
|
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
-webkit-backdrop-filter: blur(10px);
|
|
|
|
|
border: 1px solid rgba(255,255,255,0.8);
|
|
|
|
|
margin-bottom: 6px;
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
& .sidebar-logo {
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
width: 50px;
|
|
|
|
|
height: 50px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
& .sidebar-title {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 0;
|
|
|
|
|
color: $base-menu-color-active;
|
|
|
|
|
color: $base-logo-title-color;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
line-height: 60px;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
font-family: 'Nunito', sans-serif;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
&.collapse {
|
|
|
|
|
.sidebar-logo {
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
.sidebar-logo-link {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
|
|
.logo-wrapper {
|
|
|
|
|
width: 50px;
|
|
|
|
|
height: 50px;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-logo {
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|