|
@@ -1,9 +1,9 @@
|
|
|
@mixin hide-open-header {
|
|
|
.hideSidebar .main-header {
|
|
|
- width: calc(100% - 64px);
|
|
|
+ width: calc(100% - 90px);
|
|
|
}
|
|
|
.openSidebar .main-header {
|
|
|
- width: calc(100% - 220px);
|
|
|
+ width: calc(100% - 230px);
|
|
|
}
|
|
|
}
|
|
|
@mixin bg-project {
|
|
@@ -23,21 +23,40 @@
|
|
|
width: 100%;
|
|
|
height: 10px;
|
|
|
bottom: -10px;
|
|
|
- left: -10px;
|
|
|
right: 0;
|
|
|
z-index: 99;
|
|
|
background-color:#F2F3F6;
|
|
|
}
|
|
|
+@mixin left-main-header{
|
|
|
+ position: fixed;
|
|
|
+ z-index: 99;
|
|
|
+ left: 225px;
|
|
|
+ top: 0;
|
|
|
+ width: calc(100% - 285px);
|
|
|
+}
|
|
|
+@mixin top-main-header {
|
|
|
+ position: fixed;
|
|
|
+ z-index: 99;
|
|
|
+ left: 90px;
|
|
|
+ top: 60px;
|
|
|
+ width: calc(100% - 150px);
|
|
|
+}
|
|
|
+@mixin normal-main-header {
|
|
|
+ position: fixed;
|
|
|
+ z-index: 99;
|
|
|
+ left: 90px;
|
|
|
+ top: 0;
|
|
|
+ width: calc(100% - 100px);
|
|
|
+}
|
|
|
@mixin main-header {
|
|
|
- position: relative;
|
|
|
- margin: 0 10px 10px 10px;
|
|
|
height: 60px;
|
|
|
- width: 100%;
|
|
|
padding-left: 30px;
|
|
|
background-color: #ffffff;
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
align-items: center;
|
|
|
+ border-top: 10px solid #F2F3F6;
|
|
|
+ box-sizing: content-box;
|
|
|
.header-title{
|
|
|
float: left;
|
|
|
font-size:18px;
|