|
@@ -6,13 +6,15 @@
|
|
|
margin-left: $sideBarWidth;
|
|
|
margin-top: $headerHeight;
|
|
|
position: relative;
|
|
|
+ background-color: #f5f8fe;
|
|
|
+ padding-left: 5px;
|
|
|
}
|
|
|
|
|
|
.sidebar-container {
|
|
|
transition: width 0.28s;
|
|
|
width: $sideBarWidth !important;
|
|
|
background-color: $menuBg;
|
|
|
- height: 100%;
|
|
|
+ height: calc(100% - 120px);
|
|
|
position: fixed;
|
|
|
font-size: 0px;
|
|
|
top: $headerHeight;
|
|
@@ -20,6 +22,7 @@
|
|
|
bottom: 0;
|
|
|
z-index: 1001;
|
|
|
overflow: hidden;
|
|
|
+ border-right: 1px solid #ececec;
|
|
|
|
|
|
// reset element-ui css
|
|
|
.horizontal-collapse-transition {
|
|
@@ -94,24 +97,36 @@
|
|
|
|
|
|
.hideSidebar {
|
|
|
.sidebar-container {
|
|
|
- width: 54px !important;
|
|
|
+ width: $siderBarCollapseWidth !important;
|
|
|
}
|
|
|
|
|
|
.main-container {
|
|
|
- margin-left: 54px;
|
|
|
+ margin-left: $siderBarCollapseWidth;
|
|
|
}
|
|
|
|
|
|
.submenu-title-noDropdown {
|
|
|
padding: 0 !important;
|
|
|
position: relative;
|
|
|
|
|
|
- &.el-menu-item{
|
|
|
- height: 100px;
|
|
|
- .menu-title{
|
|
|
- line-height: 0;
|
|
|
+ &.el-menu-item {
|
|
|
+ .menu-box {
|
|
|
+ line-height: 0 !important;
|
|
|
text-align: center;
|
|
|
+ padding-top: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .svg-icon {
|
|
|
+ margin: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .menu-title {
|
|
|
+ display: block;
|
|
|
+ font-size: 10px;
|
|
|
+ height: 30px;
|
|
|
+ line-height: 30px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.svg-icon {
|
|
|
margin-left: 20px;
|
|
|
}
|
|
@@ -119,6 +134,7 @@
|
|
|
.sub-el-icon {
|
|
|
margin-left: 19px;
|
|
|
}
|
|
|
+
|
|
|
.el-tooltip {
|
|
|
padding: 0 !important;
|
|
|
|