mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-02-12 08:54:41 +08:00
Fix for #84
This commit is contained in:
parent
c774ef8a16
commit
fd7cd0a92c
2 changed files with 3 additions and 5 deletions
|
@ -31,8 +31,7 @@
|
||||||
background-position:center center;
|
background-position:center center;
|
||||||
}
|
}
|
||||||
#divdetails {
|
#divdetails {
|
||||||
background-color: #000000;
|
background-color: rgba(0, 0, 0, 0.9);
|
||||||
opacity: 0.9;
|
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
margin-top: 6em;
|
margin-top: 6em;
|
||||||
margin-bottom: 3em;
|
margin-bottom: 3em;
|
||||||
|
|
|
@ -30,8 +30,7 @@
|
||||||
background-position:center center;
|
background-position:center center;
|
||||||
}
|
}
|
||||||
#divdetails {
|
#divdetails {
|
||||||
background-color: #000000;
|
background-color: rgba(0, 0, 0, 0.9);
|
||||||
opacity: 0.9;
|
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
margin-top: 6em;
|
margin-top: 6em;
|
||||||
margin-bottom: 3em;
|
margin-bottom: 3em;
|
||||||
|
@ -109,7 +108,7 @@
|
||||||
<button id="config" class="ui button" data-tooltip="Edit movie" data-inverted="" data-tmdbid="{{details[5]}}" data-title="{{details[0]}}" data-poster="{{details[2]}}" data-audio="{{details[6]}}" data-languages="{{!subs_languages_list}}" data-hearing-impaired="{{details[4]}}"><i class="ui inverted large compact configure icon"></i></button>
|
<button id="config" class="ui button" data-tooltip="Edit movie" data-inverted="" data-tmdbid="{{details[5]}}" data-title="{{details[0]}}" data-poster="{{details[2]}}" data-audio="{{details[6]}}" data-languages="{{!subs_languages_list}}" data-hearing-impaired="{{details[4]}}"><i class="ui inverted large compact configure icon"></i></button>
|
||||||
</div>
|
</div>
|
||||||
<h2>
|
<h2>
|
||||||
%if details[13] is True:
|
%if details[13] == 'True':
|
||||||
<span data-tooltip="Movie monitored in Radarr"><i class="bookmark icon"></i></span>
|
<span data-tooltip="Movie monitored in Radarr"><i class="bookmark icon"></i></span>
|
||||||
%else:
|
%else:
|
||||||
<span data-tooltip="Movie unmonitored in Radarr"><i class="bookmark outline icon"></i></span>
|
<span data-tooltip="Movie unmonitored in Radarr"><i class="bookmark outline icon"></i></span>
|
||||||
|
|
Loading…
Reference in a new issue