Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Changes from previous version

The "margin" css property should be changed with the "padding" property.

Code Block
label {
	margin: 1px 2px 3px 4px; 
}

...

Code Block
.label {
	padding: 1px 2px 3px 4px; 
}

In the webclient, the font-size property is changed at runtime, so in order to keep the same runtime sizes in the NGClient, the css files should be updated just like in the following examples:

Code Block
field.label {
	font-size: 20pt;
}
 
field.textfield {
	font-size: 20px;
}

should become

Code Block
.field_label {
	font-size: 15pt;
}


.field_textfield {
	font-size: 26px;
}