Dialog Forms

This sub-area consists of form elements to be filled by users. The following elements of the sub-area can be customized:

Dialog form area

  1. Parameter name
  2. 'Required' indicator
  3. Footnote
  4. Button

Customization samples

UI Element

Selector

CSS code sample

  • Parameter name

.name

.name {

font-weight: bold;

color: #555555;

}

  • 'Required' indicator

.required

.required {

color: #cc0000;

}

  • Footnote

.footnote

.footnote {

color: #666666;

}

  • Button

.commonButton

.buttons .commonButton span

Icons are customized through ID's (e.g. #bid-ok) in buttons.css

.commonButton button {

font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;

font-size: 11px;

color: #000000;

background-color: transparent;

background-image: url(../../images/btn_bg.gif);

border: 0 solid white;

background-repeat: no-repeat;

}

in buttons.css:

#bid-ok button {

background-image: url(../../images/btn_ok_bg.gif);

padding-left: 8px;

}