mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-22 01:23:43 +00:00
Merge pull request #41 from JackDandy/feature/FixDisplayShowRatingsGlitch
Fix glitch above rating stars on Display Show page.
This commit is contained in:
commit
7f3ed3ef63
5 changed files with 27 additions and 60 deletions
|
@ -36,6 +36,7 @@
|
||||||
* Fix a handler when EpisodeData is not available in TVDB and TVRage APIs
|
* Fix a handler when EpisodeData is not available in TVDB and TVRage APIs
|
||||||
* Add TVRage "Canceled/Ended" as "Ended" status to sort on Simple Layout of Show List page
|
* Add TVRage "Canceled/Ended" as "Ended" status to sort on Simple Layout of Show List page
|
||||||
* Fix qtips on Display Show and Config Post Processing
|
* Fix qtips on Display Show and Config Post Processing
|
||||||
|
* Fix glitch above rating stars on Display Show page
|
||||||
|
|
||||||
[develop changelog]
|
[develop changelog]
|
||||||
* Fix typo for commit "ShowData handler" i.e. SHA-1:3eec217
|
* Fix typo for commit "ShowData handler" i.e. SHA-1:3eec217
|
||||||
|
|
|
@ -960,12 +960,6 @@ home_postprocess.tmpl
|
||||||
displayShow.tmpl
|
displayShow.tmpl
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
#posterCol {
|
|
||||||
float: left;
|
|
||||||
margin-right: 10px;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#showCol {
|
#showCol {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
|
@ -1007,24 +1001,8 @@ h1.title {
|
||||||
top: -3px;
|
top: -3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
span.imdbstars {
|
|
||||||
display: inline-block;
|
|
||||||
vertical-align: top;
|
|
||||||
cursor: help;
|
|
||||||
margin-top: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
span.imdbstars, span.imdbstars > * {
|
span.imdbstars, span.imdbstars > * {
|
||||||
height: 12px;
|
|
||||||
background: url(../images/rating.png) 0 -12px repeat-x;
|
background: url(../images/rating.png) 0 -12px repeat-x;
|
||||||
width: 120px;
|
|
||||||
display: inline-block;
|
|
||||||
vertical-align: top;
|
|
||||||
}
|
|
||||||
|
|
||||||
span.imdbstars > * {
|
|
||||||
background-position: 0 0;
|
|
||||||
max-width:120px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.tags {
|
ul.tags {
|
||||||
|
|
|
@ -947,12 +947,6 @@ home_postprocess.tmpl
|
||||||
displayShow.tmpl
|
displayShow.tmpl
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
#posterCol {
|
|
||||||
float: left;
|
|
||||||
margin-right: 10px;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#showCol {
|
#showCol {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
|
@ -996,24 +990,8 @@ h1.title {
|
||||||
top: -3px;
|
top: -3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
span.imdbstars {
|
|
||||||
display: inline-block;
|
|
||||||
vertical-align: top;
|
|
||||||
cursor: help;
|
|
||||||
margin-top: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
span.imdbstars, span.imdbstars > * {
|
span.imdbstars, span.imdbstars > * {
|
||||||
height: 12px;
|
|
||||||
background: url(../images/rating.png) 0 -12px repeat-x;
|
background: url(../images/rating.png) 0 -12px repeat-x;
|
||||||
width: 120px;
|
|
||||||
display: inline-block;
|
|
||||||
vertical-align: top;
|
|
||||||
}
|
|
||||||
|
|
||||||
span.imdbstars > * {
|
|
||||||
background-position: 0 0;
|
|
||||||
max-width:120px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.tags {
|
ul.tags {
|
||||||
|
|
|
@ -971,8 +971,7 @@ displayShow.tmpl
|
||||||
|
|
||||||
#posterCol {
|
#posterCol {
|
||||||
float: left;
|
float: left;
|
||||||
margin-right: 10px;
|
margin: 3px 10px 20px 0;
|
||||||
margin-bottom: 20px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#showCol {
|
#showCol {
|
||||||
|
@ -1019,23 +1018,34 @@ h1.title {
|
||||||
}
|
}
|
||||||
|
|
||||||
span.imdbstars {
|
span.imdbstars {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
vertical-align: top;
|
margin: 0 3px 0 0;
|
||||||
|
vertical-align: baseline;
|
||||||
cursor: help;
|
cursor: help;
|
||||||
margin-top: 4px;
|
|
||||||
}
|
}
|
||||||
|
span.imdbstars > * {
|
||||||
|
background-position: 0 0 !important;
|
||||||
|
max-width:120px;
|
||||||
|
}
|
||||||
span.imdbstars, span.imdbstars > * {
|
span.imdbstars, span.imdbstars > * {
|
||||||
height: 12px;
|
height: 12px;
|
||||||
background: url(../images/rating.png) 0 -12px repeat-x;
|
|
||||||
width: 120px;
|
width: 120px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
vertical-align: top;
|
font-size:10px
|
||||||
}
|
}
|
||||||
|
|
||||||
span.imdbstars > * {
|
#showinfo .flag {
|
||||||
background-position: 0 0;
|
margin: 0 3px 0 0;
|
||||||
max-width:120px;
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
|
||||||
|
#showinfo .imdb-info {
|
||||||
|
margin: 0 3px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#showinfo a.service {
|
||||||
|
margin: 0 3px 0 0;
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul.tags {
|
ul.tags {
|
||||||
|
|
|
@ -163,17 +163,17 @@
|
||||||
#else
|
#else
|
||||||
#if 'country_codes' in $show.imdb_info:
|
#if 'country_codes' in $show.imdb_info:
|
||||||
#for $country in $show.imdb_info['country_codes'].split('|')
|
#for $country in $show.imdb_info['country_codes'].split('|')
|
||||||
<img src="$sbRoot/images/flags/${$country}.png" width="16" height="11" style="margin-left: 3px; vertical-align:middle;" />
|
<img class="flag" src="$sbRoot/images/flags/${$country}.png" width="16" height="11" />
|
||||||
#end for
|
#end for
|
||||||
#end if
|
#end if
|
||||||
#if 'year' in $show.imdb_info:
|
#if 'year' in $show.imdb_info:
|
||||||
<span>($show.imdb_info['year']) - $show.imdb_info['runtimes'] minutes - </span>
|
<span class="imdb-info">($show.imdb_info['year']) - $show.imdb_info['runtimes'] minutes</span>
|
||||||
#end if
|
#end if
|
||||||
<a href="<%= anon_url('http://www.imdb.com/title/', _show.imdbid) %>" rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;" title="http://www.imdb.com/title/$show.imdbid"><img alt="[imdb]" height="16" width="16" src="$sbRoot/images/imdb.png" style="margin-top: -1px; vertical-align:middle;"/></a>
|
<a class="service" href="<%= anon_url('http://www.imdb.com/title/', _show.imdbid) %>" rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;" title="http://www.imdb.com/title/$show.imdbid"><img alt="[imdb]" height="16" width="16" src="$sbRoot/images/imdb.png" /></a>
|
||||||
#end if
|
#end if
|
||||||
<a href="<%= anon_url(sickbeard.indexerApi(_show.indexer).config['show_url'], _show.indexerid) %>" onclick="window.open(this.href, '_blank'); return false;" title="$sickbeard.indexerApi($show.indexer).config["show_url"]$show.indexerid"><img alt="$sickbeard.indexerApi($show.indexer).name" height="16" width="16" src="$sbRoot/images/$sickbeard.indexerApi($show.indexer).config["icon"] "style="margin-top: -1px; vertical-align:middle;"/></a>
|
<a class="service" href="<%= anon_url(sickbeard.indexerApi(_show.indexer).config['show_url'], _show.indexerid) %>" onclick="window.open(this.href, '_blank'); return false;" title="$sickbeard.indexerApi($show.indexer).config['show_url']$show.indexerid"><img alt="$sickbeard.indexerApi($show.indexer).name" height="16" width="16" src="$sbRoot/images/$sickbeard.indexerApi($show.indexer).config['icon']" /></a>
|
||||||
#if $xem_numbering or $xem_absolute_numbering:
|
#if $xem_numbering or $xem_absolute_numbering:
|
||||||
<a href="<%= anon_url('http://thexem.de/search?q=', _show.name) %>" rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;" title="http://thexem.de/search?q-$show.name"><img alt="[xem]" height="16" width="16" src="$sbRoot/images/xem.png" style="margin-top: -1px; vertical-align:middle;"/></a>
|
<a class="service" href="<%= anon_url('http://thexem.de/search?q=', _show.name) %>" rel="noreferrer" onclick="window.open(this.href, '_blank'); return false;" title="http://thexem.de/search?q-$show.name"><img alt="[xem]" height="16" width="16" src="$sbRoot/images/xem.png" /></a>
|
||||||
#end if
|
#end if
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue