mirror of https://github.com/ColorlibHQ/AdminLTE
updated dist files
parent
b4fa509976
commit
6f953ee8da
|
@ -86,7 +86,7 @@ body {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.content-wrapper {
|
.content-wrapper {
|
||||||
min-height: 100%;
|
min-height: calc(-2%);
|
||||||
background-color: #ecf0f5;
|
background-color: #ecf0f5;
|
||||||
z-index: 800;
|
z-index: 800;
|
||||||
}
|
}
|
||||||
|
@ -4933,6 +4933,9 @@ table.text-center th {
|
||||||
.chart canvas {
|
.chart canvas {
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
}
|
}
|
||||||
|
hr {
|
||||||
|
border-top: 1px solid #555555;
|
||||||
|
}
|
||||||
/*
|
/*
|
||||||
* Misc: print
|
* Misc: print
|
||||||
* -----------
|
* -----------
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -86,7 +86,7 @@ body {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.content-wrapper {
|
.content-wrapper {
|
||||||
min-height: 100%;
|
min-height: calc(-2%);
|
||||||
background-color: #ecf0f5;
|
background-color: #ecf0f5;
|
||||||
z-index: 800;
|
z-index: 800;
|
||||||
}
|
}
|
||||||
|
@ -3958,6 +3958,9 @@ table.text-center th {
|
||||||
.chart canvas {
|
.chart canvas {
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
}
|
}
|
||||||
|
hr {
|
||||||
|
border-top: 1px solid #555555;
|
||||||
|
}
|
||||||
/*
|
/*
|
||||||
* Misc: print
|
* Misc: print
|
||||||
* -----------
|
* -----------
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -7,7 +7,7 @@
|
||||||
* @Author Almsaeed Studio
|
* @Author Almsaeed Studio
|
||||||
* @Support <https://www.almsaeedstudio.com>
|
* @Support <https://www.almsaeedstudio.com>
|
||||||
* @Email <abdullah@almsaeedstudio.com>
|
* @Email <abdullah@almsaeedstudio.com>
|
||||||
* @version 2.4.8
|
* @version 2.4.11
|
||||||
* @repository git://github.com/almasaeed2010/AdminLTE.git
|
* @repository git://github.com/almasaeed2010/AdminLTE.git
|
||||||
* @license MIT <http://opensource.org/licenses/MIT>
|
* @license MIT <http://opensource.org/licenses/MIT>
|
||||||
*/
|
*/
|
||||||
|
@ -1077,7 +1077,7 @@ throw new Error('AdminLTE requires jQuery')
|
||||||
|
|
||||||
parent.addClass(ClassName.open);
|
parent.addClass(ClassName.open);
|
||||||
tree.slideDown(this.options.animationSpeed, function () {
|
tree.slideDown(this.options.animationSpeed, function () {
|
||||||
setTimeout(() => $(this.element).trigger(expandedEvent),0)
|
$(this.element).trigger(expandedEvent);
|
||||||
}.bind(this));
|
}.bind(this));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1088,7 +1088,7 @@ throw new Error('AdminLTE requires jQuery')
|
||||||
parentLi.removeClass(ClassName.open);
|
parentLi.removeClass(ClassName.open);
|
||||||
tree.slideUp(this.options.animationSpeed, function () {
|
tree.slideUp(this.options.animationSpeed, function () {
|
||||||
//tree.find(Selector.open + ' > ' + Selector.treeview).slideUp();
|
//tree.find(Selector.open + ' > ' + Selector.treeview).slideUp();
|
||||||
setTimeout(() => $(this.element).trigger(collapsedEvent), 0);
|
$(this.element).trigger(collapsedEvent);
|
||||||
}.bind(this));
|
}.bind(this));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue