Longbox

Longbox is an input box.

Input Box

Input Box with Constraint

CSS Definition

Description

Default Values

.text

The outline of longbox

background: #FFF url( ${c:encodeURL('~./zul/img/grid/text-bg.gif')} ) repeat-x 0 0;

repeat-x scroll 0pt;

border:1px solid #7F9DB9;

. text-invalid

The outline of longbox

background: #FFF url( ${c:encodeURL('~./zul/img/grid/text-bg-invalid.gif')} ) repeat-x 0 0;

border: 1px solid #DD7870;

Customize the background and font color of Longbox

The way to customize the background of Longbox is change color as follows.

.text{
    background: black;    
color: white;
font-weight: bold;
}

Customize the disabled Longbox

The way to customize the border and background of disabled Longbox.

.text-disd{
    border: 1px solid black;    
    background: red;    

}

Customize the constraint of Longbox

The way to customize the border of Longbox is change color as follows.

.text-invalid{
    border: 1px solid black;