Форк Rambox
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

134 lines
2.8 KiB

/**
* @class Ext.form.FieldSet
*/
/**
* @var {number}
* The font-size of the FieldSet header
*/
$fieldset-header-font-size: ceil($font-size * .9) !default;
/**
* @var {string}
* The font-weight of the FieldSet header
*/
$fieldset-header-font-weight: $font-weight !default;
/**
* @var {string}
* The font-family of the FieldSet header
*/
$fieldset-header-font-family: $font-family !default;
/**
* @var {number/string}
* The line-height of the FieldSet header
*/
$fieldset-header-line-height: 14px !default;
/**
* @var {color}
* The text color of the FieldSet header
*/
$fieldset-header-color: adjust-color($base-color, $hue: 3.785deg, $saturation: 18.194%, $lightness: -52.745%) !default;
/**
* @var {number}
* The border-width of the FieldSet
*/
$fieldset-border-width: 1px !default;
/**
* @var {string}
* The border-style of the FieldSet
*/
$fieldset-border-style: solid !default;
/**
* @var {color}
* The border-color of the FieldSet
*/
$fieldset-border-color: #B5B8C8 !default;
/**
* @var {number}
* The border radius of FieldSet elements.
*/
$fieldset-border-radius: 0!default;
/**
* @var {number/list}
* The FieldSet's padding
*/
$fieldset-padding: 0 10px !default;
/**
* @var {number/list}
* The FieldSet's margin
*/
$fieldset-margin: 0 0 10px !default;
/**
* @var {number/list}
* The padding to apply to the FieldSet's header
*/
$fieldset-header-padding: 0 3px 1px !default;
/**
* @var {number}
* The size of the FieldSet's collapse tool
*/
$fieldset-collapse-tool-size: 15px !default;
/**
* @var {number/list}
* The margin to apply to the FieldSet's collapse tool
*/
$fieldset-collapse-tool-margin: 1px 3px 0 0 !default;
/**
* @var {number/list}
* The padding to apply to the FieldSet's collapse tool
*/
$fieldset-collapse-tool-padding: 0 !default;
/**
* @var {string} $fieldset-collapse-tool-background-image
* The background-image to use for the collapse tool. If 'none' the default tool
* sprite will be used. Defaults to 'none'.
*/
$fieldset-collapse-tool-background-image: 'none' !default;
/**
* @var {number}
* The opacity of the FieldSet's collapse tool
*/
$fieldset-collapse-tool-opacity: 1 !default;
/**
* @var {number}
* The opacity of the FieldSet's collapse tool when hovered
*/
$fieldset-collapse-tool-opacity-over: 1 !default;
/**
* @var {number}
* The opacity of the FieldSet's collapse tool when pressed
*/
$fieldset-collapse-tool-opacity-pressed: 1 !default;
/**
* @var {number/list}
* The margin to apply to the FieldSet's checkbox (for FieldSets that use
* {@link #checkboxToggle})
*/
$fieldset-checkbox-margin: $fieldset-collapse-tool-margin !default;
$fieldset-use-standard-tool-background-positions: false !default;
/**
* @var {boolean}
* True to include the "default" fieldset UI
*/
$include-fieldset-default-ui: $include-field-default-ui !default;