13693261870
2022-09-16 354b3dbfbffb3df45212a2a44dbbf48b4acc2594
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
 * @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;