From fa25a2219b23cac50d1988b00c91fbb9e2859e48 Mon Sep 17 00:00:00 2001
From: Goeny <ivar.kramer@gmail.com>
Date: Thu, 31 Aug 2017 12:51:46 +0200
Subject: [PATCH] Show information in poster view in seperate DIV

Added a new DIV to hold the show information.
This way custom CSS is more dynamic. And if original CSS is used, there is no harm.

See screenshots for goal...
---
 gui/slick/views/inc_home_showList.mako | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gui/slick/views/inc_home_showList.mako b/gui/slick/views/inc_home_showList.mako
index bd27c893f..a34136ff0 100644
--- a/gui/slick/views/inc_home_showList.mako
+++ b/gui/slick/views/inc_home_showList.mako
@@ -23,6 +23,7 @@
                     <div class="show-image">
                         <img alt="" title="${loading_show.name}" class="show-image" style="border-bottom: 1px solid #111;" src="" data-src="${srRoot}/showPoster/?show=${loading_show.id | u}&amp;which=poster_thumb" />
                     </div>
+                    <div class="show-information">
                     <div class="progressbar hidden-print" style="position:relative;" data-show-id="${loading_show.id | u}" data-progress-percentage="0"></div>
                     <div class="show-title">${_('Loading')} (${loading_show.name})</div>
                     <div class="show-date">&nbsp;</div>
@@ -41,6 +42,7 @@
                             </tr>
                         </table>
                     </div>
+                    </div>
                 </div>
             % endfor
             % for curShow in myShowList:
@@ -103,6 +105,7 @@
                         <a href="${srRoot}/home/displayShow?show=${curShow.indexerid}"><img alt="" class="show-image" src="" data-src="${srRoot}/showPoster/?show=${curShow.indexerid}&amp;which=poster_thumb" /></a>
                     </div>
 
+                    <div class="show-information">
                     <div class="progressbar hidden-print" style="position:relative;" data-show-id="${curShow.indexerid}" data-progress-percentage="${progressbar_percent}"></div>
 
                     <div class="show-title">
@@ -154,6 +157,7 @@
                             </tr>
                         </table>
                     </div>
+                    </div>
                 </div>
             % endfor
         </div>
-- 
GitLab