@progress/kendo-theme-bootstrap 5.1.2-dev.6 → 5.2.1-dev.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 +351 -100
  2. package/dist/all.scss +274 -138
  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 +1 -0
  32. package/scss/orgchart/_variables.scss +1 -1
  33. package/scss/pivotgrid/_variables.scss +1 -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";
@@ -13206,6 +13278,8 @@ $kendo-chip-list-sizes: (
13206
13278
 
13207
13279
  // Chip content
13208
13280
  .k-chip-content {
13281
+ padding: .5em 0;
13282
+ margin: -.5em 0;
13209
13283
  min-width: 0;
13210
13284
  display: flex;
13211
13285
  flex-flow: row nowrap;
@@ -13485,7 +13559,7 @@ $kendo-chip-list-sizes: (
13485
13559
  // #endregion
13486
13560
  // #region @import "_variables.scss"; -> packages/bootstrap/scss/color-preview/_variables.scss
13487
13561
  // Color Preview
13488
- $color-preview-border-radius: $border-radius !default;
13562
+ $color-preview-border-radius: $kendo-border-radius-md !default;
13489
13563
  $color-preview-border-width: 1px !default;
13490
13564
  $color-preview-bg: null !default;
13491
13565
  $color-preview-text: null !default;
@@ -13654,7 +13728,7 @@ $loader-secondary-bg: #212529 !default;
13654
13728
  $loader-container-panel-border-width: 1px !default;
13655
13729
  $loader-container-panel-border-style: solid !default;
13656
13730
  $loader-container-panel-border-color: $component-border !default;
13657
- $loader-container-panel-border-radius: $border-radius !default;
13731
+ $loader-container-panel-border-radius: $kendo-border-radius-md !default;
13658
13732
  $loader-container-panel-bg: $white !default;
13659
13733
 
13660
13734
  $loader-container-padding-sm: map-get( $spacing, 4 ) !default;
@@ -14182,7 +14256,7 @@ $loader-container-font-size-lg: $font-size-lg !default;
14182
14256
  // #region @import "_variables.scss"; -> packages/bootstrap/scss/skeleton/_variables.scss
14183
14257
  // Skeleton
14184
14258
  $skeleton-text-transform: scale( 1, .6 ) !default;
14185
- $skeleton-text-border-radius: $border-radius !default;
14259
+ $skeleton-text-border-radius: $kendo-border-radius-md !default;
14186
14260
 
14187
14261
  $skeleton-rect-border-radius: 0 !default;
14188
14262
 
@@ -14811,7 +14885,7 @@ $tooltip-error-border: $tooltip-error-bg !default;
14811
14885
  }
14812
14886
 
14813
14887
  .k-context-menu {
14814
- @include border-radius( $border-radius );
14888
+ @include border-radius( $kendo-border-radius-md );
14815
14889
  }
14816
14890
 
14817
14891
  .k-header {
@@ -15447,7 +15521,7 @@ $actions-gradient: null !default;
15447
15521
  // #region @import "../window/_variables.scss"; -> packages/bootstrap/scss/window/_variables.scss
15448
15522
  // Window
15449
15523
  $window-border-width: 1px !default;
15450
- $window-border-radius: $border-radius !default;
15524
+ $window-border-radius: $kendo-border-radius-md !default;
15451
15525
  $window-font-family: $font-family !default;
15452
15526
  $window-font-size: $font-size !default;
15453
15527
  $window-line-height: $line-height !default;
@@ -15710,11 +15784,6 @@ $fieldset-legend-border: null !default;
15710
15784
  display: inline-flex;
15711
15785
  width: 100%;
15712
15786
  }
15713
- .k-daterangepicker {
15714
- width: 100%;
15715
- flex-flow: column nowrap;
15716
- gap: 0;
15717
- }
15718
15787
  }
15719
15788
 
15720
15789
  // Form Buttons Container
@@ -16693,7 +16762,7 @@ $progressbar-chunk-border: $body-bg !default;
16693
16762
 
16694
16763
  // Base
16695
16764
  .k-progressbar {
16696
- @include border-radius( $border-radius );
16765
+ @include border-radius( $kendo-border-radius );
16697
16766
  --kendo-progressbar-progress: 0;
16698
16767
  border-width: $progressbar-border-width;
16699
16768
  border-style: solid;
@@ -18015,7 +18084,7 @@ $slider-disabled-opacity: null !default;
18015
18084
 
18016
18085
  .k-slider-track,
18017
18086
  .k-slider-selection {
18018
- @include border-radius( $border-radius );
18087
+ @include border-radius( $kendo-border-radius );
18019
18088
  }
18020
18089
 
18021
18090
  .k-slider-track {
@@ -18145,7 +18214,7 @@ $calendar-footer-padding-y: map-get( $spacing, 2 ) !default;
18145
18214
  $calendar-cell-padding-x: map-get( $spacing, 2 ) !default;
18146
18215
  $calendar-cell-padding-y: map-get( $spacing, 2 ) !default;
18147
18216
  $calendar-cell-line-height: $calendar-line-height !default;
18148
- $calendar-cell-border-radius: $border-radius !default;
18217
+ $calendar-cell-border-radius: $kendo-border-radius-md !default;
18149
18218
 
18150
18219
  $calendar-header-cell-padding-x: null !default;
18151
18220
  $calendar-header-cell-padding-y: null !default;
@@ -18592,6 +18661,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
18592
18661
  line-height: $calendar-navigation-item-height;
18593
18662
  cursor: pointer;
18594
18663
  padding: 0 1em;
18664
+ overflow: hidden;
18665
+ white-space: nowrap;
18666
+ text-overflow: clip;
18595
18667
  }
18596
18668
  }
18597
18669
 
@@ -19723,7 +19795,7 @@ $colorgradient-spacer: map-get( $spacing, 4 ) !default;
19723
19795
 
19724
19796
  $colorgradient-width: 328px !default;
19725
19797
  $colorgradient-border-width: 1px !default;
19726
- $colorgradient-border-radius: $border-radius !default;
19798
+ $colorgradient-border-radius: $kendo-border-radius-md !default;
19727
19799
  $colorgradient-padding-y: $colorgradient-spacer !default;
19728
19800
  $colorgradient-padding-x: $colorgradient-padding-y !default;
19729
19801
  $colorgradient-gap: $colorgradient-spacer !default;
@@ -19737,7 +19809,7 @@ $colorgradient-border: $component-border !default;
19737
19809
  $colorgradient-focus-border: $hovered-border !default;
19738
19810
  $colorgradient-focus-shadow: null !default;
19739
19811
 
19740
- $colorgradient-canvas-border-radius: $border-radius !default;
19812
+ $colorgradient-canvas-border-radius: $kendo-border-radius-md !default;
19741
19813
  $colorgradient-canvas-gap: map-get( $spacing, 3 ) !default;
19742
19814
  $colorgradient-canvas-rectangle-height: 180px !default;
19743
19815
 
@@ -19909,6 +19981,10 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 2 ) !default;
19909
19981
  .k-numerictextbox {
19910
19982
  width: $colorgradient-input-width;
19911
19983
  }
