Browse Source

Fix view-show poster click zoom area is only accessible from top of poster image.

Move view-show paused "II" indicator as it wasn't in a good spot anyway.
tags/release_0.24.3^2
JackDandy 4 years ago
parent
commit
07f4374242
  1. 8
      CHANGES.md
  2. 8
      gui/slick/css/style.css
  3. 12
      gui/slick/interfaces/default/displayShow.tmpl

8
CHANGES.md

@ -1,4 +1,10 @@
### 0.24.2 (2021-06-14 13:50:00 UTC)
### 0.24.3 (2021-06-17 23:00:00 UTC)
* Fix view-show poster click zoom area is only accessible from top of poster image
* Move view-show paused "II" indicator as it wasn't in a good spot anyway
### 0.24.2 (2021-06-14 13:50:00 UTC)
* Update UnRar x64 for Windows 6.01 to 6.02

8
gui/slick/css/style.css

@ -1924,14 +1924,20 @@ span.imdbstars, span.imdbstars > *{
overflow:hidden
}
.paused-holder{
position:relative
}
.paused{
font-size:200px;
text-align:center;
position:absolute;
z-index:-1;
margin:0 auto;
height:250px;
top:-10px;
left:0;
right:0;
padding-top:25px;
opacity:0.3;
filter:alpha(opacity=30)
}

12
gui/slick/interfaces/default/displayShow.tmpl

@ -108,11 +108,6 @@
</div>
<div id="showCol">
#if int($show_obj.paused)
<div class="paused paused-highlight">
<i class="sgicon-pause paused-outline"></i>
</div>
#end if
<div class="details-wrapper">
<div class="details-right top">
#if 0 < len($seasons)
@ -174,6 +169,13 @@
<div class="details-wrapper">
<div class="details-right">
#if int($show_obj.paused)
<div class="paused-holder">
<div class="paused paused-highlight">
<i class="sgicon-pause paused-outline"></i>
</div>
</div>
#end if
<div>
<span class="details-title">Links</span>
<span class="details-info">

Loading…
Cancel
Save