/**
|
* @class Ext.grid.feature.RowBody
|
*/
|
|
/**
|
* @var {number}
|
* The font-size of the RowBody
|
*/
|
$grid-row-body-font-size: $grid-row-cell-font-size !default;
|
|
/**
|
* @var {number}
|
* The line-height of the RowBody
|
*/
|
$grid-row-body-line-height: $grid-row-cell-line-height !default;
|
|
/**
|
* @var {string}
|
* The font-family of the RowBody
|
*/
|
$grid-row-body-font-family: $grid-row-cell-font-family !default;
|
|
/**
|
* @var {number}
|
* The font-weight of the RowBody
|
*/
|
$grid-row-body-font-weight: $grid-row-cell-font-weight !default;
|
|
// private
|
$grid-row-body-font: $grid-row-body-font-weight #{$grid-row-body-font-size}/#{$grid-row-body-line-height} $grid-row-body-font-family !default;
|
|
/**
|
* @var {number/list}
|
* The padding of the RowBody
|
*/
|
$grid-row-body-padding: 5px right($grid-cell-inner-padding) 5px left($grid-cell-inner-padding) !default;
|