Merge branch 'development' of http://github.com/morpheus65535/bazarr into development

This commit is contained in:
morpheus65535 2018-09-28 21:32:44 -04:00
commit 39aa932465
1 changed files with 10 additions and 1 deletions

View File

@ -4,7 +4,6 @@
<style>
#divmenu {
background-color: #000000;
opacity: 0.8;
padding-top: 2em;
padding-bottom: 1em;
padding-left: 1em;
@ -152,7 +151,17 @@
if (window.location.href.indexOf("episodes") > -1) {
$('.menu').css('background', '#000000');
$('.menu').css('opacity', '0.8');
$('#divmenu').css('background', '#000000');
$('#divmenu').css('opacity', '0.8');
$('#divmenu').css('box-shadow', '0px 0px 5px 5px #000000');
}
else if (window.location.href.indexOf("movie/") > -1) {
$('.menu').css('background', '#000000');
$('.menu').css('opacity', '0.8');
$('#divmenu').css('background', '#000000');
$('#divmenu').css('opacity', '0.8');
$('#divmenu').css('box-shadow', '0px 0px 5px 5px #000000');
}
else {
$('.menu').css('background', '#272727');