/**
|
* @class Ext.resizer.Splitter
|
*/
|
|
/**
|
* @var {number}
|
* The size of the Splitter
|
*/
|
$splitter-size: 5px !default;
|
|
/**
|
* @var {color}
|
* The background-color of the active Splitter (the Splitter currently being dragged)
|
*/
|
$splitter-active-background-color: #b4b4b4 !default;
|
|
/**
|
* @var {number}
|
* The opacity of the active Splitter (the Splitter currently being dragged)
|
*/
|
$splitter-active-opacity: .8 !default;
|
|
/**
|
* @var {number}
|
* The opacity of the collapse tool on the active Splitter (the Splitter currently being dragged)
|
*/
|
$splitter-active-collapse-tool-opacity: .3 !default;
|
|
/**
|
* @var {string}
|
* The the type of cursor to display when the cursor is over the collapse tool
|
*/
|
$collapse-tool-cursor: pointer !default;
|
|
/**
|
* @var {number}
|
* The size of the collapse tool. This becomes the width of the collapse tool for
|
* horizontal splitters, and the height for vertical splitters.
|
*/
|
$collapse-tool-size: 35px !default;
|