@progress/kendo-theme-bootstrap 5.1.2-dev.4 → 5.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/dist/all.css +411 -146
  2. package/dist/all.scss +306 -160
  3. package/lib/swatches/bootstrap-3-dark.json +2 -1
  4. package/lib/swatches/bootstrap-3.json +2 -1
  5. package/lib/swatches/bootstrap-4-dark.json +2 -1
  6. package/lib/swatches/bootstrap-4.json +2 -1
  7. package/lib/swatches/bootstrap-dataviz-v4.json +2 -1
  8. package/lib/swatches/bootstrap-main-dark.json +2 -1
  9. package/lib/swatches/bootstrap-main.json +2 -1
  10. package/lib/swatches/bootstrap-nordic.json +2 -1
  11. package/lib/swatches/bootstrap-turquoise-dark.json +2 -1
  12. package/lib/swatches/bootstrap-turquoise.json +2 -1
  13. package/lib/swatches/bootstrap-urban.json +2 -1
  14. package/lib/swatches/bootstrap-vintage.json +2 -1
  15. package/package.json +4 -4
  16. package/scss/_variables.scss +5 -4
  17. package/scss/badge/_variables.scss +2 -2
  18. package/scss/breadcrumb/_variables.scss +1 -1
  19. package/scss/button/_variables.scss +15 -4
  20. package/scss/calendar/_variables.scss +1 -1
  21. package/scss/color-preview/_variables.scss +1 -1
  22. package/scss/coloreditor/_variables.scss +1 -1
  23. package/scss/colorgradient/_variables.scss +2 -2
  24. package/scss/fab/_variables.scss +1 -1
  25. package/scss/gantt/_variables.scss +5 -0
  26. package/scss/grid/_layout.scss +1 -1
  27. package/scss/input/_variables.scss +2 -2
  28. package/scss/list/_variables.scss +1 -1
  29. package/scss/loader/_variables.scss +1 -1
  30. package/scss/menu/_layout.scss +1 -1
  31. package/scss/notification/_variables.scss +15 -13
  32. package/scss/orgchart/_variables.scss +1 -1
  33. package/scss/pivotgrid/_variables.scss +2 -1
  34. package/scss/popup/_variables.scss +1 -1
  35. package/scss/scheduler/_variables.scss +2 -2
  36. package/scss/skeleton/_variables.scss +1 -1
  37. package/scss/spreadsheet/_variables.scss +3 -3
  38. package/scss/taskboard/_variables.scss +1 -1
  39. package/scss/utils/_border.scss +4 -4
  40. package/scss/window/_variables.scss +1 -1
package/dist/all.scss CHANGED
@@ -3023,9 +3023,10 @@ $padding-x-lg: $padding-x * 1.5 !default;
3023
3023
  $padding-y-lg: $padding-y * 1.5 !default;
3024
3024
 
3025
3025
  /// Border radius for all components.
3026
- $border-radius: $border-radius !default;
3027
- $border-radius-sm: $border-radius-sm !default;
3028
- $border-radius-lg: $border-radius-lg !default;
3026
+ $kendo-border-radius: $border-radius !default;
3027
+ $kendo-border-radius-sm: $kendo-border-radius / 2 !default;
3028
+ $kendo-border-radius-md: $kendo-border-radius !default;
3029
+ $kendo-border-radius-lg: $kendo-border-radius * 1.5 !default;
3029
3030
 
3030
3031
  $panel-padding-x: $card-spacer-x !default;
3031
3032
  $panel-padding-y: $card-spacer-y !default;
@@ -3319,7 +3320,7 @@ $invalid-shadow: 0 0 0 .25rem rgba($invalid-border, .25) !default;
3319
3320
  $drag-clue-padding-x: $btn-padding-x !default;
3320
3321
  $drag-clue-padding-y: $btn-padding-y !default;
3321
3322
  $drag-clue-border-width: 1px !default;
3322
- $drag-clue-border-radius: $border-radius !default;
3323
+ $drag-clue-border-radius: $kendo-border-radius-md !default;
3323
3324
  $drag-clue-font-size: $font-size !default;
3324
3325
  $drag-clue-font-family: $font-family !default;
3325
3326
  $drag-clue-line-height: $line-height !default;
@@ -3723,7 +3724,7 @@ $display4-letter-spacing: null !default;
3723
3724
  // Panels
3724
3725
  .k-block,
