In th London style.css, the headerlist_right, headerlist_right_gif and headerlist_right_M styles have the same background and color attributes. This makes test "invisible" in the right most cell in certain layouts (I mix the Rome Layout and the London Style ).
Currently, it has -
.headerlist_right
{
...
COLOR: #D1DCEB;
background: #D1DCEB;
}
.headerlist_right_gif
{
...
COLOR: #D1DCEB;
background: #D1DCEB url(img/up_right.gif) no-repeat right top;
}
.headerlist_right_M
{
...
COLOR: #D1DCEB;
background: #D1DCEB url(img/up_right.gif) no-repeat right top;
}
I've changed it to -
.headerlist_right
{
...
COLOR: #336699;
background: #D1DCEB;
}
.headerlist_right_gif
{
...
COLOR: #336699;
background: #D1DCEB url(img/up_right.gif) no-repeat right top;
}
.headerlist_right_M
{
...
COLOR: #336699;
background: #D1DCEB url(img/up_right.gif) no-repeat right top;
}
And everything seems better. Not sure if this is correct, as it may screw up other layout/style combos, but it makes it work for the Rome layout/London style combo.