mirror of https://github.com/ColorlibHQ/AdminLTE
Fixed issue #288
parent
3e3fedd4f5
commit
3810f026ce
|
@ -5,3 +5,4 @@
|
||||||
/node_modules/
|
/node_modules/
|
||||||
TODO
|
TODO
|
||||||
*.zip
|
*.zip
|
||||||
|
test.html
|
|
@ -125,6 +125,9 @@ $(function () {
|
||||||
//Easy access to options
|
//Easy access to options
|
||||||
var o = $.AdminLTE.options;
|
var o = $.AdminLTE.options;
|
||||||
|
|
||||||
|
//Set up the object
|
||||||
|
_init();
|
||||||
|
|
||||||
//Activate the layout maker
|
//Activate the layout maker
|
||||||
$.AdminLTE.layout.activate();
|
$.AdminLTE.layout.activate();
|
||||||
|
|
||||||
|
@ -183,14 +186,15 @@ $(function () {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
/* ----------------------
|
/* ----------------------------------
|
||||||
* - AdminLTE Functions -
|
* - Initialize the AdminLTE Object -
|
||||||
* ----------------------
|
* ----------------------------------
|
||||||
* All AdminLTE functions are implemented below.
|
* All AdminLTE functions are implemented below.
|
||||||
*/
|
*/
|
||||||
|
function _init() {
|
||||||
|
|
||||||
/* prepareLayout
|
/* Layout
|
||||||
* =============
|
* ======
|
||||||
* Fixes the layout height in case min-height fails.
|
* Fixes the layout height in case min-height fails.
|
||||||
*
|
*
|
||||||
* @type Object
|
* @type Object
|
||||||
|
@ -395,6 +399,7 @@ $.AdminLTE.boxWidget = {
|
||||||
},
|
},
|
||||||
options: $.AdminLTE.options.boxWidgetOptions
|
options: $.AdminLTE.options.boxWidgetOptions
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
/* ------------------
|
/* ------------------
|
||||||
* - Custom Plugins -
|
* - Custom Plugins -
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -6,6 +6,10 @@
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
z-index: 500;
|
||||||
|
}
|
||||||
|
|
||||||
#components > h3 {
|
#components > h3 {
|
||||||
font-size: 25px;
|
font-size: 25px;
|
||||||
color: #000;
|
color: #000;
|
||||||
|
@ -20,7 +24,7 @@ ul {
|
||||||
}
|
}
|
||||||
.page-header {
|
.page-header {
|
||||||
/*border-bottom: 1px solid #ddd; */
|
/*border-bottom: 1px solid #ddd; */
|
||||||
margin: 20px 0 20px 0;
|
margin: 20px 0 10px 0!important;
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
font-size: 30px;
|
font-size: 30px;
|
||||||
|
@ -46,6 +50,7 @@ ul {
|
||||||
margin-top: -60px;
|
margin-top: -60px;
|
||||||
height: 60px;
|
height: 60px;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
|
z-index: -10;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lead {
|
.lead {
|
||||||
|
|
Loading…
Reference in New Issue