mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-08 11:03:38 +00:00
Merge pull request #680 from JackDandy/feature/ChangeAddBrowseAired
Add visual indicator for upcoming or started shows on Add Browse Shows.
This commit is contained in:
commit
77a631f54f
3 changed files with 20 additions and 3 deletions
|
@ -53,6 +53,7 @@
|
||||||
* Use timezones to check unaired status during show update/adding
|
* Use timezones to check unaired status during show update/adding
|
||||||
* Fix syntax error causing renamer to error out
|
* Fix syntax error causing renamer to error out
|
||||||
* Change storing metadata nfo vars from int to strings to resolve lxml type exceptions that don't occur with etree
|
* Change storing metadata nfo vars from int to strings to resolve lxml type exceptions that don't occur with etree
|
||||||
|
* Add visual indicator for upcoming or started shows on Add Browse Shows
|
||||||
|
|
||||||
|
|
||||||
### 0.11.11 (2016-04-05 19:20:00 UTC)
|
### 0.11.11 (2016-04-05 19:20:00 UTC)
|
||||||
|
|
|
@ -681,8 +681,17 @@ home.tmpl
|
||||||
width:100%
|
width:100%
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#browse-list .show-card .ui-progressbar{
|
||||||
|
height:5px !important
|
||||||
|
}
|
||||||
|
#browse-list .show-card .ui-corner-right{
|
||||||
|
border-bottom-right-radius:3px
|
||||||
|
}
|
||||||
|
#browse-list .show-card .ui-corner-left{
|
||||||
|
border-bottom-right-radius:3px
|
||||||
|
}
|
||||||
#show-list .show-card .ui-progressbar{
|
#show-list .show-card .ui-progressbar{
|
||||||
height:8px !important;
|
height:8px !important
|
||||||
}
|
}
|
||||||
|
|
||||||
#show-list .show-card .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br{
|
#show-list .show-card .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br{
|
||||||
|
@ -693,10 +702,12 @@ home.tmpl
|
||||||
border-bottom-left-radius:5px
|
border-bottom-left-radius:5px
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#browse-list .show-card .ui-corner-all,
|
||||||
#show-list .show-card .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr{
|
#show-list .show-card .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr{
|
||||||
border-top-right-radius:0
|
border-top-right-radius:0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#browse-list .show-card .ui-corner-all,
|
||||||
#show-list .show-card .ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl{
|
#show-list .show-card .ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl{
|
||||||
border-top-left-radius:0
|
border-top-left-radius:0
|
||||||
}
|
}
|
||||||
|
@ -1083,13 +1094,14 @@ home_browseShows.tmpl
|
||||||
}
|
}
|
||||||
|
|
||||||
#browse-list .show-card{
|
#browse-list .show-card{
|
||||||
margin:0 2px 12px;
|
margin:0 2px 17px;
|
||||||
width:188px;
|
width:188px;
|
||||||
height:341px;
|
height:341px;
|
||||||
float:left;
|
float:left;
|
||||||
background-color:#DFDACF;
|
background-color:#DFDACF;
|
||||||
border:1px solid #111;
|
border:1px solid #111;
|
||||||
border-radius:6px
|
border-top-left-radius:6px;
|
||||||
|
border-top-right-radius:6px
|
||||||
}
|
}
|
||||||
|
|
||||||
.browse-image{
|
.browse-image{
|
||||||
|
|
|
@ -236,6 +236,10 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="ui-progressbar ui-widget ui-widget-content ui-corner-all">
|
||||||
|
#set $state = 'progress-%s0" title="%s"' % (('2', 'Upcoming'), ('8', 'Started'))[$this_show['when_past']]
|
||||||
|
<div style="width:102%" class="ui-progressbar-value ui-widget-header ui-corner-left ui-corner-right $state></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
#end for
|
#end for
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue