|
@@ -113,6 +113,12 @@
|
|
|
min-width: unset;
|
|
min-width: unset;
|
|
|
border: 0;
|
|
border: 0;
|
|
|
border-radius: 0;
|
|
border-radius: 0;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .window-content {
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ z-index: 1;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
|
.sidebar {
|
|
@@ -121,6 +127,7 @@
|
|
|
z-index: 1000;
|
|
z-index: 1000;
|
|
|
height: var(--full-height);
|
|
height: var(--full-height);
|
|
|
transition: all ease 0.3s;
|
|
transition: all ease 0.3s;
|
|
|
|
|
+ -webkit-transition: all ease 0.3s;
|
|
|
box-shadow: none;
|
|
box-shadow: none;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -137,6 +144,7 @@
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
z-index: 999;
|
|
z-index: 999;
|
|
|
animation: fadeIn 0.2s ease-out;
|
|
animation: fadeIn 0.2s ease-out;
|
|
|
|
|
+ -webkit-animation: fadeIn 0.2s ease-out;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeIn {
|
|
@keyframes fadeIn {
|
|
@@ -148,25 +156,42 @@
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ @-webkit-keyframes fadeIn {
|
|
|
|
|
+ from {
|
|
|
|
|
+ opacity: 0;
|
|
|
|
|
+ }
|
|
|
|
|
+ to {
|
|
|
|
|
+ opacity: 1;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
.mobile-menu-button {
|
|
.mobile-menu-button {
|
|
|
position: absolute;
|
|
position: absolute;
|
|
|
top: 12px;
|
|
top: 12px;
|
|
|
left: 12px;
|
|
left: 12px;
|
|
|
- z-index: 100;
|
|
|
|
|
|
|
+ z-index: 1000;
|
|
|
|
|
+ display: block;
|
|
|
|
|
+ visibility: visible;
|
|
|
|
|
+ opacity: 1;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.menu-trigger-button {
|
|
.menu-trigger-button {
|
|
|
width: 40px;
|
|
width: 40px;
|
|
|
height: 40px;
|
|
height: 40px;
|
|
|
- display: flex;
|
|
|
|
|
|
|
+ display: flex !important;
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
justify-content: center;
|
|
|
transition: background-color 0.15s ease;
|
|
transition: background-color 0.15s ease;
|
|
|
|
|
+ -webkit-transition: background-color 0.15s ease;
|
|
|
|
|
|
|
|
.anticon {
|
|
.anticon {
|
|
|
font-size: 20px;
|
|
font-size: 20px;
|
|
|
color: #333;
|
|
color: #333;
|
|
|
transition: color 0.15s ease;
|
|
transition: color 0.15s ease;
|
|
|
|
|
+ -webkit-transition: color 0.15s ease;
|
|
|
|
|
+ display: block !important;
|
|
|
|
|
+ visibility: visible !important;
|
|
|
|
|
+ opacity: 1 !important;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
&:hover {
|
|
@@ -180,6 +205,7 @@
|
|
|
&:active {
|
|
&:active {
|
|
|
background-color: rgba(0, 0, 0, 0.04);
|
|
background-color: rgba(0, 0, 0, 0.04);
|
|
|
transition: none;
|
|
transition: none;
|
|
|
|
|
+ -webkit-transition: none;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|