19984
+
19985
+ .k-input-inner {
19986
+ text-overflow: clip;
19987
+ }
19912
19988
  }
19913
19989
 
19914
19990
  // Contrast
@@ -20090,7 +20166,7 @@ $coloreditor-spacer: map-get( $spacing, 4 ) !default;
20090
20166
 
20091
20167
  $coloreditor-min-width: 328px !default;
20092
20168
  $coloreditor-border-width: 1px !default;
20093
- $coloreditor-border-radius: $border-radius !default;
20169
+ $coloreditor-border-radius: $kendo-border-radius-md !default;
20094
20170
  $coloreditor-font-family: $font-family !default;
20095
20171
  $coloreditor-font-size: $font-size !default;
20096
20172
  $coloreditor-line-height: $line-height !default;
@@ -23524,7 +23600,7 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
23524
23600
  $kendo-fab-border-width: 1px !default;
23525
23601
  /// Border radius of the FAB.
23526
23602
  /// @group floating-action-button
23527
- $kendo-fab-border-radius: $border-radius / 2 !default;
23603
+ $kendo-fab-border-radius: $kendo-border-radius / 2 !default;
23528
23604
  /// Font family of the FAB.
23529
23605
  /// @group floating-action-button
23530
23606
  $kendo-fab-font-family: $font-family !default;
