Fix app-navigation-toggle height and small typo
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
committed by
Julius Härtl
parent
882bf773c8
commit
630104c37f
@@ -172,8 +172,8 @@ button.button-inline:hover {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#app-navigation-toggle {
|
#app-navigation-toggle {
|
||||||
width: 45px;
|
width: 44px;
|
||||||
height: 40px;
|
height: 44px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
display: inline-block !important;
|
display: inline-block !important;
|
||||||
|
|||||||
@@ -64,9 +64,9 @@ app.run(function ($document, $rootScope, $transitions, BoardService) {
|
|||||||
|
|
||||||
$('#app-navigation-toggle').click(function(){
|
$('#app-navigation-toggle').click(function(){
|
||||||
if($(window).width() > 768) {
|
if($(window).width() > 768) {
|
||||||
$('#app-navigation').toggle('hidde');
|
$('#app-navigation').toggle('hidden');
|
||||||
} else {
|
} else {
|
||||||
if(snapper.state().state == 'left'){
|
if(snapper.state().state === 'left'){
|
||||||
snapper.close();
|
snapper.close();
|
||||||
} else {
|
} else {
|
||||||
snapper.open('left');
|
snapper.open('left');
|
||||||
|
|||||||
Reference in New Issue
Block a user