|
@@ -1017,22 +1017,34 @@ margin-right: 34px;
|
|
|
background-color: transparent !important;
|
|
|
}
|
|
|
|
|
|
- /* #app .sidebar-container{
|
|
|
+ #app .sidebar-container {
|
|
|
+ -webkit-transition: width 0.28s;
|
|
|
+ transition: width 0.28s;
|
|
|
width: 265px !important;
|
|
|
- padding:0 !important;
|
|
|
- text-overflow:no !important;
|
|
|
- }
|
|
|
+ background-color: #304156;
|
|
|
+ height: 100%;
|
|
|
+ position: fixed;
|
|
|
+ font-size: 0px;
|
|
|
+ top: 0;
|
|
|
+ bottom: 0;
|
|
|
+ left: 0;
|
|
|
+ z-index: 1001;
|
|
|
+ overflow: hidden;
|
|
|
+ -webkit-box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35);
|
|
|
+ box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35);
|
|
|
+}
|
|
|
|
|
|
- #app .main-container{
|
|
|
- margin-left: 265px !important;
|
|
|
- } */
|
|
|
-
|
|
|
+ #app .main-container {
|
|
|
+ min-height: 100%;
|
|
|
+ -webkit-transition: margin-left 0.28s;
|
|
|
+ transition: margin-left 0.28s;
|
|
|
+ margin-left: 265px;
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
/* .el-input__inner {
|
|
|
border: 1px solid white !important;
|
|
|
} */
|
|
|
-#app .hideSidebar .main-container{
|
|
|
- margin-left:50px;
|
|
|
-}
|
|
|
+
|
|
|
|
|
|
/* 表单验证提示文字居左 */
|
|
|
.el-form-item__error {
|
|
@@ -1067,4 +1079,5 @@ margin-right: 34px;
|
|
|
/* 树形结构合起来去掉选中背景色 */
|
|
|
.el-tree-node:focus > .el-tree-node__content {
|
|
|
background-color: transparent;
|
|
|
-}
|
|
|
+}
|
|
|
+
|