AdminLTE/build/scss/skins/skin-green-light.scss

47 lines
940 B
SCSS

/*
* Skin: Green
* -----------
*/
.skin-green-light {
//Navbar
.main-header {
.navbar {
@include navbar-variant(theme-color("success"), #fff);
.sidebar-toggle {
color: #fff;
&:hover {
background-color: darken(theme-color("success"), 5%);
}
}
@media (max-width: $screen-header-collapse) {
.dropdown-menu {
li {
&.divider {
background-color: rgba(255, 255, 255, 0.1);
}
a {
color: #fff;
&:hover {
background: darken(theme-color("success"), 5%);
}
}
}
}
}
}
//Logo
.logo {
@include logo-variant(theme-color("success"));
}
li.user-header {
background-color: theme-color("success");
}
}
//Create the sidebar skin
@include skin-light-sidebar(theme-color("success"));
}