/**
* @class Ext.grid.column.Check
*/
/**
* @var {number}
* Opacity of disabled CheckColumns
*/
$grid-checkcolumn-disabled-opacity: dynamic(0.3);
/**
* @var {color}
* The color to use for the checkbox when {@link Global_CSS#$enable-font-icons} is `true`.
*/
$grid-checkcolumn-glyph-color: dynamic($form-checkbox-glyph-color);
/**
* @var {string/list}
* The glyph for the checkbox when {@link Global_CSS#$enable-font-icons} is `true`.
*/
$grid-checkcolumn-glyph: dynamic($form-checkbox-glyph);
/**
* @var {string/list}
* The glyph for the checkbox in "checked" state when {@link Global_CSS#$enable-font-icons} is `true`.
*/
$grid-checkcolumn-checked-glyph: dynamic($form-checkbox-checked-glyph);
$grid-checkcolumn-cell-padding:
max(ceil(($grid-row-height - $form-checkbox-size) / 2), 0)
right($grid-cell-inner-padding)
max(floor(($grid-row-height - $form-checkbox-size) / 2), 0)
left($grid-cell-inner-padding)