mirror of https://github.com/ColorlibHQ/gentelella
Merge pull request #440 from ernaniaz/master
dataTable fixed header bug on sidebar togglepull/472/head
commit
be6e222e46
|
@ -762,6 +762,9 @@ a:focus {
|
|||
position: absolute;
|
||||
top: 0
|
||||
}
|
||||
.nav-md ul.nav.child_menu li:last-child::after {
|
||||
bottom: 50%;
|
||||
}
|
||||
.nav.side-menu>li>a,
|
||||
.nav.child_menu>li>a {
|
||||
color: #E7E7E7;
|
||||
|
|
|
@ -114,6 +114,8 @@ $MENU_TOGGLE.on('click', function() {
|
|||
$BODY.toggleClass('nav-md nav-sm');
|
||||
|
||||
setContentHeight();
|
||||
|
||||
$('.dataTable').each ( function () { $(this).dataTable().fnDraw(); });
|
||||
});
|
||||
|
||||
// check active menu
|
||||
|
|
|
@ -68,6 +68,8 @@ $(document).ready(function() {
|
|||
$BODY.toggleClass('nav-md nav-sm');
|
||||
|
||||
setContentHeight();
|
||||
|
||||
$('.dataTable').each ( function () { $(this).dataTable().fnDraw(); });
|
||||
});
|
||||
|
||||
// check active menu
|
||||
|
|
|
@ -546,6 +546,9 @@ a:hover, a:focus {
|
|||
position: absolute;
|
||||
top: 0;
|
||||
}
|
||||
.nav-md ul.nav.child_menu li:last-child::after {
|
||||
bottom: 50%;
|
||||
}
|
||||
.nav.side-menu>li>a, .nav.child_menu>li>a {
|
||||
color: #E7E7E7;
|
||||
font-weight: 500;
|
||||
|
|
Loading…
Reference in New Issue