fix webpages widgets
This commit is contained in:
@@ -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 {
|
||||
|
||||
@@ -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");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user