AdminLTE/build/less/control-sidebar.less

92 lines
2 KiB
Plaintext
Raw Normal View History

2015-03-28 00:29:28 +01:00
/*
* Component: Control sidebar. By deafult, this is the right sidebar.
*/
.control-sidebar {
2015-03-28 19:44:48 +01:00
.translate(@control-sidebar-width, 0);
.transition-transform(@transition-speed ease-in-out);
2015-03-28 00:29:28 +01:00
position: absolute;
top: @navbar-height;
right: 0;
width: @control-sidebar-width;
z-index: 1010;
background: @sidebar-dark-bg;
color: @sidebar-dark-color;
//Make it hide in small screens
@media (max-width: @screen-sm) {
2015-03-28 19:44:48 +01:00
top: @navbar-height + 50;
//.translate(@control-sidebar-width, 0);
2015-03-28 00:29:28 +01:00
}
//Tab panes
> .tab-content {
2015-03-28 19:44:48 +01:00
padding: 10px 15px;
}
//Open state
&.control-sidebar-open {
.translate(0, 0);
.box-shadow(-1px 0 3px rgba(0,0,0,.2));
2015-03-28 00:29:28 +01:00
}
}
//Control sidebar tabs
.control-sidebar-tabs {
border-bottom: darken(@sidebar-dark-bg, 3%);
> li {
> a {
2015-03-28 19:44:48 +01:00
.border-radius(0)!important;
2015-03-28 00:29:28 +01:00
background: darken(@sidebar-dark-bg, 5%);
2015-03-28 19:44:48 +01:00
color: @sidebar-dark-color;
2015-03-28 00:29:28 +01:00
//Hover and active states
&,
&:hover {
border-right: none;
border-left: 1px solid darken(@sidebar-dark-bg, 7%)!important;
border-bottom: 1px solid darken(@sidebar-dark-bg, 7%)!important;
}
&:hover,
&:focus,
&:active {
border-top: none;
background: darken(@sidebar-dark-bg, 3%);
}
.icon {
font-size: 16px;
}
}
//Active state
&.active {
> a {
&,
&:hover,
&:focus,
&:active {
border-top: none!important;
border-right: none!important;
border-bottom: none!important;
background: @sidebar-dark-bg;
2015-03-28 19:44:48 +01:00
color: #fff;
2015-03-28 00:29:28 +01:00
}
}
}
2015-03-28 19:44:48 +01:00
}
//Remove resposiveness on small screens
@media(max-width: @screen-sm) {
display: table;
>li {
display: table-cell!important;
}
}
2015-03-28 00:29:28 +01:00
}
//Headings in the sidebar content
.control-sidebar-heading {
color: #fff;
2015-03-28 19:44:48 +01:00
font-weight: 400;
font-size: 16px;
padding: 10px 0;
margin-bottom: 10px;
2015-03-28 00:29:28 +01:00
}
2015-03-28 19:44:48 +01:00
.control-sidebar-subheading {
display: block;
color: #fff;
font-weight: 400;
font-size: 14px;
2015-03-28 00:29:28 +01:00
}