Versions Compared

Key

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

...

Also NGClient will output special classes for default components that can be used from solution css to easily style all components of same time. The name of the class is svy-componentName (so svy-label, svy-button, svy-calendar, svy-textfield...). If you set another value for styleClass property this default value will not be present anymore and must be specified among styleClass values (as this should be already present in solution css, otherwise has no effect).

In NGClient, Sevoy specific selectors such as:

 

Code Block
label.bold {
	font-weight: bold;
}
 
field.bold {
	font-weight: 900;
}

should simply become 

Code Block
.label_bold {
   font-weight: bold;
}
 
.field_bold {
   font-weight: 900;
}

Then the styleClass property of the elements should be changed from "bold" to "label_bold" or "field_bold".

Changes from previous version

...