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

51 lines
1.1 KiB

/**
* @class Ext.slider.Multi
*/
/**
* @var {number}
* The horizontal slider thumb width
*/
$horizontal-slider-thumb-width: 15px !default;
/**
* @var {number}
* The horizontal slider thumb height
*/
$horizontal-slider-thumb-height: 15px !default;
/**
* @var {number}
* The width of the horizontal slider start cap
*/
$horizontal-slider-start-cap-width: floor($horizontal-slider-thumb-width / 2) !default;
/**
* @var {number}
* The width of the horizontal slider end cap
*/
$horizontal-slider-end-cap-width: ceil($horizontal-slider-thumb-width / 2) !default;
/**
* @var {number}
* The vertical slider thumb width
*/
$vertical-slider-thumb-width: 15px !default;
/**
* @var {number}
* The vertical slider thumb height
*/
$vertical-slider-thumb-height: 15px !default;
/**
* @var {number}
* The height of the vertical slider start cap
*/
$vertical-slider-start-cap-height: floor($vertical-slider-thumb-height / 2) !default;
/**
* @var {number}
* The height of the vertical slider end cap
*/
$vertical-slider-end-cap-height: ceil($vertical-slider-thumb-height / 2) !default;