mirror of https://github.com/ColorlibHQ/AdminLTE
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
166 lines
3.4 KiB
166 lines
3.4 KiB
//
|
|
// Mixins: Sidebar
|
|
//
|
|
|
|
// Sidebar Color
|
|
@mixin sidebar-color($color) {
|
|
.nav-sidebar > .nav-item {
|
|
& > .nav-link.active {
|
|
background-color: $color;
|
|
color: color-yiq($color);
|
|
}
|
|
}
|
|
|
|
.nav-sidebar.nav-legacy > .nav-item {
|
|
& > .nav-link.active {
|
|
border-color: $color;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Sidebar Mini Breakpoints
|
|
@mixin sidebar-mini-breakpoint() {
|
|
// A fix for text overflow while transitioning from sidebar mini to full sidebar
|
|
.nav-sidebar,
|
|
.nav-sidebar > .nav-header,
|
|
.nav-sidebar .nav-link {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
// When the sidebar is collapsed...
|
|
&.sidebar-collapse {
|
|
.d-hidden-mini {
|
|
display: none;
|
|
}
|
|
|
|
// Apply the new margins to the main content and footer
|
|
.content-wrapper,
|
|
.main-footer,
|
|
.main-header {
|
|
margin-left: $sidebar-mini-width !important;
|
|
}
|
|
|
|
// Make the sidebar headers
|
|
.nav-sidebar .nav-header {
|
|
display: none;
|
|
}
|
|
|
|
.nav-sidebar .nav-link p {
|
|
width: 0;
|
|
}
|
|
|
|
.sidebar .user-panel > .info,
|
|
.nav-sidebar .nav-link p,
|
|
.brand-text {
|
|
margin-left: -10px;
|
|
animation-name: fadeOut;
|
|
animation-duration: $transition-speed;
|
|
animation-fill-mode: both;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.logo-xl {
|
|
animation-name: fadeOut;
|
|
animation-duration: $transition-speed;
|
|
animation-fill-mode: both;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.logo-xs {
|
|
display: inline-block;
|
|
animation-name: fadeIn;
|
|
animation-duration: $transition-speed;
|
|
animation-fill-mode: both;
|
|
visibility: visible;
|
|
}
|
|
|
|
// Modify the sidebar to shrink instead of disappearing
|
|
.main-sidebar {
|
|
overflow-x: hidden;
|
|
|
|
&,
|
|
&::before {
|
|
// Don't go away! Just shrink
|
|
margin-left: 0;
|
|
width: $sidebar-mini-width;
|
|
}
|
|
|
|
.user-panel {
|
|
.image {
|
|
float: none;
|
|
}
|
|
}
|
|
|
|
&:hover,
|
|
&.sidebar-focused {
|
|
width: $sidebar-width;
|
|
|
|
.brand-link {
|
|
width: $sidebar-width;
|
|
}
|
|
|
|
.user-panel {
|
|
text-align: left;
|
|
|
|
.image {
|
|
float: left;
|
|
}
|
|
}
|
|
|
|
.user-panel > .info,
|
|
.nav-sidebar .nav-link p,
|
|
.brand-text,
|
|
.logo-xl {
|
|
display: inline-block;
|
|
margin-left: 0;
|
|
animation-name: fadeIn;
|
|
animation-duration: $transition-speed;
|
|
animation-fill-mode: both;
|
|
visibility: visible;
|
|
}
|
|
|
|
.logo-xs {
|
|
animation-name: fadeOut;
|
|
animation-duration: $transition-speed;
|
|
animation-fill-mode: both;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.brand-image {
|
|
margin-right: .5rem;
|
|
}
|
|
|
|
// Make the sidebar links, menus, labels, badges
|
|
// and angle icons disappear
|
|
.sidebar-form,
|
|
.user-panel > .info {
|
|
display: block !important;
|
|
-webkit-transform: translateZ(0);
|
|
}
|
|
|
|
.nav-sidebar > .nav-item > .nav-link > span {
|
|
display: inline-block !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Make an element visible only when sidebar mini is active
|
|
.visible-sidebar-mini {
|
|
display: block !important;
|
|
}
|
|
|
|
&.layout-fixed {
|
|
.main-sidebar:hover {
|
|
.brand-link {
|
|
width: $sidebar-width;
|
|
}
|
|
}
|
|
|
|
.brand-link {
|
|
width: $sidebar-mini-width;
|
|
}
|
|
}
|
|
}
|
|
}
|