Needs review
Project:
Marinelli
Version:
7.x-3.0-beta11
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
17 Jul 2011 at 09:08 UTC
Updated:
17 Jul 2011 at 09:08 UTC
Please test if this issue appears for others. I know that the group I'm working with might have tweaked this theme, though I think I'm looking at a clean version of beta11.
When viewing the theme in Firefox (and Chrome) it displays with an incorrect wrapper background color because Firefox 5.0 is not autocorrecting the hex color value from 3 digits to 6. The issue makes the entire background dark. Fix the css/css3/css3_graphics.css file as shown below (must use full 6-digit color codes):
.cssgradients #contentWrapper{
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, #eee),color-stop(0.05, #fff));
background: -moz-linear-gradient(top center,#eee,#fff 5%);
}
change to
.cssgradients #contentWrapper{
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, #eeeeee),color-stop(0.05, #ffffff));
background: -moz-linear-gradient(top center,#eeeeee,#ffffff 5%);
}It's an odd tidbit with browsers that they act this way. Tested browsers/results on Win7 32 bit:
| Comment | File | Size | Author |
|---|---|---|---|
| Marinelli css problem.png | 203.84 KB | rack88 |