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

/// Horizontal padding of the action buttons container.
/// @group action-buttons
$kendo-actions-padding-x: var( --kendo-actions-padding-x, k-spacing(3) ) !default;
/// Vertical padding of the action buttons container.
/// @group action-buttons
$kendo-actions-padding-y: var( --kendo-actions-padding-y, k-spacing(3) ) !default;
/// Width of the border around the action buttons container.
/// @group action-buttons
$kendo-actions-border-width: var( --kendo-actions-border-width, 0px ) !default;
/// The background color of the action buttons container.
/// @group action-buttons
$kendo-actions-bg: var( --kendo-actions-bg, inherit ) !default;
/// The text color of the action buttons container.
/// @group action-buttons
$kendo-actions-text: var( --kendo-actions-text, inherit ) !default;
/// The border color of the action buttons container.
/// @group action-buttons
$kendo-actions-border: var( --kendo-actions-border, inherit ) !default;

/// Spacing between the action buttons.
/// @group action-buttons
$kendo-actions-button-spacing: var( --kendo-actions-button-spacing, k-spacing(3) ) !default;

@forward "@progress/kendo-theme-core/scss/components/action-buttons/_variables.scss" with (
    $kendo-actions-padding-x: $kendo-actions-padding-x,
    $kendo-actions-padding-y: $kendo-actions-padding-y,
    $kendo-actions-border-width: $kendo-actions-border-width,
    $kendo-actions-bg: $kendo-actions-bg,
    $kendo-actions-text: $kendo-actions-text,
    $kendo-actions-border: $kendo-actions-border,
    $kendo-actions-button-spacing: $kendo-actions-button-spacing
);
