Merge pull request #4655 from BorjaSanchezBeezNest/BT#20442_v2

Plugin: ExtraMenuFromWebservice: Menu is open by default. Fix z-index- refs BT#20442
pull/4657/head
Nicolas Ducoulombier 3 years ago committed by GitHub
commit 7db26647ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      plugin/extramenufromwebservice/resources/css/extramenufromwebservice.css
  2. 2
      plugin/extramenufromwebservice/resources/js/extramenufromwebservice.js

@ -97,3 +97,9 @@
top: 0;
transform: rotate(90deg);
}
#date_alt_text {
z-index: 0; !important;
}
.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
z-index: 0; !important;
}

@ -1,5 +1,7 @@
$(document).ready(function () {
$('#menu-toggle').click(function() {
$("#nav-from-webservice").toggle("slow");
$("#nav-from-webservice").css("z-index", 15);
});
$('#menu-toggle').click();
});

Loading…
Cancel
Save