New to Kendo UI for Angular? Start a free 30-day trial
Customizing Treeview
Variables
The following table lists the available variables for customization.
Name | Type | Default value | Computed value |
---|---|---|---|
$kendo-treeview-font-family | String | var( --kendo-font-family, inherit ) | var(--kendo-font-family, inherit) |
Description
The font family of the TreeView. | |||
$kendo-treeview-font-size | String | var( --kendo-font-size-lg, inherit ) | var(--kendo-font-size-lg, inherit) |
Description
The font size of the TreeView. | |||
$kendo-treeview-sm-font-size | String | var( --kendo-font-size, inherit ) | var(--kendo-font-size, inherit) |
Description
The font size of the small TreeView. | |||
$kendo-treeview-md-font-size | String | var( --kendo-font-size, inherit ) | var(--kendo-font-size, inherit) |
Description
The font size of the medium TreeView. | |||
$kendo-treeview-lg-font-size | String | var( --kendo-font-size-lg, inherit ) | var(--kendo-font-size-lg, inherit) |
Description
The font size of the large TreeView. | |||
$kendo-treeview-line-height | Number | 1.25 | 1.25 |
Description
The line height of the TreeView. | |||
$kendo-treeview-sm-line-height | Number | k-math-div( 20, 14 ) | 1.4285714286 |
Description
The line height of the small TreeView. | |||
$kendo-treeview-md-line-height | Number | k-math-div( 20, 14 ) | 1.4285714286 |
Description
The line height of the medium TreeView. | |||
$kendo-treeview-lg-line-height | Number | 1.5 | 1.5 |
Description
The line height of the large TreeView. | |||
$kendo-treeview-indent | Number | 24px | 24px |
Description
The indentation of child groups in the TreeView. | |||
$kendo-treeview-item-padding-x | String | k-spacing(4) | var(--kendo-spacing-4, 1rem) |
Description
The horizontal padding of the TreeView items. | |||
$kendo-treeview-sm-item-padding-x | String | k-spacing(4) | var(--kendo-spacing-4, 1rem) |
Description
The horizontal padding of the small TreeView items. | |||
$kendo-treeview-md-item-padding-x | String | k-spacing(4) | var(--kendo-spacing-4, 1rem) |
Description
The horizontal padding of the medium TreeView items. | |||
$kendo-treeview-lg-item-padding-x | String | k-spacing(4) | var(--kendo-spacing-4, 1rem) |
Description
The horizontal padding of the large TreeView items. | |||
$kendo-treeview-item-padding-y | String | k-spacing(2) | var(--kendo-spacing-2, 0.5rem) |
Description
The vertical padding of the TreeView items. | |||
$kendo-treeview-sm-item-padding-y | String | k-spacing(1.5) | var(--kendo-spacing-1\.5, 0.375rem) |
Description
The vertical padding of the small TreeView items. | |||
$kendo-treeview-md-item-padding-y | String | k-spacing(2) | var(--kendo-spacing-2, 0.5rem) |
Description
The vertical padding of the medium TreeView items. | |||
$kendo-treeview-lg-item-padding-y | String | k-spacing(2) | var(--kendo-spacing-2, 0.5rem) |
Description
The vertical padding of the large TreeView items. | |||
$kendo-treeview-item-border-width | Number | 0px | 0px |
Description
The border width of the TreeView items. | |||
$kendo-treeview-item-border-radius | Null | null | null |
Description
The border radius of the TreeView items. | |||
$kendo-treeview-sm-checkbox-padding-x | String | k-spacing(1) | var(--kendo-spacing-1, 0.25rem) |
Description
The horizontal padding of the checkbox in the small TreeView. | |||
$kendo-treeview-md-checkbox-padding-x | String | $kendo-treeview-sm-checkbox-padding-x | var(--kendo-spacing-1, 0.25rem) |
Description
The horizontal padding of the checkbox in the medium TreeView. | |||
$kendo-treeview-lg-checkbox-padding-x | String | $kendo-treeview-sm-checkbox-padding-x | var(--kendo-spacing-1, 0.25rem) |
Description
The horizontal padding of the checkbox in the large TreeView. | |||
$kendo-treeview-sm-checkbox-padding-y | String | k-spacing(0.5) | var(--kendo-spacing-0\.5, 0.125rem) |
Description
The vertical padding of the checkbox in the small TreeView. | |||
$kendo-treeview-md-checkbox-padding-y | String | $kendo-treeview-sm-checkbox-padding-y | var(--kendo-spacing-0\.5, 0.125rem) |
Description
The vertical padding of the checkbox in the medium TreeView. | |||
$kendo-treeview-lg-checkbox-padding-y | Null | null | null |
Description
The vertical padding of the checkbox in the large TreeView. | |||
$kendo-treeview-sizes | Map | (
sm: (
font-size: $kendo-treeview-sm-font-size,
line-height: $kendo-treeview-sm-line-height,
item-padding-x: $kendo-treeview-sm-item-padding-x,
item-padding-y: $kendo-treeview-sm-item-padding-y,
checkbox-padding-x: $kendo-treeview-sm-checkbox-padding-x,
checkbox-padding-y: $kendo-treeview-sm-checkbox-padding-y
),
md: (
font-size: $kendo-treeview-md-font-size,
line-height: $kendo-treeview-md-line-height,
item-padding-x: $kendo-treeview-md-item-padding-x,
item-padding-y: $kendo-treeview-md-item-padding-y,
checkbox-padding-x: $kendo-treeview-md-checkbox-padding-x,
checkbox-padding-y: $kendo-treeview-md-checkbox-padding-y
),
lg: (
font-size: $kendo-treeview-lg-font-size,
line-height: $kendo-treeview-lg-line-height,
item-padding-x: $kendo-treeview-lg-item-padding-x,
item-padding-y: $kendo-treeview-lg-item-padding-y,
checkbox-padding-x: $kendo-treeview-lg-checkbox-padding-x,
checkbox-padding-y: $kendo-treeview-lg-checkbox-padding-y
)
) |
|
Description
The sizes map of the TreeView. | |||
$kendo-treeview-bg | Null | null | null |
Description
The background color of the TreeView. | |||
$kendo-treeview-text | String | $kendo-component-text | var(--kendo-color-on-app-surface, #212121) |
Description
The text color of the TreeView. | |||
$kendo-treeview-border | Null | null | null |
Description
The border color of the TreeView. | |||
$kendo-treeview-item-hover-bg | String | if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 7%, transparent), rgba( $kendo-treeview-text, .07 )) | color-mix(in srgb, var(--kendo-color-on-app-surface, #212121) 7%, transparent) |
Description
The background color of hovered TreeView. | |||
$kendo-treeview-item-hover-text | Null | null | null |
Description
The text color of hovered TreeView items. | |||
$kendo-treeview-item-hover-border | Null | null | null |
Description
The border color of hovered TreeView items. | |||
$kendo-treeview-item-hover-gradient | Null | null | null |
Description
The background gradient of hovered TreeView items. | |||
$kendo-treeview-item-selected-bg | Null | null | null |
Description
The background color of selected TreeView items. | |||
$kendo-treeview-item-selected-text | String | $kendo-selected-bg | var(--kendo-color-secondary, #e51a5f) |
Description
The text color of selected TreeView items. | |||
$kendo-treeview-item-selected-border | Null | null | null |
Description
The border color of selected TreeView items. | |||
$kendo-treeview-item-selected-gradient | Null | null | null |
Description
The background gradient of selected TreeView items. | |||
$kendo-treeview-item-focus-shadow | Null | null | null |
Description
The box shadow of focused TreeView items. | |||
$kendo-treeview-loadmore-bg | Color | transparent | transparent |
Description
The background color of the Load More button in the TreeView | |||
$kendo-treeview-loadmore-text | String | inherit | inherit |
Description
The text color of the Load More button in the TreeView | |||
$kendo-treeview-loadmore-border | Null | null | null |
Description
The border color of the Load More button in the TreeView | |||
$kendo-treeview-loadmore-hover-bg | Color | transparent | transparent |
Description
The background color of the hovered Load More button in the TreeView | |||
$kendo-treeview-loadmore-hover-text | String | inherit | inherit |
Description
The text color of the hovered Load More button in the TreeView. | |||
$kendo-treeview-loadmore-hover-border | Null | null | null |
Description
The border color of the hovered Load More button in the TreeView. | |||
$kendo-treeview-loadmore-focus-bg | Color | transparent | transparent |
Description
The background color of the focused Load More button in the TreeView. | |||
$kendo-treeview-loadmore-focus-text | String | inherit | inherit |
Description
The text color of the focused Load More button in the TreeView. | |||
$kendo-treeview-loadmore-focus-border | Null | null | null |
Description
The border color of the focused Load More button in the TreeView. | |||
$kendo-treeview-loadmore-focus-shadow | Null | $kendo-treeview-item-focus-shadow | null |
Description
The box shadow of the focused Load More button in the TreeView. |