Форк 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.
 
 
 

99 lines
1.9 KiB

/**
* @class Ext.view.BoundList
*/
/**
* @var {color}
* The background-color of the BoundList
*/
$boundlist-background-color: #fff !default;
/**
* @var {color}
* The border-color of the BoundList
*/
$boundlist-border-color: $neutral-color !default;
/**
* @var {number}
* The border-width of the BoundList
*/
$boundlist-border-width: 1px !default;
/**
* @var {string}
* The border-style of the BoundList
*/
$boundlist-border-style: solid !default;
/**
* @var {number}
* The height of BoundList items
*/
$boundlist-item-height: 22px !default;
/**
* @var {string}
* The font family of the BoundList items
*/
$boundlist-item-font-family: $font-family !default;
/**
* @var {number}
* The font size of the BoundList items
*/
$boundlist-item-font-size: $font-size !default;
/**
* @var {string}
* The font-weight of the BoundList items
*/
$boundlist-item-font-weight: normal !default;
/**
* @var {number/list}
* The padding of BoundList items
*/
$boundlist-item-padding: 0 3px !default;
/**
* @var {number}
* The border-width of BoundList items
*/
$boundlist-item-border-width: 1px !default;
/**
* @var {string}
* The border-style of BoundList items
*/
$boundlist-item-border-style: dotted !default;
/**
* @var {color}
* The border-color of BoundList items
*/
$boundlist-item-border-color: $boundlist-background-color !default;
/**
* @var {color}
* The border-color of hovered BoundList items
*/
$boundlist-item-over-border-color: $base-color !default;
/**
* @var {color}
* The border-color of selected BoundList items
*/
$boundlist-item-selected-border-color: $base-color !default;
/**
* @var {color}
* The background-color of hovered BoundList items
*/
$boundlist-item-over-background-color: $base-color !default;
/**
* @var {color}
* The background-color of selected BoundList items
*/
$boundlist-item-selected-background-color: $base-color !default;