| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- /* Sidebar */
- .sidebar {
- min-height: calc(100vh - #{$navbar-height});
- background: $sidebar-light-bg;
- font-family: $type1-regular;
- padding: 0;
- width: $sidebar-width-lg;
- z-index: 11;
- transition: width $action-transition-duration $action-transition-timing-function, background $action-transition-duration $action-transition-timing-function;
- -webkit-transition: width $action-transition-duration $action-transition-timing-function, background $action-transition-duration $action-transition-timing-function;
- -moz-transition: width $action-transition-duration $action-transition-timing-function, background $action-transition-duration $action-transition-timing-function;
- -ms-transition: width $action-transition-duration $action-transition-timing-function, background $action-transition-duration $action-transition-timing-function;
- .nav {
- overflow: hidden;
- flex-wrap: nowrap;
- flex-direction: column;
- margin-bottom: 60px;
- .nav-item {
- padding:0 $sidebar-menu-padding-x;
- @include transition-duration(0.25s);
- transition-property: background;
- -webkit-transition-property: background;
- .collapse {
- z-index: 999;
- }
- .nav-link {
- @include display-flex;
- @include align-items(center);
- white-space: nowrap;
- padding:$sidebar-menu-padding-y 0 $sidebar-menu-padding-y 0;
- color: $sidebar-light-menu-color;
- @include transition-duration(0.45s);
- transition-property: color;
- -webkit-transition-property: color;
- i {
- color: inherit;
- &.menu-icon {
- font-size: $sidebar-icon-font-size;
- line-height: 1;
- margin-left: auto;
- color: $sidebar-light-menu-icon-color;
- &:before {
- vertical-align: middle;
- }
- }
- &.menu-arrow {
- font: normal normal normal 24px/1 "Material Design Icons";
- line-height: 1;
- font-size: $sidebar-icon-font-size;
- margin-left: auto;
- color: $sidebar-light-menu-arrow-color;
- &:before{
- content: "\f141";
- font-size: inherit;
- color: inherit;
- }
- + .menu-icon {
- margin-left: .25rem;
- }
- }
- }
- .menu-title {
- color: inherit;
- display: inline-block;
- font-size: $sidebar-menu-font-size;
- line-height: 1;
- vertical-align: middle;
- }
- .badge {
- margin-right: auto;
- margin-left: 1rem;
- }
- &[aria-expanded="true"]{
- .menu-arrow{
- &:before{
- content: "\f140";
- }
- }
- }
- }
- &.active {
- background: $sidebar-light-menu-active-bg;
- > .nav-link {
- .menu-title {
- color: $sidebar-light-menu-active-color;
- font-family: $type1-medium;
- }
- i {
- color: theme-color(primary);
- }
- }
- }
- &:hover{
- background: $sidebar-light-menu-hover-bg;
- }
- &.nav-profile {
- .nav-link {
- height: auto;
- line-height: 1;
- border-top: 0;
- padding: 1.25rem 0;
- .nav-profile-image {
- width: 44px;
- height: 44px;
- img {
- width: 44px;
- height: 44px;
- border-radius: 100%;
- }
- }
- .nav-profile-text {
- margin-left: 1rem;
- }
- .nav-profile-badge {
- font-size: 1.125rem;
- margin-left: auto;
- }
- }
- }
- &.sidebar-actions {
- margin-top: 1rem;
- .nav-link {
- border-top: 0;
- display: block;
- height: auto;
- }
- &:hover {
- background: initial;
- .nav-link {
- color: initial;
- }
- }
- }
- }
- &:not(.sub-menu) {
- > .nav-item {
- &:hover {
- &:not(.nav-category):not(.nav-profile) {
- > .nav-link {
- color: $sidebar-light-menu-hover-color;
- }
- }
- }
- }
- }
- &.sub-menu {
- margin-bottom: 20px;
- margin-top:0;
- list-style: none;
- .nav-item {
- padding: 0;
- .nav-link {
- color: $sidebar-light-submenu-color;
- padding: $sidebar-submenu-item-padding;
- position: relative;
- font-size: $sidebar-submenu-font-size;
- line-height: 1;
- height: auto;
- border-top: 0;
- &:before {
- content: "\F054";
- font-family: "Material Design Icons";
- display: block;
- position: absolute;
- left:0px;
- top:50%;
- @include transform(translateY(-50%));
- color: lighten($sidebar-light-submenu-color, 10%);
- font-size: .75rem;
- }
- &.active {
- color: $sidebar-light-menu-active-color;
- background: transparent;
- }
- &:hover {
- color: $sidebar-light-submenu-hover-color;
- }
- }
- &:hover {
- background: transparent;
- }
- }
- }
- }
- }
- /* style for off-canvas menu*/
- @media screen and (max-width: 991px) {
- .sidebar-offcanvas {
- position: fixed;
- max-height: calc(100vh - #{$navbar-height});
- top: $navbar-height;
- bottom: 0;
- overflow: auto;
- right: -$sidebar-width-lg;
- -webkit-transition: all 0.25s ease-out;
- -o-transition: all 0.25s ease-out;
- transition: all 0.25s ease-out;
- &.active {
- right: 0;
- }
- }
- }
|