updated dist files

pull/2125/head
REJack 2019-06-05 14:20:04 +02:00
parent b4fa509976
commit 6f953ee8da
No known key found for this signature in database
GPG Key ID: 9F3976CC630CC888
6 changed files with 15 additions and 9 deletions

View File

@ -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

View File

@ -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

6
dist/js/adminlte.js vendored
View File

@ -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