Opened 10 years ago
Closed 10 years ago
Last modified 10 years ago
#12351 closed Bug Report - General (fixed)
Genre colors broken .0.27
Reported by: | Owned by: | Karl Egly | |
---|---|---|---|
Priority: | minor | Milestone: | 0.27.5 |
Component: | Plugin - MythWeb | Version: | Unspecified |
Severity: | medium | Keywords: | genre colors |
Cc: | Ticket locked: | no |
Description
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. :-)
Change History (8)
comment:1 Changed 10 years ago by
Owner: | changed from Rob Smith to Karl Egly |
---|---|
Status: | new → accepted |
comment:2 Changed 10 years ago by
Resolution: | → fixed |
---|---|
Status: | accepted → closed |
comment:4 Changed 10 years ago by
Milestone: | unknown → 0.27.5 |
---|
comment:5 Changed 10 years ago by
Both cat_movie and type_movie classes need to exist, so the fix committed is incorrect. They represent two different things internally.
To fix, the cat_movie definition needs to be re-added alongside the type_movie definition.
comment:6 Changed 10 years ago by
OK, after further discussion with Jim about what he was seeing and what the expected behaviour was it seems that it's more a case of moving the type_ rules so that the cat_ rules take precedence. Jim will commit the change.
In 1b86b5763e4c55bed4428bb227079a1ce0568e80/mythweb: