Versions Compared

Key

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

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

For example you can enter following style sheet to change row content label colors to red color.

Code Block
languagecss
.ui-rowcontent {


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


}