accounting-manager-theme/src/com/sencha/gxt/theme/neptune/client/base/fieldset/Css3FieldSet.css

29 lines
755 B
CSS

/**
* Sencha GXT 3.1.1 - Sencha for GWT
* Copyright(c) 2007-2014, Sencha, Inc.
* licensing@sencha.com
*
* http://www.sencha.com/products/gxt/license/
*/
@def textSize value('theme.fieldset.text.size');
@def textColor value('theme.fieldset.text.color');
@def textFamily value('theme.fieldset.text.family');
@def textWeight value('theme.fieldset.text.weight');
@def borderWidth value('theme.fieldset.border.toString');
@def borderColor value('theme.fieldset.border.color');
@def borderStyle value('theme.fieldset.border.style');
.fieldSet {
border-color: borderColor;
border-style: borderStyle;
border-width: borderwidth;
}
.fieldSet legend {
font-size: textSize;
font-family: textFamily;
font-weight: textWeight;
color: textColor;
}