@use "sass:map";
@use "../core/_index.scss" as *;

/// The spacing between the ListBox elements.
/// @group listbox
$kendo-listbox-spacing: k-spacing(2) !default;
/// The spacing between the ListBox buttons.
/// @group listbox
$kendo-listbox-button-spacing: k-spacing(2) !default;
/// WThe width of the ListBox.
/// @group listbox
$kendo-listbox-width: 10em !default;
/// The height of the ListBox.
/// @group listbox
$kendo-listbox-height: 200px !default;
/// The width of the border around the ListBox.
/// @group listbox
$kendo-listbox-border-width: 1px !default;
/// The font family of the ListBox.
/// @group listbox
$kendo-listbox-font-family: var( --kendo-font-family, normal ) !default;
/// The font size of the ListBox.
/// @group listbox
$kendo-listbox-font-size: var( --kendo-font-size, inherit ) !default;
/// The line height of the ListBox.
/// @group listbox
$kendo-listbox-line-height: var( --kendo-line-height, normal ) !default;

/// The text color of the ListBox.
/// @group listbox
$kendo-listbox-text: var( --kendo-component-text, inherit ) !default;
/// The background color of the ListBox.
/// @group listbox
$kendo-listbox-bg: var( --kendo-component-bg, transparent ) !default;
/// The border color of the ListBox.
/// @group listbox
$kendo-listbox-border: var( --kendo-component-border, inherit ) !default;

/// The width of the ListBox drop hint.
/// @group listbox
$kendo-listbox-drop-hint-width: 1px !default;
/// The border color of the ListBox drop hint.
/// @group listbox
$kendo-listbox-drop-hint-border-color: if($kendo-enable-color-system, k-color( primary ), k-get-theme-color-var( primary-100 )) !default;
