fix webpages widgets

This commit is contained in:
Mario Vavti
2017-03-20 22:39:29 +01:00
parent 837efcf5e7
commit cbcd195461
4 changed files with 57 additions and 80 deletions

View File

@@ -1672,9 +1672,10 @@ dl.bb-dl > dd > li {
}
.sub-menu {
width: 100%;
margin-top: 10px;
padding-left: 15px;
border-left: 3px solid #eee;
border-left: 0.2rem solid #eee;
}
.app-icon {

View File

@@ -74,12 +74,12 @@ $(document).ready(function() {
function makeFullScreen(full) {
if(typeof full=='undefined' || full == true) {
$('main').addClass('fullscreen');
$('header, nav, aside, #fullscreen-btn').css({'visibility': 'hidden'});
$('header, nav, aside, #fullscreen-btn').hide();
$('#inline-btn').show();
}
else {
$('main').removeClass('fullscreen');
$('header, nav, aside, #fullscreen-btn').css({'visibility': ''});
$('header, nav, aside, #fullscreen-btn').show();
$('#inline-btn').hide();
$(document.body).trigger("sticky_kit:recalc");
}