Versions Compared

Key

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

The NGClient a powerful mechanism to style utilizes unprocessed CSS (3.0) to do all styling of solutions.

All possible CSS properties can now be used, like:

  • All types of selectors
  • Pseudo-classes

stoc 

Solution StyleSheet

Stored in media folder, use The stylesheet can be specified at solution level, it has to be stored in the media, for usage of images from media library using do use relative URL's

Converting Existing StyleSheets

Font Size Conversion

For the existing Servoy Clients, all font-size values specified in CSS are converted to a different value before being used. 

...

languagejs

...

.

...

CSS Selectors

...

StyleSheets for the Servoy Smart and Web Client could make use of Servoy specific type selectors. In the NGClient, where the stylesheets are interpreted by the browser, these Servoy specific type selectors are not available. Below a conversion table from the Servoy specific type selectors to their NGClient equivalent. 

Smart/Web Client Type SelectorNGClient Selector

body

[ng-style="bodyStyle"]
buttonbutton[svy-model]
check 
combobox 
even.ngRow.even
field 
footer[ng-style="footerStyle"]
form[svy-formstyle]
header[ng-style="headerStyle"]
label 
listboxselect[svy-model][size]
odd.ngRow.odd
portal 
radio 
selected.ngRow.selected
grid_header 
spinner 
tabpanel 
title_header[ng-style="titleheaderStyle"]
title_footerN/A

 

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).

Multiple classnames

...