|
| 1 | +@use "../core/color-system" as *; |
| 2 | +@use "../core/_variables.scss" as *; |
| 3 | + |
| 4 | +/// Horizontal padding of the popup. |
| 5 | +/// @group popup |
| 6 | +$kendo-popup-padding-x: 0 !default; |
| 7 | +/// Vertical padding of the popup. |
| 8 | +/// @group popup |
| 9 | +$kendo-popup-padding-y: 0 !default; |
| 10 | +/// Width of the border around the popup. |
| 11 | +/// @group popup |
| 12 | +$kendo-popup-border-width: 0 !default; |
| 13 | +/// Border radius of the popup. |
| 14 | +/// @group popup |
| 15 | +$kendo-popup-border-radius: var( --kendo-border-radius-md, 0 ) !default; |
| 16 | + |
| 17 | +/// Font size of the popup. |
| 18 | +/// @group popup |
| 19 | +$kendo-popup-font-size: var(--kendo-font-size, inherit) !default; |
| 20 | +/// Line height of the popup. |
| 21 | +/// @group popup |
| 22 | +$kendo-popup-line-height: var(--kendo-line-height, normal) !default; |
| 23 | + |
| 24 | +/// Horizontal padding of the content inside the popup. |
| 25 | +/// @group popup |
| 26 | +$kendo-popup-content-padding-x: map-get( $kendo-spacing, 2 ) !default; |
| 27 | +/// Vertical padding of the content inside the popup. |
| 28 | +/// @group popup |
| 29 | +$kendo-popup-content-padding-y: map-get( $kendo-spacing, 2 ) !default; |
| 30 | + |
| 31 | +/// Background color of the popup. |
| 32 | +/// @group popup |
| 33 | +$kendo-popup-bg: var( --kendo-component-bg, initial ) !default; |
| 34 | +/// Text color of the popup. |
| 35 | +/// @group popup |
| 36 | +$kendo-popup-text: var( --kendo-component-text, initial ) !default; |
| 37 | +/// Border color of the popup. |
| 38 | +/// @group popup |
| 39 | +$kendo-popup-border: var( --kendo-component-border, initial ) !default; |
| 40 | +/// Box shadow around the popup. |
| 41 | +/// @group popup |
| 42 | +$kendo-popup-shadow: var( --kendo-box-shadow-depth-4, initial ) !default; |
0 commit comments