mirror of https://github.com/ColorlibHQ/AdminLTE
Added path variable to boxed layout bg img
parent
a056fbf5b2
commit
ac534fd60c
|
@ -35,7 +35,7 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.layout-boxed {
|
.layout-boxed {
|
||||||
background: url('@{image-path}/boxed-bg.jpg') repeat fixed;
|
background: url('@{boxed-layout-bg-image-path}') repeat fixed;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
|
|
||||||
//Add sidebar-mini class to the body tag to activate this feature
|
//Add sidebar-mini class to the body tag to activate this feature
|
||||||
.sidebar-mini {
|
.sidebar-mini {
|
||||||
min-height: 100%;
|
|
||||||
//Sidebar mini should work only on devices larger than @screen-sm
|
//Sidebar mini should work only on devices larger than @screen-sm
|
||||||
@media (min-width: @screen-sm) {
|
@media (min-width: @screen-sm) {
|
||||||
//When the sidebar is collapsed...
|
//When the sidebar is collapsed...
|
||||||
|
@ -29,9 +28,9 @@
|
||||||
.user-panel {
|
.user-panel {
|
||||||
> .info {
|
> .info {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-menu {
|
.sidebar-menu {
|
||||||
//Make the sidebar links, menus, labels, badeges
|
//Make the sidebar links, menus, labels, badeges
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
z-index: 810;
|
z-index: 810;
|
||||||
//Using disposable variable to join statements with a comma
|
//Using disposable variable to join statements with a comma
|
||||||
@transition-rule: @transition-speed @transition-fn,
|
@transition-rule: @transition-speed @transition-fn,
|
||||||
width @transition-speed @transition-fn;
|
width @transition-speed @transition-fn;
|
||||||
.transition-transform(@transition-rule);
|
.transition-transform(@transition-rule);
|
||||||
@media (max-width: @screen-xs-max) {
|
@media (max-width: @screen-xs-max) {
|
||||||
.translate(-@sidebar-width, 0);
|
.translate(-@sidebar-width, 0);
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
//PATHS
|
//PATHS
|
||||||
//--------------------------------------------------------
|
//--------------------------------------------------------
|
||||||
|
|
||||||
@image-path: "../img";
|
@boxed-layout-bg-image-path: "../img/boxed-bg.jpg";
|
||||||
|
|
||||||
//COLORS
|
//COLORS
|
||||||
//--------------------------------------------------------
|
//--------------------------------------------------------
|
||||||
|
|
|
@ -563,9 +563,6 @@ a:focus {
|
||||||
/*
|
/*
|
||||||
* Component: Sidebar Mini
|
* Component: Sidebar Mini
|
||||||
*/
|
*/
|
||||||
.sidebar-mini {
|
|
||||||
min-height: 100%;
|
|
||||||
}
|
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
.sidebar-mini.sidebar-collapse .content-wrapper,
|
.sidebar-mini.sidebar-collapse .content-wrapper,
|
||||||
.sidebar-mini.sidebar-collapse .right-side,
|
.sidebar-mini.sidebar-collapse .right-side,
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue