This Custom Styles page is designed to allow custom styles to be applied to the indexing form. Custom styles may be applied to all indexing forms or to specific forms according to the Document Type or Batch Profile. CustomStyles.css is stored in the Quillix Web install location, typically C:\Inetpub\Quillix. Sample code is included.
Default style definitions
This section is the section of the file that is not commented out, and is the default style. Modify this area to modify all indexing forms.
// This style definition affects the labels for the index fields
.IndexFieldLabel
{
font-weight: bold;
font-size: 11px;
color: #003399;
font-family: arial, sans-serif;
}
// This style definition affects the width of index fields
.IndexField{
width: 200px;
}
// This set of style definitions affect the text of index fields
.IndexField,
.IndexField.k-textbox,
.IndexField.k-input,
.IndexField.k-dropdown .k-input
{
font-weight: normal;
font-size: 13px;
color: #000000;
font-family: arial;
}
Custom style definitions for specific Process type
This section provides an example of custom styles for the indexing form of a specific Document Type or Batch Profile.
NOTE: There are two definitions needed for each Index Group (Document Type or Batch Profile). Use the following naming convention -
Label + {group name} - this definition will affect the index labels
Field + {group name} - this definition will affect the index fields
This example is for a Document Type named 'Employee'
.LabelEmployee
{
font-weight: bold;
font-size: 13px;
color: green;
font-family: courier;
}
.FieldEmployee
{
width: 150px;
}
.FieldEmployee,
.FieldEmployee.k-textbox,
.FieldEmployee.k-input,
.FieldEmployee.k-dropdown .k-input
{
font-weight: normal;
font-size: 13px;
color: #000000;
font-family: arial;
}