@@ -25096,6 +25172,7 @@ $notification-border: $component-border !default;
25096
25172
  @function notification-theme( $colors ) {
25097
25173
  $_theme: ();
25098
25174
 
25175
+ // sass-lint:disable-block indentation
25099
25176
  @each $name, $color in $colors {
25100
25177
  $_theme: map-merge(( $name: (
25101
25178
  color: shade( $color, 6 ),
@@ -26421,7 +26498,7 @@ $breadcrumb-delimiter-icon-padding-y: 0px !default;
26421
26498
 
26422
26499
  $breadcrumb-link-padding-x: $padding-x-lg / 2 !default;
26423
26500
  $breadcrumb-link-padding-y: $padding-y !default;
26424
- $breadcrumb-link-border-radius: $border-radius !default;
26501
+ $breadcrumb-link-border-radius: $kendo-border-radius-md !default;
26425
26502
 
26426
26503
  $breadcrumb-icon-link-padding-x: $breadcrumb-link-padding-x !default;
26427
26504
  $breadcrumb-icon-link-padding-y: $breadcrumb-icon-link-padding-x !default;
@@ -26996,6 +27073,11 @@ $pager-dropdown-width: 5em !default;
26996
27073
  width: $pager-dropdown-width;
26997
27074
  }
26998
27075
 
27076
+ .k-input-inner,
27077
+ .k-input-value-text {
27078
+ text-overflow: clip;
27079
+ }
27080
+
26999
27081
  .k-rtl &,
27000
27082
  [dir="rtl"] & {
27001
27083
  .k-dropdown-list,
@@ -27481,6 +27563,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
27481
27563
  display: flex;
27482
27564
  align-items: center;
27483
27565
  justify-content: center;
27566
+ flex: none;
27484
27567
  position: relative;
27485
27568
  z-index: 1;
27486
27569
  overflow: visible;
@@ -27514,7 +27597,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
27514
27597
 
27515
27598
  // Step label
27516
27599
  .k-step-label {
27517
- max-width: 10em;
27600
+ max-width: clamp(100%, 10em, 100%);
27518
27601
  display: inline-flex;
27519
27602
  flex-wrap: wrap;
27520
27603
  align-items: center;
@@ -30620,7 +30703,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
30620
30703
 
30621
30704
  $grid-hierarchy-col-width: ($icon-size * 2) !default;
30622
30705
 
30623
- $grid-group-indicator-border-radius: $border-radius !default;
30706
+ $grid-group-indicator-border-radius: $kendo-border-radius-md !default;
30624
30707
  $grid-group-indicator-gap: $table-cell-padding-y !default;
30625
30708
 
30626
30709
  $grid-grouping-row-border-top: 1px !default;
@@ -32081,7 +32164,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
32081
32164
 
32082
32165
  // Grouping header
32083
32166
  .k-grouping-header .k-group-indicator {
32084
- @include border-radius( $border-radius );
32167
+ @include border-radius( $kendo-border-radius-md );
32085
32168
  }
32086
32169
  }
32087
32170
 
@@ -32838,9 +32921,9 @@ $spreadsheet-insert-image-dialog-preview-width: 355px !default;
32838
32921
  $spreadsheet-insert-image-dialog-preview-height: 230px !default;
32839
32922
  $spreadsheet-insert-image-dialog-preview-img: "image-default.png" !default;
32840
32923
  $spreadsheet-insert-image-dialog-preview-border: $component-border !default;
32841
- $spreadsheet-insert-image-dialog-preview-border-radius: $border-radius !default;
32924
+ $spreadsheet-insert-image-dialog-preview-border-radius: $kendo-border-radius-md !default;
32842
32925
  $spreadsheet-insert-image-dialog-preview-overlay-shadow: inset 0 0 0 2000px rgba(0, 0, 0, .5) !default;
32843
- $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;
32844
32927
  $spreadsheet-insert-image-dialog-overlay-hovered-text: $component-bg !default;
32845
32928
 
32846
32929
  $spreadsheet-drawing-handle-width: 6px !default;
@@ -32850,7 +32933,7 @@ $spreadsheet-drawing-handle-border-width: 1px !default;
32850
32933
  $spreadsheet-drawing-handle-outline-color: $primary !default;
32851
32934
  $spreadsheet-drawing-handle-border-color: $selected-bg !default;
32852
32935
  $spreadsheet-drawing-handle-bg: $primary !default;
32853
- $spreadsheet-drawing-handle-border-radius: $border-radius-lg !default;
32936
+ $spreadsheet-drawing-handle-border-radius: $kendo-border-radius-lg !default;
32854
32937
 
32855
32938
  $spreadsheet-drawing-outline-style: solid !default;
32856
32939
  $spreadsheet-drawing-outline-width: 2px !default;
@@ -32959,10 +33042,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
32959
33042
  min-width: $form-line-height * 1em;
32960
33043
  }
32961
33044
 
32962
- .k-input,
32963
- .k-picker {
32964
- width: 5em;
32965
- }
32966
33045
  .k-color-picker {
32967
33046
  width: min-content;
32968
33047
  }
@@ -33437,7 +33516,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
33437
33516
  box-sizing: border-box;
33438
33517
  }
33439
33518
  .k-spreadsheet-filter {
33440
- @include border-radius( $border-radius );
33519
+ @include border-radius( $kendo-border-radius );
33441
33520
  line-height: 1;
33442
33521
  position: absolute;
33443
33522
  cursor: pointer;
@@ -34192,7 +34271,7 @@ $pivotgrid-configurator-button-size: calc( #{$pivotgrid-line-height * 1em} + #{$
34192
34271
  $pivotgrid-calculated-field-padding-x: $pivotgrid-spacer !default;
34193
34272
  $pivotgrid-calculated-field-padding-y: $pivotgrid-spacer !default;
34194
34273
  $pivotgrid-calculated-field-border-width: 1px !default;
34195
- $pivotgrid-calculated-field-border-radius: $border-radius !default;
34274
+ $pivotgrid-calculated-field-border-radius: $kendo-border-radius-md !default;
34196
34275
  $pivotgrid-calculated-field-gap: $pivotgrid-spacer !default;
34197
34276
 
34198
34277
  $pivotgrid-calculated-field-bg: $component-bg !default;
@@ -36115,7 +36194,7 @@ $taskboard-columns-container-gap: $taskboard-spacer !default;
36115
36194
 
36116
36195
  $taskboard-column-width: 320px !default;
36117
36196
  $taskboard-column-border-width: 1px !default;
36118
- $taskboard-column-border-radius: $border-radius-sm !default;
36197
+ $taskboard-column-border-radius: $kendo-border-radius-sm !default;
36119
36198
  $taskboard-column-bg: if( $dark-theme, $gray-900, $gray-100 ) !default;
36120
36199
  $taskboard-column-text: null !default;
36121
36200
  $taskboard-column-border: transparent !default;
@@ -36667,7 +36746,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
36667
36746
 
36668
36747
  // Inline editor
36669
36748
  .k-editor-inline {
36670
- @include border-radius( $border-radius );
36749
+ @include border-radius( $kendo-border-radius-md );
36671
36750
  padding: $padding-y-sm $padding-x-sm;
36672
36751
  border: 1px solid transparent;
36673
36752
  word-wrap: break-word;
@@ -37088,7 +37167,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
37088
37167
  white-space: nowrap;
37089
37168
  overflow: hidden;
37090
37169
  cursor: pointer;
37091
- @include border-radius( $border-radius );
37170
+ @include border-radius( $kendo-border-radius-md );
37092
37171
 
37093
37172
  .k-i-file,
37094
37173
  .k-i-folder {
@@ -37560,6 +37639,11 @@ $imageeditor-crop-overlay-bg: rgba(black, .3) !default;
37560
37639
  box-sizing: border-box;
37561
37640
  flex: none;
37562
37641
  overflow-y: auto;
37642
+
37643
+ .k-input-inner,
37644
+ .k-input-value-text {
37645
+ text-overflow: clip;
37646
+ }
37563
37647
  }
37564
37648
 
37565
37649
 
@@ -37846,6 +37930,11 @@ $gantt-advanced-bg-lighter: tint($gantt-advanced-bg, 5) !default;
37846
37930
  $gantt-action-on-offset-text: #000000 !default;
37847
37931
  $gantt-offset-resize-handler-top: 45% !default;
37848
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
+
37849
37938
  // #endregion
37850
37939
  // #region @import "_layout.scss"; -> packages/bootstrap/scss/gantt/_layout.scss
37851
37940
  // #region @import "~@progress/kendo-theme-default/scss/gantt/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/gantt/_layout.scss
@@ -38357,7 +38446,7 @@ $gantt-offset-resize-handler-top: 45% !default;
38357
38446
  // Single task
38358
38447
  .k-single-wrap {}
38359
38448
  .k-task-single {
38360
- @include border-radius( $border-radius );
38449
+ @include border-radius( $kendo-border-radius-md );
38361
38450
  border-width: $gantt-task-border-width;
38362
38451
  border-style: solid;
38363
38452
  box-sizing: border-box;
@@ -38390,7 +38479,7 @@ $gantt-offset-resize-handler-top: 45% !default;
38390
38479
  }
38391
38480
  }
38392
38481
  .k-task-complete {
38393
- @include border-radius( $border-radius );
38482
+ @include border-radius( $kendo-border-radius-md );
38394
38483
  width: 20%;
38395
38484
  position: absolute;
38396
38485
  z-index: 1;
@@ -38460,7 +38549,6 @@ $gantt-offset-resize-handler-top: 45% !default;
38460
38549
  }
38461
38550
 
38462
38551
  // Planned position
38463
-
38464
38552
  .k-gantt-planned {
38465
38553
  .k-gantt-dependencies,
38466
38554
  .k-task-dot,
@@ -38491,7 +38579,6 @@ $gantt-offset-resize-handler-top: 45% !default;
38491
38579
  }
38492
38580
 
38493
38581
  // Planned element
38494
-
38495
38582
  .k-task-planned {
38496
38583
  margin: 0 0 $gantt-planned-margin-y;
38497
38584
  line-height: $gantt-planned-line-height;
@@ -38524,7 +38611,6 @@ $gantt-offset-resize-handler-top: 45% !default;
38524
38611
  }
38525
38612
 
38526
38613
  // Planned Tooltip
38527
-
38528
38614
  .k-planned-tooltip {
38529
38615
  .k-task-content {
38530
38616
  display: block;
@@ -38532,7 +38618,6 @@ $gantt-offset-resize-handler-top: 45% !default;
38532
38618
  }
38533
38619
 
38534
38620
  // Delay offset
38535
-
38536
38621
  .k-task-offset-wrap .k-task-content .k-resize-e {
38537
38622
  display: none;
38538
38623
  }
@@ -38563,6 +38648,36 @@ $gantt-offset-resize-handler-top: 45% !default;
38563
38648
  .k-task-offset:hover .k-resize-handle {
38564
38649
  visibility: visible;
38565
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
+ }
38566
38681
  }
38567
38682
 
38568
38683
  @include exports("gantt/export") {
@@ -38608,7 +38723,8 @@ $gantt-offset-resize-handler-top: 45% !default;
38608
38723
 
38609
38724
  @include exports("gantt/rtl") {
38610
38725
 
38611
- .k-rtl {
38726
+ .k-rtl,
38727
+ [dir="rtl"] {
38612
38728
 
38613
38729
  .k-gantt-rows,
38614
38730
  .k-gantt-columns {
@@ -38687,6 +38803,11 @@ $gantt-offset-resize-handler-top: 45% !default;
38687
38803
  .k-gantt-timeline .k-milestone-wrap .k-task-start {
38688
38804
  right: $gantt-rtl-milestone-dot-start-margin-x;
38689
38805
  }
38806
+
38807
+ .k-gantt-tooltip-validation::before {
38808
+ left: auto;
38809
+ right: 0;
38810
+ }
38690
38811
  }
38691
38812
  }
38692
38813
 
@@ -38941,7 +39062,6 @@ $gantt-offset-resize-handler-top: 45% !default;
38941
39062
  }
38942
39063
 
38943
39064
  // Tooltips
38944
-
38945
39065
  .k-offset-tooltip-delayed {
38946
39066
  @include fill(
38947
39067
  $bg: $gantt-delayed-bg
@@ -38953,6 +39073,22 @@ $gantt-offset-resize-handler-top: 45% !default;
38953
39073
  $bg: $gantt-planned-bg
38954
39074
  );
38955
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
+ }
38956
39092
  }
38957
39093
 
38958
39094
  // #endregion
@@ -39016,7 +39152,7 @@ $scheduler-footer-border: $toolbar-border !default;
39016
39152
  $scheduler-footer-gradient: $toolbar-gradient !default;
39017
39153
 
39018
39154
  $scheduler-event-min-height: 25px !default;
39019
- $scheduler-event-border-radius: $border-radius !default;
39155
+ $scheduler-event-border-radius: $kendo-border-radius-md !default;
39020
39156
  $scheduler-event-line-height: calc( #{$scheduler-event-min-height} - (2 * #{$padding-y-sm}) ) !default;
39021
39157
 
39022
39158
  $scheduler-event-bg: tint( $selected-bg, 2 ) !default;
@@ -39083,7 +39219,7 @@ $scheduler-tooltip-events-gap: $padding-y !default;
39083
39219
 
39084
39220
  $scheduler-tooltip-event-padding-x: $padding-x-sm !default;
39085
39221
  $scheduler-tooltip-event-padding-y: $padding-y-sm !default;
39086
- $scheduler-tooltip-event-border-radius: $border-radius !default;
39222
+ $scheduler-tooltip-event-border-radius: $kendo-border-radius-md !default;
39087
39223
  $scheduler-tooltip-event-gap: $padding-x-sm !default;
39088
39224
 
39089
39225
  $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
@@ -39486,7 +39622,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
39486
39622
  // Appointments
39487
39623
  kendo-scheduler .k-event,
39488
39624
  .k-event {
39489
- @include border-radius( $border-radius );
39625
+ @include border-radius( $kendo-border-radius );
39490
39626
  min-height: $scheduler-event-min-height;
39491
39627
  box-sizing: border-box;
39492
39628
  border-width: 0;
@@ -41559,7 +41695,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
41559
41695
  display: inline-block;
41560
41696
  text-align: center;
41561
41697
  padding: $timeline-flag-padding-y $timeline-flag-padding-x;
41562
- border-radius: $border-radius;
41698
+ border-radius: $kendo-border-radius;
41563
41699
  line-height: $timeline-flag-line-height;
41564
41700
  min-width: $timeline-flag-min-width;
41565
41701
  max-width: $timeline-flag-max-width;
@@ -41623,7 +41759,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
41623
41759
  }
41624
41760
 
41625
41761
  &::-webkit-scrollbar-thumb {
41626
- border-radius: $border-radius;
41762
+ border-radius: $kendo-border-radius;
41627
41763
  }
41628
41764
  }
41629
41765
  }
@@ -41667,7 +41803,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
41667
41803
  height: 100%;
41668
41804
  width: $timeline-track-size;
41669
41805
  transform: translateX(-50%);
41670
- border-radius: $border-radius-lg;
41806
+ border-radius: $kendo-border-radius-lg;
41671
41807
  }
41672
41808
 
41673
41809
  .k-timeline-flag-wrap {
@@ -43037,7 +43173,7 @@ $treemap-line-height: $line-height !default;
43037
43173
  }
43038
43174
 
43039
43175
  .k-chart-tooltip {
43040
- @include border-radius( $border-radius );
43176
+ @include border-radius( $kendo-border-radius-md );
43041
43177
  font-size: $chart-tooltip-font-size;
43042
43178
  line-height: $line-height;
43043
43179
  padding: $tooltip-padding-y $tooltip-padding-x;
@@ -43145,7 +43281,7 @@ $treemap-line-height: $line-height !default;
43145
43281
  }
43146
43282
 
43147
43283
  .k-navigator-hint .k-scroll {
43148
- @include border-radius( $border-radius );
43284
+ @include border-radius( $kendo-border-radius-md );
43149
43285
  position: absolute;
43150
43286
  height: 4px;
43151
43287
  }
@@ -43372,7 +43508,7 @@ $treemap-line-height: $line-height !default;
43372
43508
  base: $base-bg,
43373
43509
  background: $chart-bg,
43374
43510
 
43375
- border-radius: $border-radius,
43511
+ border-radius: $kendo-border-radius-md,
43376
43512
 
43377
43513
  normal-background: $base-bg,
43378
43514
  normal-text-color: $base-text,
@@ -43901,7 +44037,7 @@ $orgchart-node-container-gap: $orgchart-spacer !default;
43901
44037
  $orgchart-node-group-padding-y: $orgchart-spacer !default;
43902
44038
  $orgchart-node-group-padding-x: $orgchart-node-group-padding-y !default;
43903
44039
  $orgchart-node-group-border-width: 1px !default;
43904
- $orgchart-node-group-border-radius: $border-radius !default;
44040
+ $orgchart-node-group-border-radius: $kendo-border-radius-md !default;
43905
44041
  $orgchart-node-group-bg: $base-bg !default;
43906
44042
  $orgchart-node-group-text: $base-text !default;
43907
44043
  $orgchart-node-group-border: $base-border !default;