// If we don't get a background color from the inline
// style, check the style class
if ((background == null) && (entry.styleClass != null))
{
// We need to look up the style class in the style map
StyleMap map = context.getStyleContext().getStyleMap();
if (map != null)
{
StyleContext styleContext = context.getStyleContext();
Style style = map.getStyleByClass(styleContext, entry.styleClass);
background = _getBackground(style);
}
}