/**
 * @class Ext.view.BoundList
 */

/**
 * @var {color}
 * The background-color of the BoundList
 */
$boundlist-background-color: dynamic(#fff);


/**
 * @var {color}
 * The border-color of the BoundList
 */
$boundlist-border-color: dynamic($neutral-color);

/**
 * @var {number}
 * The border-width of the BoundList
 */
$boundlist-border-width: dynamic(1px);

/**
 * @var {string}
 * The border-style of the BoundList
 */
$boundlist-border-style: dynamic(solid);

/**
 * @var {number}
 * The height of BoundList items
 */
$boundlist-item-height: dynamic(22px);

/**
 * @var {string}
 * The font family of the BoundList items
 */
$boundlist-item-font-family: dynamic($font-family);

/**
 * @var {number}
 * The font size of the BoundList items
 */
$boundlist-item-font-size: dynamic($font-size);

/**
 * @var {string}
 * The font-weight of the BoundList items
 */
$boundlist-item-font-weight: dynamic(normal);

/**
 * @var {color}
 * The text color of the BoundList items
 */
$boundlist-item-text-color: dynamic($color);

/**
 * @var {color}
 * The text color of hovered BoundList items
 */
$boundlist-item-over-text-color: dynamic($boundlist-item-text-color);

/**
 * @var {color}
 * The text color of selected BoundList items
 */
$boundlist-item-selected-text-color: dynamic($boundlist-item-text-color);

/**
 * @var {number/list}
 * The padding of BoundList items
 */
$boundlist-item-padding: dynamic(0 3px);

/**
 * @var {number}
 * The border-width of BoundList items
 */
$boundlist-item-border-width: dynamic(1px);

/**
 * @var {string}
 * The border-style of BoundList items
 */
$boundlist-item-border-style: dynamic(dotted);

/**
 * @var {color}
 * The border-color of BoundList items
 */
$boundlist-item-border-color: dynamic($boundlist-background-color);

/**
 * @var {color}
 * The border-color of hovered BoundList items
 */
$boundlist-item-over-border-color: dynamic($base-color);

/**
 * @var {color}
 * The border-color of selected BoundList items
 */
$boundlist-item-selected-border-color: dynamic($base-color);

/**
 * @var {color}
 * The background-color of hovered BoundList items
 */
$boundlist-item-over-background-color: dynamic($base-color);

/**
 * @var {color}
 * The background-color of selected BoundList items
 */
$boundlist-item-selected-background-color: dynamic($base-color);