|
| 1 | +@use "../core/_index.scss" as *; |
| 2 | +@use "../core/functions/index.import.scss" as *; |
| 3 | + |
| 4 | +/// The border radius of the Bubble. |
| 5 | +/// @group bubble |
| 6 | +$kendo-bubble-border-radius: k-border-radius(xl) !default; |
| 7 | +/// The small border radius of the Bubble. |
| 8 | +/// @group bubble |
| 9 | +$kendo-bubble-border-radius-sm: k-border-radius(xs) !default; |
| 10 | +/// The vertical padding of the Bubble. |
| 11 | +/// @group bubble |
| 12 | +$kendo-bubble-padding-y: k-spacing(2) !default; |
| 13 | +/// The horizontal padding of the Bubble. |
| 14 | +/// @group bubble |
| 15 | +$kendo-bubble-padding-x: k-spacing(4) !default; |
| 16 | +/// The border width of the Bubble. |
| 17 | +/// @group bubble |
| 18 | +$kendo-bubble-border-width: 1px !default; |
| 19 | +/// The border style of the Bubble. |
| 20 | +/// @group bubble |
| 21 | +$kendo-bubble-border-style: solid !default; |
| 22 | +/// The line height of the Bubble. |
| 23 | +/// @group bubble |
| 24 | +$kendo-bubble-line-height: var( --kendo-line-height, normal ) !default; |
| 25 | + |
| 26 | +/// The text color of the Bubble. |
| 27 | +/// @group bubble |
| 28 | +$kendo-bubble-text: k-color(base-on-subtle) !default; |
| 29 | +/// The background color of the Bubble. |
| 30 | +/// @group bubble |
| 31 | +$kendo-bubble-bg: k-color(base-subtle) !default; |
| 32 | +/// The border color of the Bubble. |
| 33 | +/// @group bubble |
| 34 | +$kendo-bubble-border: $kendo-bubble-bg !default; |
| 35 | +/// The shadow of the Bubble. |
| 36 | +/// @group bubble |
| 37 | +$kendo-bubble-shadow: none !default; |
| 38 | + |
| 39 | +/// The background color of the hover Bubble. |
| 40 | +/// @group bubble |
| 41 | +$kendo-bubble-hover-bg: k-color(base-subtle-hover) !default; |
| 42 | +/// The border color of the active Bubble. |
| 43 | +/// @group bubble |
| 44 | +$kendo-bubble-hover-border: $kendo-bubble-hover-bg !default; |
| 45 | +/// The background color of the active Bubble. |
| 46 | +/// @group bubble |
| 47 | +$kendo-bubble-active-bg: k-color(base-subtle-active) !default; |
| 48 | +/// The border color of the active Bubble. |
| 49 | +/// @group bubble |
| 50 | +$kendo-bubble-active-border: $kendo-bubble-active-bg !default; |
| 51 | +/// The background color of the focused Bubble. |
| 52 | +/// @group bubble |
| 53 | +$kendo-bubble-focus-bg: k-color(base-subtle) !default; |
| 54 | +/// The border color of the focused Bubble. |
| 55 | +/// @group bubble |
| 56 | +$kendo-bubble-focus-border: $kendo-bubble-focus-bg !default; |
| 57 | +/// The box shadow of the focused Bubble. |
| 58 | +/// @group bubble |
| 59 | +$kendo-bubble-focus-shadow: 0 0 0 2px color-mix(in srgb, k-color(on-app-surface) 8%, transparent) !default; |
| 60 | + |
| 61 | +/// The spacing between content and icon in expandable Bubble. |
| 62 | +/// @group bubble |
| 63 | +$kendo-bubble-expandable-spacing: $kendo-bubble-padding-x !default; |
| 64 | +/// The horizontal padding of the expandable Bubble icon. |
| 65 | +/// @group bubble |
| 66 | +$kendo-bubble-expandable-icon-padding-x: k-spacing(2.5) !default; |
| 67 | +/// The vertical padding of the expandable Bubble icon. |
| 68 | +/// @group bubble |
| 69 | +$kendo-bubble-expandable-icon-padding-y: k-spacing(2.5) !default; |
| 70 | + |
| 71 | +@forward "@progress/kendo-theme-core/scss/components/bubble/_variables.scss" with ( |
| 72 | + $kendo-bubble-border-radius: $kendo-bubble-border-radius, |
| 73 | + $kendo-bubble-border-radius-sm: $kendo-bubble-border-radius-sm, |
| 74 | + $kendo-bubble-padding-y: $kendo-bubble-padding-y, |
| 75 | + $kendo-bubble-padding-x: $kendo-bubble-padding-x, |
| 76 | + $kendo-bubble-border-width: $kendo-bubble-border-width, |
| 77 | + $kendo-bubble-border-style: $kendo-bubble-border-style, |
| 78 | + $kendo-bubble-line-height: $kendo-bubble-line-height, |
| 79 | + |
| 80 | + $kendo-bubble-text: $kendo-bubble-text, |
| 81 | + $kendo-bubble-bg: $kendo-bubble-bg, |
| 82 | + $kendo-bubble-border: $kendo-bubble-border, |
| 83 | + $kendo-bubble-shadow: $kendo-bubble-shadow, |
| 84 | + $kendo-bubble-hover-bg: $kendo-bubble-hover-bg, |
| 85 | + $kendo-bubble-hover-border: $kendo-bubble-hover-border, |
| 86 | + $kendo-bubble-active-bg: $kendo-bubble-active-bg, |
| 87 | + $kendo-bubble-active-border: $kendo-bubble-active-border, |
| 88 | + $kendo-bubble-focus-bg: $kendo-bubble-focus-bg, |
| 89 | + $kendo-bubble-focus-border: $kendo-bubble-focus-border, |
| 90 | + $kendo-bubble-focus-shadow: $kendo-bubble-focus-shadow, |
| 91 | + $kendo-bubble-expandable-spacing: $kendo-bubble-expandable-spacing, |
| 92 | + $kendo-bubble-expandable-icon-padding-x: $kendo-bubble-expandable-icon-padding-x, |
| 93 | + $kendo-bubble-expandable-icon-padding-y: $kendo-bubble-expandable-icon-padding-y, |
| 94 | +); |
0 commit comments