Community
Participate
Working Groups
node.style.height = height + org.eclipse.swt.widgets.TableItem.PX;
// set line height to enable vertical centering
node.style.lineHeight = height + org.eclipse.swt.widgets.TableItem.PX;
if( font != "" ) {
if( font == "" && qx.core.Variant.isSet( "qx.client", "mshtml" ) ) {
node.style.font = font;
} else {
// Resetting style.font causes errors in IE with any of these syntaxes:
// node.style.font = null | undefined | "inherit" | "";
node.style.fontFamily = "";
node.style.fontVariant = "";
node.style.fontStyle = "";
node.style.fontWeight = "";
}
node.style.color = foreground;
node.style.backgroundColor = "";