[mythtv-commits] Ticket #12351: Genre colors broken .0.27

MythTV noreply at mythtv.org
Thu Jan 22 11:10:47 UTC 2015


#12351: Genre colors broken .0.27
--------------------------------------+--------------------------
     Reporter:  cato@…                |      Owner:  kormoc
         Type:  Bug Report - General  |     Status:  new
     Priority:  minor                 |  Milestone:  unknown
    Component:  Plugin - MythWeb      |    Version:  Unspecified
     Severity:  medium                |   Keywords:  genre colors
Ticket locked:  0                     |
--------------------------------------+--------------------------
 **symptom:**
 Skinned genre colors no longer working as expected in MythWeb's Program
 Listing. Specifically, movies are muddy brown - the color that signifies
 'unknown'.

 **cause:**
 The CSS class name has changed from eg 'cat_movie' to 'type_movie'

 **fix:**
 The skins have
 {{{
 .cat_movie { background-color: #809090 !important; }
 .cat_series { }
 .cat_tvshow { }
 }}}
 in programming.css.

 As the HTML code shows:
 {{{
 <td class="small type_movie cat_Unknown" colspan="17" style="width: 45%"
 valign="top"><a id = "program-10220-1421843700"
 }}}

 The skins need to be changed such that
 {{{
 .type_movie { background-color: #809090 !important; }
 .type_series { }
 .type_tvshow { }
 }}}
 in programming.css

 There may be further CSS tweaks required - I just needed this one. :-)

--
Ticket URL: <https://code.mythtv.org/trac/ticket/12351>
MythTV <http://www.mythtv.org>
MythTV Media Center


More information about the mythtv-commits mailing list