3725
3726
  .k-panel {
3726
- @include border-radius( $border-radius );
3727
+ @include border-radius( $kendo-border-radius-md );
3727
3728
  @include fill(
3728
3729
  $panel-text,
3729
3730
  $panel-bg,
@@ -3735,7 +3736,7 @@ $display4-letter-spacing: null !default;
3735
3736
  box-sizing: border-box;
3736
3737
 
3737
3738
  > .k-header {
3738
- @include border-top-radius( $border-radius );
3739
+ @include border-top-radius( $kendo-border-radius-md );
3739
3740
  @include fill(
3740
3741
  $header-text,
3741
3742
  $header-bg,
@@ -5328,11 +5329,11 @@ $display4-letter-spacing: null !default;
5328
5329
  // Component
5329
5330
  // #region @import "_border.scss"; -> packages/bootstrap/scss/utils/_border.scss
5330
5331
  $utils-border-radius: (
5331
- default: map-get( $spacing, 1 ),
5332
+ default: $kendo-border-radius-md,
5332
5333
  0: 0,
5333
- sm: .2rem,
5334
- md: .25rem,
5335
- lg: .3rem,
5334
+ sm: $kendo-border-radius-sm,
5335
+ md: $kendo-border-radius-md,
5336
+ lg: $kendo-border-radius-lg,
5336
5337
  full: 9999px
5337
5338
  ) !default;
5338
5339
 
@@ -5380,11 +5381,11 @@ $utils-border-radius: (
5380
5381
  ) !default;
5381
5382
 
5382
5383
  $utils-border-radius: (
5383
- default: map-get( $spacing, 1 ),
5384
+ default: $kendo-border-radius-md,
5384
5385
  0: 0,
5385
- sm: ( map-get( $spacing, 1 ) / 4 ),
5386
- md: ( map-get( $spacing, 1 ) / 2 ),
5387
- lg: map-get( $spacing, 1 ),
5386
+ sm: $kendo-border-radius-sm,
5387
+ md: $kendo-border-radius-md,
5388
+ lg: $kendo-border-radius-lg,
5388
5389
  full: 9999px
5389
5390
  ) !default;
5390
5391
 
@@ -5508,48 +5509,48 @@ $utils-border-radius: (
5508
5509
  /// @name k-d-flex
5509
5510
  /// @description This is equivalent to `display: flex`. It defines a flex container and enables a flex context for all its direct children. Think of flex items as primarily laying out either in horizontal rows or vertical columns.
5510
5511
  /// @group flex-layout
5511
- .k-d-flex { display: flex; }
5512
- .\!k-d-flex { display: flex !important; } // sass-lint:disable-line no-important class-name-format
5512
+ .k-d-flex { display: flex; }
5513
+ .\!k-d-flex { display: flex !important; } // sass-lint:disable-line no-important class-name-format
5513
5514
  /// @name k-d-inline-flex
5514
5515
  /// @description This is equivalent to `display: inline-flex`. It defines a flex container and enables a flex context for all its direct children. Think of flex items as primarily laying out either in horizontal rows or vertical columns.
5515
5516
  /// @group flex-layout
5516
- .k-d-inline-flex { display: inline-flex; }
5517
- .\!k-d-inline-flex { display: inline-flex !important; } // sass-lint:disable-line no-important class-name-format
5517
+ .k-d-inline-flex { display: inline-flex; }
5518
+ .\!k-d-inline-flex { display: inline-flex !important; } // sass-lint:disable-line no-important class-name-format
5518
5519
  /// @name k-d-flex-row
5519
5520
  /// @description This is equivalent to `display: inline-flex` and `flex-direction: row`.
5520
5521
  /// @group flex-layout
5521
- .k-d-flex-row { @extend .k-d-flex, .k-flex-row; }
5522
- .\!k-d-flex-row { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
5522
+ .k-d-flex-row { @extend .k-d-flex, .k-flex-row; }
5523
+ .\!k-d-flex-row { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
5523
5524
  /// @name k-d-flex-col
5524
5525
  /// @description This is equivalent to `display: inline-flex` and `flex-direction: column`.
5525
5526
  /// @group flex-layout
5526
- .k-d-flex-col { @extend .k-d-flex, .k-flex-col; }
5527
- .\!k-d-flex-col { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
5527
+ .k-d-flex-col { @extend .k-d-flex, .k-flex-col; }
5528
+ .\!k-d-flex-col { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
5528
5529
  /// @name k-flex-row
5529
5530
  /// @description This is equivalent to `flex-direction: row`. This establishes the main-axis to be horizontal, thus defining the direction flex items are placed in the flex container: left to right in `ltr`; right to left in `rtl`.
5530
5531
  /// @group flex-layout
5531
- .k-flex-row { flex-direction: row; }
5532
- .\!k-flex-row { flex-direction: row !important; } // sass-lint:disable-line no-important class-name-format
5532
+ .k-flex-row { flex-direction: row; }
5533
+ .\!k-flex-row { flex-direction: row !important; } // sass-lint:disable-line no-important class-name-format
5533
5534
  /// @name k-flex-row-reverse
5534
5535
  /// @description This is equivalent to `flex-direction: row-reverse`. This establishes the main-axis to be horizontal, thus defining the direction flex items are placed in the flex container: right to left in `ltr`; left to right in `rtl`.
5535
5536
  /// @group flex-layout
5536
- .k-flex-row-reverse { flex-direction: row-reverse; }
5537
- .\!k-flex-row-reverse { flex-direction: row-reverse !important; } // sass-lint:disable-line no-important class-name-format
5537
+ .k-flex-row-reverse { flex-direction: row-reverse; }
5538
+ .\!k-flex-row-reverse { flex-direction: row-reverse !important; } // sass-lint:disable-line no-important class-name-format
5538
5539
  /// @name k-flex-col
5539
5540
  /// @description This is equivalent to `flex-direction: column`. This establishes the main-axis to be vertical, thus defining the direction flex items are placed in the flex container: top to bottom.
5540
5541
  /// @group flex-layout
5541
- .k-flex-col { flex-direction: column; }
5542
- .\!k-flex-col { flex-direction: column !important; } // sass-lint:disable-line no-important class-name-format
5542
+ .k-flex-col { flex-direction: column; }
5543
+ .\!k-flex-col { flex-direction: column !important; } // sass-lint:disable-line no-important class-name-format
5543
5544
  /// @name k-flex-col-reverse
5544
5545
  /// @description This is equivalent to `flex-direction: column-reverse`. This establishes the main-axis to be vertical, thus defining the direction flex items are placed in the flex container: bottom to top.
5545
5546
  /// @group flex-layout
5546
- .k-flex-col-reverse { flex-direction: column-reverse; }
5547
- .\!k-flex-col-reverse { flex-direction: column-reverse; } // sass-lint:disable-line no-important class-name-format
5547
+ .k-flex-col-reverse { flex-direction: column-reverse; }
5548
+ .\!k-flex-col-reverse { flex-direction: column-reverse !important; } // sass-lint:disable-line no-important class-name-format
5548
5549
 
5549
5550
 
5550
5551
  // Aliases
5551
- .k-flex-column { @extend .k-flex-col; }
5552
- .k-flex-column-reverse { @extend .k-flex-col-reverse; }
5552
+ .k-flex-column { @extend .k-flex-col; }
5553
+ .k-flex-column-reverse { @extend .k-flex-col-reverse; }
5553
5554
 
5554
5555
 
5555
5556
  // Flex wrap
@@ -5557,15 +5558,18 @@ $utils-border-radius: (
5557
5558
  /// @name k-flex-wrap
5558
5559
  /// @description This is equivalent to `flex-wrap: wrap`. It allows flex items to wrap as needed onto multiple lines, from top to bottom.
5559
5560
  /// @group flex-layout
5560
- .k-flex-wrap { flex-wrap: wrap; }
5561
+ .k-flex-wrap { flex-wrap: wrap; }
5562
+ .\!k-flex-wrap { flex-wrap: wrap !important; } // sass-lint:disable-line no-important class-name-format
5561
5563
  /// @name k-flex-nowrap
5562
5564
  /// @description This is equivalent to `flex-wrap: nowrap`. All flex items will be on one line.
5563
5565
  /// @group flex-layout
5564
- .k-flex-nowrap { flex-wrap: nowrap; }
5566
+ .k-flex-nowrap { flex-wrap: nowrap; }
5567
+ .\!k-flex-nowrap { flex-wrap: nowrap !important; } // sass-lint:disable-line no-important class-name-format
5565
5568
  /// @name k-flex-wrap-reverse
5566
5569
  /// @description This is equivalent to `flex-wrap: wrap-reverse`. It allows flex items to wrap as needed onto multiple lines, from bottom to top.
5567
5570
  /// @group flex-layout
5568
- .k-flex-wrap-reverse { flex-wrap: wrap-reverse; }
5571
+ .k-flex-wrap-reverse { flex-wrap: wrap-reverse; }
5572
+ .\!k-flex-wrap-reverse { flex-wrap: wrap-reverse !important; } // sass-lint:disable-line no-important class-name-format
5569
5573
 
5570
5574
 
5571
5575
  // Flex, shrink, grow,
@@ -5573,80 +5577,116 @@ $utils-border-radius: (
5573
5577
  /// @name k-flex-initial
5574
5578
  /// @description This is the same as `flex: initial;` and the shorthand for the default value: `flex: 0 1 auto`. It sizes the item based on its `width`/`height` properties (or its content if not set). It makes the flex item inflexible when there is some free space left, but allows it to shrink to its minimum when there is not enough space. The alignment abilities or `auto` margins can be used to align flex items along the main axis.
5575
5579
  /// @group flex-layout
5576
- .k-flex-initial { flex: 0 1 auto; }
5580
+ .k-flex-initial { flex: 0 1 auto; }
5581
+ .\!k-flex-initial { flex: 0 1 auto !important; } // sass-lint:disable-line no-important class-name-format
5577
5582
  /// @name k-flex-1
5578
5583
  /// @description This is equivalent to `flex: 1 1 0%`. It sizes the item not based on its `width`/`height` properties, but based on the available space. This is similar to `flex: 1 1 auto` execpt it is allowed to shrink beyond its initial size.
5579
5584
  /// @group flex-layout
5580
- .k-flex-1 { flex: 1 1 0%; }
5585
+ .k-flex-1 { flex: 1 1 0%; }
5586
+ .\!k-flex-1 { flex: 1 1 0% !important; } // sass-lint:disable-line no-important class-name-format
5581
5587
  /// @name k-flex-auto
5582
5588
  /// @description This is equivalent to `flex: 1 1 auto`. Beware, this is not the default value. It sizes the item based on its `width`/`height` properties, but makes it fully flexible so that they absorb any extra space along the main axis. If all items are either `flex: auto`, `flex: initial`, or `flex: none`, any remaining space after the items have been sized will be distributed evenly to the items with `flex: auto`.
5583
5589
  /// @group flex-layout
5584
- .k-flex-auto { flex: 1 1 auto; }
5590
+ .k-flex-auto { flex: 1 1 auto; }
5591
+ .\!k-flex-auto { flex: 1 1 auto !important; } // sass-lint:disable-line no-important class-name-format
5585
5592
  /// @name k-flex-none
5586
5593
  /// @description This is equivalent to `flex: 0 0 auto`. It sizes the item according to its `width`/`height` properties, but makes it fully inflexible. This is similar to `flex: initial` except it is not allowed to shrink, even in an overflow situation.
5587
5594
  /// @group flex-layout
5588
- .k-flex-none { flex: none; }
5595
+ .k-flex-none { flex: none; }
5596
+ .\!k-flex-none { flex: none !important; } // sass-lint:disable-line no-important class-name-format
5589
5597
  /// @name k-flex-grow
5590
5598
  /// @description This is equivalent to `flex-grow: 1`. It defines the ability for a flex item to grow if necessary. It accepts a unitless value that serves as a proportion. It dictates what amount of the available space inside the flex container the item should take up.
5591
5599
  /// @group flex-layout
5592
- .k-flex-grow { flex-grow: 1; }
5600
+ .k-flex-grow { flex-grow: 1; }
5601
+ .\!k-flex-grow { flex-grow: 1 !important; } // sass-lint:disable-line no-important class-name-format
5593
5602
  /// @name k-flex-grow-0
5594
5603
  /// @description This is equivalent to `flex-grow: 0`. The item will not grow.
5595
5604
  /// @group flex-layout
5596
- .k-flex-grow-0 { flex-grow: 0; }
5605
+ .k-flex-grow-0 { flex-grow: 0; }
5606
+ .\!k-flex-grow-0 { flex-grow: 0 !important; } // sass-lint:disable-line no-important class-name-format
5597
5607
  /// @name k-flex-shrink
5598
5608
  /// @description This is equivalent to `flex-shrink: 1`. It determines how much the flex item will shrink relative to the rest of the flex items in the flex container when there isn't enough space on the row.
5599
5609
  /// @group flex-layout
5600
- .k-flex-shrink { flex-shrink: 1; }
5610
+ .k-flex-shrink { flex-shrink: 1; }
5611
+ .\!k-flex-shrink { flex-shrink: 1 !important; } // sass-lint:disable-line no-important class-name-format
5601
5612
  /// @name k-flex-shrink-0
5602
5613
  /// @description This is equivalent to `flex-shrink: 0`. The item will not shrink.
5603
5614
  /// @group flex-layout
5604
- .k-flex-shrink-0 { flex-shrink: 0; }
5615
+ .k-flex-shrink-0 { flex-shrink: 0; }
5616
+ .\!k-flex-shrink-0 { flex-shrink: 0 !important; } // sass-lint:disable-line no-important class-name-format
5605
5617
  /// @name k-flex-basis-auto
5606
5618
  /// @description This is equivalent to `flex-basis: auto`. It specifies the initial size of the flex item, before any available space is distributed according to the flex factors. It sizes the element according to its size property.
5607
5619
  /// @group flex-layout
5608
- .k-flex-basis-auto { flex-basis: auto; }
5620
+ .k-flex-basis-auto { flex-basis: auto; }
5621
+ .\!k-flex-basis-auto { flex-basis: auto !important; } // sass-lint:disable-line no-important class-name-format
5609
5622
  /// @name k-flex-basis-0
5610
5623
  /// @description This is equivalent to `flex-basis: 0`. It specifies the initial size of the flex item, before any available space is distributed according to the flex factors. It disregards the element' size property.
5611
5624
  /// @group flex-layout
5612
- .k-flex-basis-0 { flex-basis: 0%; }
5625
+ .k-flex-basis-0 { flex-basis: 0%; }
5626
+ .\!k-flex-basis-0 { flex-basis: 0% !important; } // sass-lint:disable-line no-important class-name-format
5613
5627
 
5614
5628
 
5615
5629
  // Flex align
5616
- .k-align-items-start { align-items: flex-start; }
5617
- .k-align-items-end { align-items: flex-end; }
5618
- .k-align-items-center { align-items: center; }
5619
- .k-align-items-stretch { align-items: stretch; }
5620
- .k-align-items-baseline { align-items: baseline; }
5621
-
5622
- .k-align-content-start { align-content: flex-start; }
5623
- .k-align-content-end { align-content: flex-end; }
5624
- .k-align-content-center { align-content: center; }
5625
- .k-align-content-stretch { align-content: stretch; }
5626
- .k-align-content-baseline { align-content: baseline; }
5627
-
5628
- .k-align-self-start { align-self: flex-start; }
5629
- .k-align-self-end { align-self: flex-end; }
5630
- .k-align-self-center { align-self: center; }
5631
- .k-align-self-stretch { align-self: stretch; }
5632
- .k-align-self-baseline { align-self: baseline; }
5630
+ .k-align-items-start { align-items: flex-start; }
5631
+ .\!k-align-items-start { align-items: flex-start !important; } // sass-lint:disable-line no-important class-name-format
5632
+ .k-align-items-end { align-items: flex-end; }
5633
+ .\!k-align-items-end { align-items: flex-end !important; } // sass-lint:disable-line no-important class-name-format
5634
+ .k-align-items-center { align-items: center; }
5635
+ .\!k-align-items-center { align-items: center !important; } // sass-lint:disable-line no-important class-name-format
5636
+ .k-align-items-stretch { align-items: stretch; }
5637
+ .\!k-align-items-stretch { align-items: stretch !important; } // sass-lint:disable-line no-important class-name-format
5638
+ .k-align-items-baseline { align-items: baseline; }
5639
+ .\!k-align-items-baseline { align-items: baseline !important; } // sass-lint:disable-line no-important class-name-format
5640
+
5641
+ .k-align-content-start { align-content: flex-start; }
5642
+ .\!k-align-content-start { align-content: flex-start !important; } // sass-lint:disable-line no-important class-name-format
5643
+ .k-align-content-end { align-content: flex-end; }
5644
+ .\!k-align-content-end { align-content: flex-end !important; } // sass-lint:disable-line no-important class-name-format
5645
+ .k-align-content-center { align-content: center; }
5646
+ .\!k-align-content-center { align-content: center !important; } // sass-lint:disable-line no-important class-name-format
5647
+ .k-align-content-stretch { align-content: stretch; }
5648
+ .\!k-align-content-stretch { align-content: stretch !important; } // sass-lint:disable-line no-important class-name-format
5649
+ .k-align-content-baseline { align-content: baseline; }
5650
+ .\!k-align-content-baseline { align-content: baseline !important; } // sass-lint:disable-line no-important class-name-format
5651
+
5652
+ .k-align-self-start { align-self: flex-start; }
5653
+ .\!k-align-self-start { align-self: flex-start !important; } // sass-lint:disable-line no-important class-name-format
5654
+ .k-align-self-end { align-self: flex-end; }
5655
+ .\!k-align-self-end { align-self: flex-end !important; } // sass-lint:disable-line no-important class-name-format
5656
+ .k-align-self-center { align-self: center; }
5657
+ .\!k-align-self-center { align-self: center !important; } // sass-lint:disable-line no-important class-name-format
5658
+ .k-align-self-stretch { align-self: stretch; }
5659
+ .\!k-align-self-stretch { align-self: stretch !important; } // sass-lint:disable-line no-important class-name-format
5660
+ .k-align-self-baseline { align-self: baseline; }
5661
+ .\!k-align-self-baseline { align-self: baseline !important; } // sass-lint:disable-line no-important class-name-format
5633
5662
 
5634
5663
 
5635
5664
  // Justify content
5636
- .k-justify-content-start { justify-content: flex-start; }
5637
- .k-justify-content-end { justify-content: flex-end; }
5638
- .k-justify-content-center { justify-content: center; }
5639
- .k-justify-content-between { justify-content: space-between; }
5640
- .k-justify-content-around { justify-content: space-around; }
5641
- .k-justify-content-evenly { justify-content: space-evenly; }
5642
- .k-justify-content-stretch > * { flex: 1 0 0%; }
5665
+ .k-justify-content-start { justify-content: flex-start; }
5666
+ .\!k-justify-content-start { justify-content: flex-start !important; } // sass-lint:disable-line no-important class-name-format
5667
+ .k-justify-content-end { justify-content: flex-end; }
5668
+ .\!k-justify-content-end { justify-content: flex-end !important; } // sass-lint:disable-line no-important class-name-format
5669
+ .k-justify-content-center { justify-content: center; }
5670
+ .\!k-justify-content-center { justify-content: center !important; } // sass-lint:disable-line no-important class-name-format
5671
+ .k-justify-content-between { justify-content: space-between; }
5672
+ .\!k-justify-content-between { justify-content: space-between !important; } // sass-lint:disable-line no-important class-name-format
5673
+ .k-justify-content-around { justify-content: space-around; }
5674
+ .\!k-justify-content-around { justify-content: space-around !important; } // sass-lint:disable-line no-important class-name-format
5675
+ .k-justify-content-evenly { justify-content: space-evenly; }
5676
+ .\!k-justify-content-evenly { justify-content: space-evenly !important; } // sass-lint:disable-line no-important class-name-format
5677
+ .k-justify-content-stretch > * { flex: 1 0 0%; }
5678
+ .\!k-justify-content-stretch > * { flex: 1 0 0% !important; } // sass-lint:disable-line no-important class-name-format
5643
5679
 
5644
5680
 
5645
5681
  // Justify items
5646
- .k-justify-items-start { justify-items: flex-start; }
5647
- .k-justify-items-end { justify-items: flex-end; }
5648
- .k-justify-items-center { justify-items: center; }
5649
- .k-justify-items-stretch { justify-items: stretch; }
5682
+ .k-justify-items-start { justify-items: flex-start; }
5683
+ .\!k-justify-items-start { justify-items: flex-start !important; } // sass-lint:disable-line no-important class-name-format
5684
+ .k-justify-items-end { justify-items: flex-end; }
5685
+ .\!k-justify-items-end { justify-items: flex-end !important; } // sass-lint:disable-line no-important class-name-format
5686
+ .k-justify-items-center { justify-items: center; }
5687
+ .\!k-justify-items-center { justify-items: center !important; } // sass-lint:disable-line no-important class-name-format
5688
+ .k-justify-items-stretch { justify-items: stretch; }
5689
+ .\!k-justify-items-stretch { justify-items: stretch !important; } // sass-lint:disable-line no-important class-name-format
5650
5690
 
5651
5691
  }
5652
5692
 
@@ -8067,7 +8107,7 @@ $message-box-link-text-decoration: underline !default;
8067
8107
  /// Font size of the list component, if no size is set.
8068
8108
  /// @group list
8069
8109
  $kendo-list-font-size: null !default;
8070
- $kendo-list-font-size-sm: $font-size-sm !default;
8110
+ $kendo-list-font-size-sm: $font-size-md !default;
8071
8111
  $kendo-list-font-size-md: $font-size-md !default;
8072
8112
  $kendo-list-font-size-lg: $font-size-md !default;
8073
8113
 
@@ -8920,6 +8960,14 @@ $kendo-checkbox-ripple-opacity: .25 !default;
8920
8960
  right: 0;
8921
8961
  }
8922
8962
  }
8963
+ .k-list-item-text,
8964
+ .k-list-optionlabel {
8965
+ &::before {
8966
+ content: "\200b";
8967
+ width: 0px;
8968
+ overflow: hidden;
8969
+ }
8970
+ }
8923
8971
  .k-list-optionlabel {
8924
8972
  @extend .k-list-item;
8925
8973
  }
@@ -9499,7 +9547,7 @@ $overlay-opacity: .5 !default;
9499
9547
  $popup-padding-x: null !default;
9500
9548
  $popup-padding-y: null !default;
9501
9549
  $popup-border-width: 1px !default;
9502
- $popup-border-radius: $border-radius !default;
9550
+ $popup-border-radius: $kendo-border-radius-md !default;
9503
9551
 
9504
9552
  $popup-font-size: $font-size !default;
9505
9553
  $popup-line-height: $line-height !default;
@@ -9536,7 +9584,7 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
9536
9584
  }
9537
9585
  }
9538
9586
  .k-animation-container {
9539
- @include border-bottom-radius-only( $border-radius );
9587
+ @include border-bottom-radius-only( $kendo-border-radius-md );
9540
9588
 
9541
9589
  .k-popup {}
9542
9590
  }
@@ -9603,7 +9651,7 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
9603
9651
  }
9604
9652
 
9605
9653
  .k-animation-container {
9606
- @include border-bottom-radius-only( $border-radius );
9654
+ @include border-bottom-radius-only( $kendo-border-radius );
9607
9655
  }
9608
9656
 
9609
9657
  }
@@ -9751,14 +9799,14 @@ $badge-line-height: 1 !default;
9751
9799
  $badge-padding-x-sm: ( $badge-padding-x / 2 ) !default;
9752
9800
  $badge-padding-y-sm: ( $badge-padding-y / 2 ) !default;
9753
9801
  $badge-border-width-sm: $badge-border-width !default;
9754
- $badge-border-radius-sm: $border-radius-sm !default;
9802
+ $badge-border-radius-sm: $kendo-border-radius-sm !default;
9755
9803
  $badge-font-size-sm: ( $badge-font-size * .8333333333 ) !default;
9756
9804
  $badge-line-height-sm: 1 !default;
9757
9805
 
9758
9806
  $badge-padding-x-lg: ( $badge-padding-x * 1.5 ) !default;
9759
9807
  $badge-padding-y-lg: ( $badge-padding-y * 1.5 ) !default;
9760
9808
  $badge-border-width-lg: $badge-border-width !default;
9761
- $badge-border-radius-lg: $border-radius-lg !default;
9809
+ $badge-border-radius-lg: $kendo-border-radius-lg !default;
9762
9810
  $badge-font-size-lg: ( $badge-font-size * 1.1666666666 ) !default;
9763
9811
  $badge-line-height-lg: 1.25 !default;
9764
9812
 
@@ -10043,9 +10091,9 @@ $kendo-button-border-radius: null !default;
10043
10091
  /// Horizontal padding of the button.
10044
10092
  /// @group button
10045
10093
  $kendo-button-padding-x: $btn-padding-x !default;
10046
- $kendo-button-padding-x-sm: $btn-padding-x-sm !default;
10094
+ $kendo-button-padding-x-sm: $btn-padding-x !default;
10047
10095
  $kendo-button-padding-x-md: $btn-padding-x !default;
10048
- $kendo-button-padding-x-lg: $btn-padding-x-lg !default;
10096
+ $kendo-button-padding-x-lg: $btn-padding-x !default;
10049
10097
 
10050
10098
  /// Vertical padding of the button.
10051
10099
  /// @group button
@@ -10061,9 +10109,9 @@ $kendo-button-font-family: $font-family !default;
10061
10109
  /// Font sizes of the button.
10062
10110
  /// @group button
10063
10111
  $kendo-button-font-size: $btn-font-size !default;
10064
- $kendo-button-font-size-sm: $btn-font-size-sm !default;
10112
+ $kendo-button-font-size-sm: $btn-font-size !default;
10065
10113
  $kendo-button-font-size-md: $btn-font-size !default;
10066
- $kendo-button-font-size-lg: $btn-font-size-lg !default;
10114
+ $kendo-button-font-size-lg: $btn-font-size !default;
10067
10115
 
10068
10116
  /// Line heights used along with $font-size.
10069
10117
  /// @group button
@@ -10080,8 +10128,19 @@ $kendo-button-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-but
10080
10128
  /// @group button
10081
10129
  $kendo-button-inner-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-button-padding-y * 2} ) !default;
10082
10130
 
10131
+ /// Horizontal padding of the arrow button.
10132
+ /// @group button
10083
10133
  $kendo-button-arrow-padding-x: $kendo-button-padding-y !default;
10134
+ $kendo-button-arrow-padding-x-sm: $kendo-button-padding-y-sm !default;
10135
+ $kendo-button-arrow-padding-x-md: $kendo-button-padding-y-md !default;
10136
+ $kendo-button-arrow-padding-x-lg: $kendo-button-padding-y-lg !default;
10137
+
10138
+ /// Vertical padding of the arrow button.
10139
+ /// @group button
10084
10140
  $kendo-button-arrow-padding-y: $kendo-button-padding-y !default;
10141
+ $kendo-button-arrow-padding-y-sm: $kendo-button-padding-y-sm !default;
10142
+ $kendo-button-arrow-padding-y-md: $kendo-button-padding-y-md !default;
10143
+ $kendo-button-arrow-padding-y-lg: $kendo-button-padding-y-lg !default;
10085
10144
 
10086
10145
  /// Theme colors map for the button.
10087
10146
  /// @group button
@@ -10245,6 +10304,7 @@ $kendo-button-transition: $transition !default;
10245
10304
  box-sizing: border-box;
10246
10305
  border-width: $kendo-button-border-width;
10247
10306
  border-style: solid;
10307
+ border-radius: $kendo-button-border-radius;
10248
10308
  color: inherit;
10249
10309
  background: none;
10250
10310
  font-family: $kendo-button-font-family;
@@ -10459,6 +10519,18 @@ $kendo-button-transition: $transition !default;
10459
10519
  aspect-ratio: auto;
10460
10520
  flex: none;
10461
10521
 
10522
+ &.k-button-sm {
10523
+ padding: $kendo-button-arrow-padding-y-sm $kendo-button-arrow-padding-x-sm;
10524
+ }
10525
+
10526
+ &.k-button-md {
10527
+ padding: $kendo-button-arrow-padding-y-md $kendo-button-arrow-padding-x-md;
10528
+ }
10529
+
10530
+ &.k-button-lg {
10531
+ padding: $kendo-button-arrow-padding-y-lg $kendo-button-arrow-padding-x-lg;
10532
+ }
10533
+
10462
10534
  .k-button-icon {
10463
10535
  min-width: 0;
10464
10536
  }
@@ -10944,7 +11016,7 @@ $kendo-input-font-family: $font-family !default;
10944
11016
  $kendo-input-font-size: $font-size !default;
10945
11017
  $kendo-input-line-height: $input-line-height !default;
10946
11018
 
10947
- $kendo-input-padding-x-sm: $input-padding-x-sm !default;
11019
+ $kendo-input-padding-x-sm: $input-padding-x !default;
10948
11020
  $kendo-input-padding-y-sm: $input-padding-y-sm !default;
10949
11021
  $kendo-input-font-size-sm: $font-size-md !default;
10950
11022
  $kendo-input-line-height-sm: $line-height-md !default;
@@ -10954,7 +11026,7 @@ $kendo-input-padding-y-md: $input-padding-y !default;
10954
11026
  $kendo-input-font-size-md: $font-size-md !default;
10955
11027
  $kendo-input-line-height-md: $line-height-md !default;
10956
11028
 
10957
- $kendo-input-padding-x-lg: $input-padding-x-lg !default;
11029
+ $kendo-input-padding-x-lg: $input-padding-x !default;
10958
11030
  $kendo-input-padding-y-lg: $input-padding-y-lg !default;
10959
11031
  $kendo-input-font-size-lg: $font-size-md !default;
10960
11032
  $kendo-input-line-height-lg: $line-height-md !default;
@@ -11150,7 +11222,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
11150
11222
  position: relative;
11151
11223
  z-index: 1;
11152
11224
  overflow: hidden;
11153
- text-overflow: clip;
11225
+ text-overflow: ellipsis;
11154
11226
  -webkit-appearance: none;
11155
11227
 
11156
11228
  // Hide clear icon
@@ -11189,7 +11261,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
11189
11261
  .k-input-value-text {
11190
11262
  flex: 1;
11191
11263
  overflow: hidden;
11192
- text-overflow: clip;
11264
+ text-overflow: ellipsis;
11193
11265
  }
11194
11266
  .k-input-value-text::before {
11195
11267
  content: "\200b";
@@ -11255,7 +11327,9 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
11255
11327
  // Input with icon styles
11256
11328
  .k-input-icon,
11257
11329
  .k-input-validation-icon,
11258
- .k-input-loading-icon {
11330
+ .k-input-loading-icon,
11331
+ .k-input-prefix > .k-icon,
11332
+ .k-input-suffix > .k-icon {
11259
11333
  flex: none;
11260
11334
  align-self: center;
11261
11335
  display: inline-flex;
@@ -11429,7 +11503,9 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
11429
11503
  .k-input-icon,
11430
11504
  .k-input-validation-icon,
11431
11505
  .k-input-loading-icon,
11432
- .k-clear-value {
11506
+ .k-clear-value,
11507
+ .k-input-prefix > .k-icon,
11508
+ .k-input-suffix > .k-icon {
11433
11509
  width: $_icon-size;
11434
11510
  height: $_icon-size;
11435
11511
  }
@@ -13202,6 +13278,8 @@ $kendo-chip-list-sizes: (
13202
13278
 
13203
13279
  // Chip content
13204
13280
  .k-chip-content {
13281
+ padding: .5em 0;
13282
+ margin: -.5em 0;
13205
13283
  min-width: 0;
13206
13284
  display: flex;
13207
13285
  flex-flow: row nowrap;
@@ -13481,7 +13559,7 @@ $kendo-chip-list-sizes: (
13481
13559
  // #endregion
13482
13560
  // #region @import "_variables.scss"; -> packages/bootstrap/scss/color-preview/_variables.scss
13483
13561
  // Color Preview
13484
- $color-preview-border-radius: $border-radius !default;
13562
+ $color-preview-border-radius: $kendo-border-radius-md !default;
13485
13563
  $color-preview-border-width: 1px !default;
13486
13564
  $color-preview-bg: null !default;
13487
13565
  $color-preview-text: null !default;
@@ -13650,7 +13728,7 @@ $loader-secondary-bg: #212529 !default;
13650
13728
  $loader-container-panel-border-width: 1px !default;
13651
13729
  $loader-container-panel-border-style: solid !default;
13652
13730
  $loader-container-panel-border-color: $component-border !default;
13653
- $loader-container-panel-border-radius: $border-radius !default;
13731
+ $loader-container-panel-border-radius: $kendo-border-radius-md !default;
13654
13732
  $loader-container-panel-bg: $white !default;
13655
13733
 
13656
13734
  $loader-container-padding-sm: map-get( $spacing, 4 ) !default;
@@ -14178,7 +14256,7 @@ $loader-container-font-size-lg: $font-size-lg !default;
14178
14256
  // #region @import "_variables.scss"; -> packages/bootstrap/scss/skeleton/_variables.scss
14179
14257
  // Skeleton
14180
14258
  $skeleton-text-transform: scale( 1, .6 ) !default;
14181
- $skeleton-text-border-radius: $border-radius !default;
14259
+ $skeleton-text-border-radius: $kendo-border-radius-md !default;
14182
14260
 
14183
14261
  $skeleton-rect-border-radius: 0 !default;
14184
14262
 
@@ -14807,7 +14885,7 @@ $tooltip-error-border: $tooltip-error-bg !default;
14807
14885
  }
14808
14886
 
14809
14887
  .k-context-menu {
14810
- @include border-radius( $border-radius );
14888
+ @include border-radius( $kendo-border-radius-md );
14811
14889
  }
14812
14890
 
14813
14891
  .k-header {
@@ -15443,7 +15521,7 @@ $actions-gradient: null !default;
15443
15521
  // #region @import "../window/_variables.scss"; -> packages/bootstrap/scss/window/_variables.scss
15444
15522
  // Window
15445
15523
  $window-border-width: 1px !default;
15446
- $window-border-radius: $border-radius !default;
15524
+ $window-border-radius: $kendo-border-radius-md !default;
15447
15525
  $window-font-family: $font-family !default;
15448
15526
  $window-font-size: $font-size !default;
15449
15527
  $window-line-height: $line-height !default;
@@ -15706,11 +15784,6 @@ $fieldset-legend-border: null !default;
15706
15784
  display: inline-flex;
15707
15785
  width: 100%;
15708
15786
  }
15709
- .k-daterangepicker {
15710
- width: 100%;
15711
- flex-flow: column nowrap;
15712
- gap: 0;
15713
- }
15714
15787
  }
15715
15788
 
15716
15789
  // Form Buttons Container
@@ -16408,9 +16481,7 @@ $fieldset-legend-border: null !default;
16408
16481
  @include exports( "textarea/layout" ) {
16409
16482
 
16410
16483
  // Textarea
16411
- .k-textarea {
16412
- display: flex;
16413
- }
16484
+ .k-textarea {}
16414
16485
 
16415
16486
  }
16416
16487
 
@@ -16691,7 +16762,7 @@ $progressbar-chunk-border: $body-bg !default;
16691
16762
 
16692
16763
  // Base
16693
16764
  .k-progressbar {
16694
- @include border-radius( $border-radius );
16765
+ @include border-radius( $kendo-border-radius );
16695
16766
  --kendo-progressbar-progress: 0;
16696
16767
  border-width: $progressbar-border-width;
16697
16768
  border-style: solid;
@@ -18013,7 +18084,7 @@ $slider-disabled-opacity: null !default;
18013
18084
 
18014
18085
  .k-slider-track,
18015
18086
  .k-slider-selection {
18016
- @include border-radius( $border-radius );
18087
+ @include border-radius( $kendo-border-radius );
18017
18088
  }
18018
18089
 
18019
18090
  .k-slider-track {
@@ -18143,7 +18214,7 @@ $calendar-footer-padding-y: map-get( $spacing, 2 ) !default;
18143
18214
  $calendar-cell-padding-x: map-get( $spacing, 2 ) !default;
18144
18215
  $calendar-cell-padding-y: map-get( $spacing, 2 ) !default;
18145
18216
  $calendar-cell-line-height: $calendar-line-height !default;
18146
- $calendar-cell-border-radius: $border-radius !default;
18217
+ $calendar-cell-border-radius: $kendo-border-radius-md !default;
18147
18218
 
18148
18219
  $calendar-header-cell-padding-x: null !default;
18149
18220
  $calendar-header-cell-padding-y: null !default;
@@ -18590,6 +18661,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18590
18661
  line-height: $calendar-navigation-item-height;
18591
18662
  cursor: pointer;
18592
18663
  padding: 0 1em;
18664
+ overflow: hidden;
18665
+ white-space: nowrap;
18666
+ text-overflow: clip;
18593
18667
  }
18594
18668
  }
18595
18669
 
@@ -19721,7 +19795,7 @@ $colorgradient-spacer: map-get( $spacing, 4 ) !default;
19721
19795
 
19722
19796
  $colorgradient-width: 328px !default;
19723
19797
  $colorgradient-border-width: 1px !default;
19724
- $colorgradient-border-radius: $border-radius !default;
19798
+ $colorgradient-border-radius: $kendo-border-radius-md !default;
19725
19799
  $colorgradient-padding-y: $colorgradient-spacer !default;
19726
19800
  $colorgradient-padding-x: $colorgradient-padding-y !default;
19727
19801
  $colorgradient-gap: $colorgradient-spacer !default;
@@ -19735,7 +19809,7 @@ $colorgradient-border: $component-border !default;
19735
19809
  $colorgradient-focus-border: $hovered-border !default;
19736
19810
  $colorgradient-focus-shadow: null !default;
19737
19811
 
19738
- $colorgradient-canvas-border-radius: $border-radius !default;
19812
+ $colorgradient-canvas-border-radius: $kendo-border-radius-md !default;
19739
19813
  $colorgradient-canvas-gap: map-get( $spacing, 3 ) !default;
19740
19814
  $colorgradient-canvas-rectangle-height: 180px !default;
19741
19815
 
@@ -19907,6 +19981,10 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 2 ) !default;
19907
19981
  .k-numerictextbox {
19908
19982
  width: $colorgradient-input-width;
19909
19983
  }
19984
+
19985
+ .k-input-inner {
19986
+ text-overflow: clip;
19987
+ }
19910
19988
  }
19911
19989
 
19912
19990
  // Contrast
@@ -20088,7 +20166,7 @@ $coloreditor-spacer: map-get( $spacing, 4 ) !default;
20088
20166
 
20089
20167
  $coloreditor-min-width: 328px !default;
20090
20168
  $coloreditor-border-width: 1px !default;
20091
- $coloreditor-border-radius: $border-radius !default;
20169
+ $coloreditor-border-radius: $kendo-border-radius-md !default;
20092
20170
  $coloreditor-font-family: $font-family !default;
20093
20171
  $coloreditor-font-size: $font-size !default;
20094
20172
  $coloreditor-line-height: $line-height !default;
@@ -23522,7 +23600,7 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
23522
23600
  $kendo-fab-border-width: 1px !default;
23523
23601
  /// Border radius of the FAB.
23524
23602
  /// @group floating-action-button
23525
- $kendo-fab-border-radius: $border-radius / 2 !default;
23603
+ $kendo-fab-border-radius: $kendo-border-radius / 2 !default;
23526
23604
  /// Font family of the FAB.
23527
23605
  /// @group floating-action-button
23528
23606
  $kendo-fab-font-family: $font-family !default;
@@ -25091,22 +25169,24 @@ $notification-bg: $component-bg !default;
25091
25169
  $notification-text: $component-text !default;
25092
25170
  $notification-border: $component-border !default;
25093
25171
 
25094
- $notification-themes: () !default;
25172
+ @function notification-theme( $colors ) {
25173
+ $_theme: ();
25095
25174
 
25096
- @function notification-theme($name: null, $color: null) {
25097
- // sass-lint:disable indentation
25098
- @return (
25099
- border: tint( $color, 10 ),
25100
- color: shade( $color, 6 ),
25101
- bg: tint( $color, 9 )
25102
- );
25103
- // sass-lint:enable indentation
25104
- }
25175
+ // sass-lint:disable-block indentation
25176
+ @each $name, $color in $colors {
25177
+ $_theme: map-merge(( $name: (
25178
+ color: shade( $color, 6 ),
25179
+ background-color: tint( $color, 9 ),
25180
+ border: tint( $color, 10 ),
25181
+ )), $_theme );
25182
+ }
25105
25183
 
25106
- @each $theme, $props in $kendo-theme-colors {
25107
- $notification-themes: map-merge($notification-themes, ($theme: notification-theme($theme, $props)) );
25184
+ @return $_theme;
25108
25185
  }
25109
25186
 
25187
+ $kendo-notification-theme-colors: $kendo-theme-colors !default;
25188
+ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors ) !default;
25189
+
25110
25190
  // #endregion
25111
25191
  // #region @import "_layout.scss"; -> packages/bootstrap/scss/notification/_layout.scss
25112
25192
  // #region @import "~@progress/kendo-theme-default/scss/notification/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/notification/_layout.scss
@@ -25219,11 +25299,13 @@ $notification-themes: () !default;
25219
25299
  box-shadow: $notification-shadow;
25220
25300
  }
25221
25301
 
25222
- @each $theme, $props in $notification-themes {
25223
- .k-notification-#{$theme} {
25224
- border-color: map-get( $props, border );
25225
- color: map-get( $props, color );
25226
- background-color: map-get( $props, bg );
25302
+ @each $name, $props in $kendo-notification-theme {
25303
+ .k-notification-#{$name} {
25304
+ @include fill(
25305
+ map-get( $props, color ),
25306
+ map-get( $props, background-color ),
25307
+ map-get( $props, border )
25308
+ );
25227
25309
  }
25228
25310
  }
25229
25311
 
@@ -26416,7 +26498,7 @@ $breadcrumb-delimiter-icon-padding-y: 0px !default;
26416
26498
 
26417
26499
  $breadcrumb-link-padding-x: $padding-x-lg / 2 !default;
26418
26500
  $breadcrumb-link-padding-y: $padding-y !default;
26419
- $breadcrumb-link-border-radius: $border-radius !default;
26501
+ $breadcrumb-link-border-radius: $kendo-border-radius-md !default;
26420
26502
 
26421
26503
  $breadcrumb-icon-link-padding-x: $breadcrumb-link-padding-x !default;
26422
26504
  $breadcrumb-icon-link-padding-y: $breadcrumb-icon-link-padding-x !default;
@@ -26991,6 +27073,11 @@ $pager-dropdown-width: 5em !default;
26991
27073
  width: $pager-dropdown-width;
26992
27074
  }
26993
27075
 
27076
+ .k-input-inner,
27077
+ .k-input-value-text {
27078
+ text-overflow: clip;
27079
+ }
27080
+
26994
27081
  .k-rtl &,
26995
27082
  [dir="rtl"] & {
26996
27083
  .k-dropdown-list,
@@ -27476,6 +27563,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
27476
27563
  display: flex;
27477
27564
  align-items: center;
27478
27565
  justify-content: center;
27566
+ flex: none;
27479
27567
  position: relative;
27480
27568
  z-index: 1;
27481
27569
  overflow: visible;
@@ -27509,7 +27597,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
27509
27597
 
27510
27598
  // Step label
27511
27599
  .k-step-label {
27512
- max-width: 10em;
27600
+ max-width: clamp(100%, 10em, 100%);
27513
27601
  display: inline-flex;
27514
27602
  flex-wrap: wrap;
27515
27603
  align-items: center;
@@ -30615,7 +30703,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
30615
30703
 
30616
30704
  $grid-hierarchy-col-width: ($icon-size * 2) !default;
30617
30705
 
30618
- $grid-group-indicator-border-radius: $border-radius !default;
30706
+ $grid-group-indicator-border-radius: $kendo-border-radius-md !default;
30619
30707
  $grid-group-indicator-gap: $table-cell-padding-y !default;
30620
30708
 
30621
30709
  $grid-grouping-row-border-top: 1px !default;
@@ -32076,7 +32164,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
32076
32164
 
32077
32165
  // Grouping header
32078
32166
  .k-grouping-header .k-group-indicator {
32079
- @include border-radius( $border-radius );
32167
+ @include border-radius( $kendo-border-radius-md );
32080
32168
  }
32081
32169
  }
32082
32170
 
@@ -32833,9 +32921,9 @@ $spreadsheet-insert-image-dialog-preview-width: 355px !default;
32833
32921
  $spreadsheet-insert-image-dialog-preview-height: 230px !default;
32834
32922
  $spreadsheet-insert-image-dialog-preview-img: "image-default.png" !default;
32835
32923
  $spreadsheet-insert-image-dialog-preview-border: $component-border !default;
32836
- $spreadsheet-insert-image-dialog-preview-border-radius: $border-radius !default;
32924
+ $spreadsheet-insert-image-dialog-preview-border-radius: $kendo-border-radius-md !default;
32837
32925
  $spreadsheet-insert-image-dialog-preview-overlay-shadow: inset 0 0 0 2000px rgba(0, 0, 0, .5) !default;
32838
- $spreadsheet-insert-image-dialog-preview-overlay-border-radius: $border-radius !default;
32926
+ $spreadsheet-insert-image-dialog-preview-overlay-border-radius: $kendo-border-radius-md !default;
32839
32927
  $spreadsheet-insert-image-dialog-overlay-hovered-text: $component-bg !default;
32840
32928
 
32841
32929
  $spreadsheet-drawing-handle-width: 6px !default;
@@ -32845,7 +32933,7 @@ $spreadsheet-drawing-handle-border-width: 1px !default;
32845
32933
  $spreadsheet-drawing-handle-outline-color: $primary !default;
32846
32934
  $spreadsheet-drawing-handle-border-color: $selected-bg !default;
32847
32935
  $spreadsheet-drawing-handle-bg: $primary !default;
32848
- $spreadsheet-drawing-handle-border-radius: $border-radius-lg !default;
32936
+ $spreadsheet-drawing-handle-border-radius: $kendo-border-radius-lg !default;
32849
32937
 
32850
32938
  $spreadsheet-drawing-outline-style: solid !default;
32851
32939
  $spreadsheet-drawing-outline-width: 2px !default;
@@ -32954,10 +33042,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
32954
33042
  min-width: $form-line-height * 1em;
32955
33043
  }
32956
33044
 
32957
- .k-input,
32958
- .k-picker {
32959
- width: 5em;
32960
- }
32961
33045
  .k-color-picker {
32962
33046
  width: min-content;
32963
33047
  }
@@ -33432,7 +33516,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
33432
33516
  box-sizing: border-box;
33433
33517
  }
33434
33518
  .k-spreadsheet-filter {
33435
- @include border-radius( $border-radius );
33519
+ @include border-radius( $kendo-border-radius );
33436
33520
  line-height: 1;
33437
33521
  position: absolute;
33438
33522
  cursor: pointer;
@@ -34113,6 +34197,7 @@ $pivotgrid-font-family: $font-family !default;
34113
34197
  $pivotgrid-font-size: $font-size !default;
34114
34198
  $pivotgrid-line-height: $line-height !default;
34115
34199
  $pivotgrid-border-width: 1px !default;
34200
+ $pivotgrid-icon-spacing: 8px !default;
34116
34201
 
34117
34202
  $pivotgrid-row-header-width: 300px !default;
34118
34203
  $pivotgrid-column-header-height: 75px !default;
@@ -34186,7 +34271,7 @@ $pivotgrid-configurator-button-size: calc( #{$pivotgrid-line-height * 1em} + #{$
34186
34271
  $pivotgrid-calculated-field-padding-x: $pivotgrid-spacer !default;
34187
34272
  $pivotgrid-calculated-field-padding-y: $pivotgrid-spacer !default;
34188
34273
  $pivotgrid-calculated-field-border-width: 1px !default;
34189
- $pivotgrid-calculated-field-border-radius: $border-radius !default;
34274
+ $pivotgrid-calculated-field-border-radius: $kendo-border-radius-md !default;
34190
34275
  $pivotgrid-calculated-field-gap: $pivotgrid-spacer !default;
34191
34276
 
34192
34277
  $pivotgrid-calculated-field-bg: $component-bg !default;
@@ -34358,6 +34443,7 @@ $pivotgrid-remove-text: null !default;
34358
34443
 
34359
34444
  .k-pivotgrid-cell .k-icon {
34360
34445
  cursor: pointer;
34446
+ padding-inline-end: $pivotgrid-icon-spacing;
34361
34447
  }
34362
34448
 
34363
34449
  .k-pivotgrid-total {
@@ -35897,6 +35983,9 @@ $filemanager-preview-icon-border: null !default;
35897
35983
  flex-shrink: 0;
35898
35984
  display: inline-flex;
35899
35985
  position: relative;
35986
+ border-width: 0 1px;
35987
+ border-style: solid;
35988
+ border-color: inherit;
35900
35989
  }
35901
35990
 
35902
35991
 
@@ -36105,7 +36194,7 @@ $taskboard-columns-container-gap: $taskboard-spacer !default;
36105
36194
 
36106
36195
  $taskboard-column-width: 320px !default;
36107
36196
  $taskboard-column-border-width: 1px !default;
36108
- $taskboard-column-border-radius: $border-radius-sm !default;
36197
+ $taskboard-column-border-radius: $kendo-border-radius-sm !default;
36109
36198
  $taskboard-column-bg: if( $dark-theme, $gray-900, $gray-100 ) !default;
36110
36199
  $taskboard-column-text: null !default;
36111
36200
  $taskboard-column-border: transparent !default;
@@ -36657,7 +36746,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
36657
36746
 
36658
36747
  // Inline editor
36659
36748
  .k-editor-inline {
36660
- @include border-radius( $border-radius );
36749
+ @include border-radius( $kendo-border-radius-md );
36661
36750
  padding: $padding-y-sm $padding-x-sm;
36662
36751
  border: 1px solid transparent;
36663
36752
  word-wrap: break-word;
@@ -37078,7 +37167,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
37078
37167
  white-space: nowrap;
37079
37168
  overflow: hidden;
37080
37169
  cursor: pointer;
37081
- @include border-radius( $border-radius );
37170
+ @include border-radius( $kendo-border-radius-md );
37082
37171
 
37083
37172
  .k-i-file,
37084
37173
  .k-i-folder {
@@ -37550,6 +37639,11 @@ $imageeditor-crop-overlay-bg: rgba(black, .3) !default;
37550
37639
  box-sizing: border-box;
37551
37640
  flex: none;
37552
37641
  overflow-y: auto;
37642
+
37643
+ .k-input-inner,
37644
+ .k-input-value-text {
37645
+ text-overflow: clip;
37646
+ }
37553
37647
  }
37554
37648
 
37555
37649
 
@@ -37836,6 +37930,11 @@ $gantt-advanced-bg-lighter: tint($gantt-advanced-bg, 5) !default;
37836
37930
  $gantt-action-on-offset-text: #000000 !default;
37837
37931
  $gantt-offset-resize-handler-top: 45% !default;
37838
37932
 
37933
+ $gantt-validation-tooltip-width: 200px !default;
37934
+ $gantt-validation-tooltip-border: #656565 !default;
37935
+ $gantt-validation-tooltip-valid-border: $success !default;
37936
+ $gantt-validation-tooltip-invalid-border: $error !default;
37937
+
37839
37938
  // #endregion
37840
37939
  // #region @import "_layout.scss"; -> packages/bootstrap/scss/gantt/_layout.scss
37841
37940
  // #region @import "~@progress/kendo-theme-default/scss/gantt/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/gantt/_layout.scss
@@ -38347,7 +38446,7 @@ $gantt-offset-resize-handler-top: 45% !default;
38347
38446
  // Single task
38348
38447
  .k-single-wrap {}
38349
38448
  .k-task-single {
38350
- @include border-radius( $border-radius );
38449
+ @include border-radius( $kendo-border-radius-md );
38351
38450
  border-width: $gantt-task-border-width;
38352
38451
  border-style: solid;
38353
38452
  box-sizing: border-box;
@@ -38380,7 +38479,7 @@ $gantt-offset-resize-handler-top: 45% !default;
38380
38479
  }
38381
38480
  }
38382
38481
  .k-task-complete {
38383
- @include border-radius( $border-radius );
38482
+ @include border-radius( $kendo-border-radius-md );
38384
38483
  width: 20%;
38385
38484
  position: absolute;
38386
38485
  z-index: 1;
@@ -38450,7 +38549,6 @@ $gantt-offset-resize-handler-top: 45% !default;
38450
38549
  }
38451
38550
 
38452
38551
  // Planned position
38453
-
38454
38552
  .k-gantt-planned {
38455
38553
  .k-gantt-dependencies,
38456
38554
  .k-task-dot,
@@ -38481,7 +38579,6 @@ $gantt-offset-resize-handler-top: 45% !default;
38481
38579
  }
38482
38580
 
38483
38581
  // Planned element
38484
-
38485
38582
  .k-task-planned {
38486
38583
  margin: 0 0 $gantt-planned-margin-y;
38487
38584
  line-height: $gantt-planned-line-height;
@@ -38514,7 +38611,6 @@ $gantt-offset-resize-handler-top: 45% !default;
38514
38611
  }
38515
38612
 
38516
38613
  // Planned Tooltip
38517
-
38518
38614
  .k-planned-tooltip {
38519
38615
  .k-task-content {
38520
38616
  display: block;
@@ -38522,7 +38618,6 @@ $gantt-offset-resize-handler-top: 45% !default;
38522
38618
  }
38523
38619
 
38524
38620
  // Delay offset
38525
-
38526
38621
  .k-task-offset-wrap .k-task-content .k-resize-e {
38527
38622
  display: none;
38528
38623
  }
@@ -38553,6 +38648,36 @@ $gantt-offset-resize-handler-top: 45% !default;
38553
38648
  .k-task-offset:hover .k-resize-handle {
38554
38649
  visibility: visible;
38555
38650
  }
38651
+
38652
+
38653
+ // Dependency Validation Tooltip
38654
+ .k-gantt-tooltip-validation {
38655
+ max-width: $gantt-validation-tooltip-width;
38656
+ display: block;
38657
+
38658
+ &::before {
38659
+ content: "";
38660
+ width: 4px;
38661
+ height: 100%;
38662
+ position: absolute;
38663
+ top: 0;
38664
+ left: 0;
38665
+ }
38666
+ }
38667
+ .k-gantt-tooltip-validation-row {
38668
+ display: flex;
38669
+ flex-direction: row;
38670
+ justify-content: space-between;
38671
+ }
38672
+ .k-gantt-tooltip-validation-label {
38673
+ display: inline-flex;
38674
+ white-space: nowrap;
38675
+ overflow: hidden;
38676
+ text-overflow: ellipsis;
38677
+ }
38678
+ .k-gantt-tooltip-validation-value {
38679
+ font-weight: $font-weight-bold;
38680
+ }
38556
38681
  }
38557
38682
 
38558
38683
  @include exports("gantt/export") {
@@ -38598,7 +38723,8 @@ $gantt-offset-resize-handler-top: 45% !default;
38598
38723
 
38599
38724
  @include exports("gantt/rtl") {
38600
38725
 
38601
- .k-rtl {
38726
+ .k-rtl,
38727
+ [dir="rtl"] {
38602
38728
 
38603
38729
  .k-gantt-rows,
38604
38730
  .k-gantt-columns {
@@ -38677,6 +38803,11 @@ $gantt-offset-resize-handler-top: 45% !default;
38677
38803
  .k-gantt-timeline .k-milestone-wrap .k-task-start {
38678
38804
  right: $gantt-rtl-milestone-dot-start-margin-x;
38679
38805
  }
38806
+
38807
+ .k-gantt-tooltip-validation::before {
38808
+ left: auto;
38809
+ right: 0;
38810
+ }
38680
38811
  }
38681
38812
  }
38682
38813
 
@@ -38931,7 +39062,6 @@ $gantt-offset-resize-handler-top: 45% !default;
38931
39062
  }
38932
39063
 
38933
39064
  // Tooltips
38934
-
38935
39065
  .k-offset-tooltip-delayed {
38936
39066
  @include fill(
38937
39067
  $bg: $gantt-delayed-bg
@@ -38943,6 +39073,22 @@ $gantt-offset-resize-handler-top: 45% !default;
38943
39073
  $bg: $gantt-planned-bg
38944
39074
  );
38945
39075
  }
39076
+
39077
+ .k-gantt-tooltip-validation {
39078
+ &::before {
39079
+ background-color: $gantt-validation-tooltip-border;
39080
+ }
39081
+ }
39082
+ .k-gantt-tooltip-valid {
39083
+ &::before {
39084
+ background-color: $gantt-validation-tooltip-valid-border;
39085
+ }
39086
+ }
39087
+ .k-gantt-tooltip-invalid {
39088
+ &::before {
39089
+ background-color: $gantt-validation-tooltip-invalid-border;
39090
+ }
39091
+ }
38946
39092
  }
38947
39093
 
38948
39094
  // #endregion
@@ -39006,7 +39152,7 @@ $scheduler-footer-border: $toolbar-border !default;
39006
39152
  $scheduler-footer-gradient: $toolbar-gradient !default;
39007
39153
 
39008
39154
  $scheduler-event-min-height: 25px !default;
39009
- $scheduler-event-border-radius: $border-radius !default;
39155
+ $scheduler-event-border-radius: $kendo-border-radius-md !default;
39010
39156
  $scheduler-event-line-height: calc( #{$scheduler-event-min-height} - (2 * #{$padding-y-sm}) ) !default;
39011
39157
 
39012
39158
  $scheduler-event-bg: tint( $selected-bg, 2 ) !default;
@@ -39073,7 +39219,7 @@ $scheduler-tooltip-events-gap: $padding-y !default;
39073
39219
 
39074
39220
  $scheduler-tooltip-event-padding-x: $padding-x-sm !default;
39075
39221
  $scheduler-tooltip-event-padding-y: $padding-y-sm !default;
39076
- $scheduler-tooltip-event-border-radius: $border-radius !default;
39222
+ $scheduler-tooltip-event-border-radius: $kendo-border-radius-md !default;
39077
39223
  $scheduler-tooltip-event-gap: $padding-x-sm !default;
39078
39224
 
39079
39225
  $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
@@ -39476,7 +39622,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
39476
39622
  // Appointments
39477
39623
  kendo-scheduler .k-event,
39478
39624
  .k-event {
39479
- @include border-radius( $border-radius );
39625
+ @include border-radius( $kendo-border-radius );
39480
39626
  min-height: $scheduler-event-min-height;
39481
39627
  box-sizing: border-box;
39482
39628
  border-width: 0;
@@ -41549,7 +41695,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
41549
41695
  display: inline-block;
41550
41696
  text-align: center;
41551
41697
  padding: $timeline-flag-padding-y $timeline-flag-padding-x;
41552
- border-radius: $border-radius;
41698
+ border-radius: $kendo-border-radius;
41553
41699
  line-height: $timeline-flag-line-height;
41554
41700
  min-width: $timeline-flag-min-width;
41555
41701
  max-width: $timeline-flag-max-width;
@@ -41613,7 +41759,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
41613
41759
  }
41614
41760
 
41615
41761
  &::-webkit-scrollbar-thumb {
41616
- border-radius: $border-radius;
41762
+ border-radius: $kendo-border-radius;
41617
41763
  }
41618
41764
  }
41619
41765
  }
@@ -41657,7 +41803,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
41657
41803
  height: 100%;
41658
41804
  width: $timeline-track-size;
41659
41805
  transform: translateX(-50%);
41660
- border-radius: $border-radius-lg;
41806
+ border-radius: $kendo-border-radius-lg;
41661
41807
  }
41662
41808
 
41663
41809
  .k-timeline-flag-wrap {
@@ -43027,7 +43173,7 @@ $treemap-line-height: $line-height !default;
43027
43173
  }
43028
43174
 
43029
43175
  .k-chart-tooltip {
43030
- @include border-radius( $border-radius );
43176
+ @include border-radius( $kendo-border-radius-md );
43031
43177
  font-size: $chart-tooltip-font-size;
43032
43178
  line-height: $line-height;
43033
43179
  padding: $tooltip-padding-y $tooltip-padding-x;
@@ -43135,7 +43281,7 @@ $treemap-line-height: $line-height !default;
43135
43281
  }
43136
43282
 
43137
43283
  .k-navigator-hint .k-scroll {
43138
- @include border-radius( $border-radius );
43284
+ @include border-radius( $kendo-border-radius-md );
43139
43285
  position: absolute;
43140
43286
  height: 4px;
43141
43287
  }
@@ -43362,7 +43508,7 @@ $treemap-line-height: $line-height !default;
43362
43508
  base: $base-bg,
43363
43509
  background: $chart-bg,
43364
43510
 
43365
- border-radius: $border-radius,
43511
+ border-radius: $kendo-border-radius-md,
43366
43512
 
43367
43513
  normal-background: $base-bg,
43368
43514
  normal-text-color: $base-text,
@@ -43891,7 +44037,7 @@ $orgchart-node-container-gap: $orgchart-spacer !default;
43891
44037
  $orgchart-node-group-padding-y: $orgchart-spacer !default;
43892
44038
  $orgchart-node-group-padding-x: $orgchart-node-group-padding-y !default;
43893
44039
  $orgchart-node-group-border-width: 1px !default;
43894
- $orgchart-node-group-border-radius: $border-radius !default;
44040
+ $orgchart-node-group-border-radius: $kendo-border-radius-md !default;
43895
44041
  $orgchart-node-group-bg: $base-bg !default;
43896
44042
  $orgchart-node-group-text: $base-text !default;
43897
44043
  $orgchart-node-group-border: $base-border !default;