Versions Compared

Key

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

Form style sheet is used to change style for a single form definition. Style definitions is 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 following style sheet to change the row content label colors to a red color.

Code Block
languagecss
.ui-rowcontent {

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

}

...