mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-13 02:07:47 +08:00
Merge branch 'development' of http://github.com/morpheus65535/bazarr into development
This commit is contained in:
commit
39aa932465
1 changed files with 10 additions and 1 deletions
|
@ -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');
|
||||
|
|
Loading…
Reference in a new issue