This commit is contained in:
Alexandr Danilov 2015-08-07 23:29:21 +03:00
parent 54139268f8
commit 768303a573
2 changed files with 10 additions and 0 deletions

View file

@ -80,6 +80,14 @@ nav, main, footer {
float: right;
}
.nav-panels {
transition: background 0.2s ease;
}
.nav-panel-search .mdi-navigation-close, .nav-panel-search .mdi-action-search {
color: #444 !important;
}
/* ==========================================================================
2 = Side-nav
========================================================================== */

View file

@ -16,6 +16,7 @@ $(document).ready(function(){
$(".nav-panel-buttom").hide(100);
$(".nav-panel-search").show(100);
$(".nav-panel-menu").addClass('hidden');
$(".nav-panels").css('background', 'white');
return false;
});
$('.mdi-navigation-close').click(function(){
@ -23,6 +24,7 @@ $(document).ready(function(){
$(".nav-panel-search").hide(100);
$(".nav-panel-buttom").show(100);
$(".nav-panel-menu").removeClass('hidden');
$(".nav-panels").css('background', 'transparent');
return false;
});
});