When viewing post edit history (where you select which versions of the posts you want to compare) the background is white and so is the text.
What stylevar would I have to edit to give it the "normal" background color for this style?
Edit: I found it. Wasn't a stylevar. Went into posthistory.css and changed:
Code:
#postlist li {
background:rgb(250,250,255) url({vb:stylevar imgdir_gradients}/form-control-gradient-alpha.png) repeat-x bottom;
border-bottom:solid 1px rgb(203,209,251);
}
to
Code:
#postlist li {
background:rgb(250,250,255) url(images/Styles/Blackend/gradients/body_bg.png) repeat-x bottom;
border-bottom:solid 1px rgb(203,209,251);
}