Application Specific CSS

CSS can be specific to the application being viewed. The id of the application (.app file) currently being viewed is added as a class on the BODY element of each HTML page, allowing application specific styling to be added to that page.

For example, a System Administrator views the SYSADMAPP application. The following is an example of CSS specific to that application:

.SYSADMAPP .field .label {
         color:red;
      }