mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-25 01:02:19 +00:00
Final fix for #84
This commit is contained in:
parent
1092733b5e
commit
3445189115
1 changed files with 10 additions and 0 deletions
|
@ -152,7 +152,17 @@
|
||||||
|
|
||||||
if (window.location.href.indexOf("episodes") > -1) {
|
if (window.location.href.indexOf("episodes") > -1) {
|
||||||
$('.menu').css('background', '#000000');
|
$('.menu').css('background', '#000000');
|
||||||
|
$('.menu').css('opacity', '0.8');
|
||||||
$('#divmenu').css('background', '#000000');
|
$('#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 {
|
else {
|
||||||
$('.menu').css('background', '#272727');
|
$('.menu').css('background', '#272727');
|
||||||
|
|
Loading…
Reference in a new issue