|
@@ -6,8 +6,9 @@
|
|
|
position: absolute;
|
|
position: absolute;
|
|
|
top: 52px;
|
|
top: 52px;
|
|
|
left: 0;
|
|
left: 0;
|
|
|
|
|
+ border-top: 1px solid $navbarBorder;
|
|
|
width: $side-menu-width;
|
|
width: $side-menu-width;
|
|
|
- background-color: rgba($side-menu-bg,$side-menu-opacity);
|
|
|
|
|
|
|
+ background-color: $side-menu-bg;
|
|
|
z-index: 1000;
|
|
z-index: 1000;
|
|
|
opacity: 0;
|
|
opacity: 0;
|
|
|
visibility: hidden;
|
|
visibility: hidden;
|
|
@@ -31,7 +32,7 @@
|
|
|
min-height: calc(100% - 54px);
|
|
min-height: calc(100% - 54px);
|
|
|
}
|
|
}
|
|
|
.dashboard-container {
|
|
.dashboard-container {
|
|
|
- padding-left: $side-menu-width + 0.5rem;
|
|
|
|
|
|
|
+ padding-left: $side-menu-width + 20px;
|
|
|
}
|
|
}
|
|
|
.page-container {
|
|
.page-container {
|
|
|
margin-left: $side-menu-width;
|
|
margin-left: $side-menu-width;
|
|
@@ -61,8 +62,8 @@
|
|
|
top: 0px;
|
|
top: 0px;
|
|
|
// important to overlap it otherwise it can be hidden
|
|
// important to overlap it otherwise it can be hidden
|
|
|
// again by the mouse getting outside the hover space
|
|
// again by the mouse getting outside the hover space
|
|
|
- left: $side-menu-width - 0.2rem;
|
|
|
|
|
- background-color: rgba($side-menu-bg,$side-menu-opacity);
|
|
|
|
|
|
|
+ left: $side-menu-width - 5px;
|
|
|
|
|
+ background-color: $side-menu-bg;
|
|
|
@include animation('dropdown-anim 150ms ease-in-out 100ms forwards');
|
|
@include animation('dropdown-anim 150ms ease-in-out 100ms forwards');
|
|
|
z-index: -9999;
|
|
z-index: -9999;
|
|
|
}
|
|
}
|
|
@@ -118,10 +119,22 @@
|
|
|
padding: 0px 10px 0px 10px;
|
|
padding: 0px 10px 0px 10px;
|
|
|
display: block;
|
|
display: block;
|
|
|
border-left: 1px solid transparent;
|
|
border-left: 1px solid transparent;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
|
|
|
|
|
|
|
|
.sidemenu-item-text {
|
|
.sidemenu-item-text {
|
|
|
padding-left: 11px;
|
|
padding-left: 11px;
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ display: none;
|
|
|
|
|
+ opacity: 0;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ &:hover {
|
|
|
|
|
+ .sidemenu-item-text {
|
|
|
|
|
+ display: block;
|
|
|
|
|
+ opacity: 1;
|
|
|
|
|
+ transition: opacity 150ms ease-in-out;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
img {
|
|
@@ -132,15 +145,6 @@
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.sidemenu-section-tagline {
|
|
|
|
|
- font-style: italic;
|
|
|
|
|
- line-height: 10px;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-.sidemenu-section-text-wrapper {
|
|
|
|
|
- padding-top: 4px;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
.sidemenu-org-section .dropdown-menu-title {
|
|
.sidemenu-org-section .dropdown-menu-title {
|
|
|
margin: 0 10px 0 6px;
|
|
margin: 0 10px 0 6px;
|
|
|
padding: 7px 0 7px;
|
|
padding: 7px 0 7px;
|
|
@@ -215,6 +219,7 @@
|
|
|
.sidemenu-org-details {
|
|
.sidemenu-org-details {
|
|
|
padding-left: 10px;
|
|
padding-left: 10px;
|
|
|
color: $link-color;
|
|
color: $link-color;
|
|
|
|
|
+ display: none;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.sidemenu-org-name {
|
|
.sidemenu-org-name {
|