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

36 lines
857 B

/**
* @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;