Versions Compared

Key

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

Form A form style sheet is used to change the style for a single form definition. Style definitions are based on CSS web standard compatible Sass language. Sass content is automatically compiled into CSS before the form is rendered.

For example, you can enter the following style sheet to change the row content label colors colours to a red colorcolour.

Code Block
languagecss
.ui-rowcontent {

  .ui-rowcontent-label {
      color:red;
  }

}

...