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.
47 lines
892 B
47 lines
892 B
/*
|
|
* Skin: Green
|
|
* -----------
|
|
*/
|
|
|
|
.skin-green-light {
|
|
//Navbar
|
|
.main-header {
|
|
.navbar {
|
|
@include navbar-variant($brand-success, #fff);
|
|
.sidebar-toggle {
|
|
color: #fff;
|
|
&:hover {
|
|
background-color: darken($brand-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($brand-success, 5%);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//Logo
|
|
.logo {
|
|
@include logo-variant($brand-success);
|
|
}
|
|
|
|
li.user-header {
|
|
background-color: $brand-success;
|
|
}
|
|
}
|
|
|
|
//Create the sidebar skin
|
|
@include skin-light-sidebar($brand-success);
|
|
|
|
}
|