@progress/kendo-theme-default 5.1.2-dev.6 → 5.1.2-dev.7

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 (48) hide show
  1. package/dist/all.css +409 -180
  2. package/dist/all.scss +229 -127
  3. package/package.json +2 -2
  4. package/scss/_variables.scss +5 -4
  5. package/scss/badge/_variables.scss +3 -3
  6. package/scss/bottom-navigation/_variables.scss +1 -1
  7. package/scss/breadcrumb/_variables.scss +1 -1
  8. package/scss/button/_layout.scss +1 -0
  9. package/scss/calendar/_layout.scss +3 -0
  10. package/scss/calendar/_variables.scss +1 -1
  11. package/scss/card/_variables.scss +1 -1
  12. package/scss/chip/_layout.scss +2 -0
  13. package/scss/color-preview/_variables.scss +1 -1
  14. package/scss/coloreditor/_variables.scss +1 -1
  15. package/scss/colorgradient/_variables.scss +2 -2
  16. package/scss/common/_base.scss +2 -2
  17. package/scss/dataviz/_layout.scss +3 -3
  18. package/scss/editor/_layout.scss +2 -2
  19. package/scss/fab/_variables.scss +1 -1
  20. package/scss/forms/_layout.scss +0 -5
  21. package/scss/gantt/_layout.scss +39 -7
  22. package/scss/gantt/_theme.scss +16 -1
  23. package/scss/gantt/_variables.scss +5 -0
  24. package/scss/grid/_layout.scss +1 -1
  25. package/scss/list/_layout.scss +8 -0
  26. package/scss/listgroup/_variables.scss +1 -1
  27. package/scss/loader/_variables.scss +1 -1
  28. package/scss/notification/_variables.scss +2 -1
  29. package/scss/orgchart/_variables.scss +1 -1
  30. package/scss/pivotgrid/_variables.scss +1 -1
  31. package/scss/popup/_layout.scss +1 -1
  32. package/scss/popup/_theme.scss +1 -1
  33. package/scss/progressbar/_layout.scss +1 -1
  34. package/scss/scheduler/_layout.scss +1 -1
  35. package/scss/scheduler/_variables.scss +2 -2
  36. package/scss/skeleton/_variables.scss +1 -1
  37. package/scss/slider/_theme.scss +1 -1
  38. package/scss/spreadsheet/_layout.scss +1 -1
  39. package/scss/spreadsheet/_variables.scss +3 -3
  40. package/scss/stepper/_layout.scss +1 -1
  41. package/scss/tabstrip/_variables.scss +1 -1
  42. package/scss/taskboard/_variables.scss +2 -2
  43. package/scss/tilelayout/_variables.scss +1 -1
  44. package/scss/timeline/_layout.scss +3 -3
  45. package/scss/tooltip/_variables.scss +1 -1
  46. package/scss/treeview/_variables.scss +1 -1
  47. package/scss/utils/_border.scss +4 -4
  48. package/scss/utils/_flex.scss +98 -59
package/dist/all.scss CHANGED
@@ -1064,9 +1064,10 @@ $padding-x-lg: $padding-x * 1.5 !default;
1064
1064
  $padding-y-lg: $padding-y * 1.5 !default;
1065
1065
 
1066
1066
  /// Border radius for all components.
1067
- $border-radius: 2px !default;
1068
- $border-radius-sm: $border-radius / 2 !default;
1069
- $border-radius-lg: $border-radius * 2 !default;
1067
+ $kendo-border-radius: map-get( $spacing, 1 ) !default;
1068
+ $kendo-border-radius-sm: $kendo-border-radius - map-get( $spacing, thin ) !default;
1069
+ $kendo-border-radius-md: $kendo-border-radius !default;
1070
+ $kendo-border-radius-lg: $kendo-border-radius + map-get( $spacing, thin ) !default;
1070
1071
 
1071
1072
  $panel-padding-x: $padding-x !default;
1072
1073
  $panel-padding-y: $padding-y !default;
@@ -1348,7 +1349,7 @@ $invalid-shadow: null !default;
1348
1349
  $drag-clue-padding-x: $padding-x !default;
1349
1350
  $drag-clue-padding-y: $padding-y !default;
1350
1351
  $drag-clue-border-width: 1px !default;
1351
- $drag-clue-border-radius: $border-radius !default;
1352
+ $drag-clue-border-radius: $kendo-border-radius-md !default;
1352
1353
  $drag-clue-font-size: $font-size !default;
1353
1354
  $drag-clue-font-family: $font-family !default;
1354
1355
  $drag-clue-line-height: $line-height !default;
@@ -1737,7 +1738,7 @@ $display4-letter-spacing: null !default;
1737
1738
  // Panels
1738
1739
  .k-block,
1739
1740
  .k-panel {
1740
- @include border-radius( $border-radius );
1741
+ @include border-radius( $kendo-border-radius-md );
1741
1742
  @include fill(
1742
1743
  $panel-text,
1743
1744
  $panel-bg,
@@ -1749,7 +1750,7 @@ $display4-letter-spacing: null !default;
1749
1750
  box-sizing: border-box;
1750
1751
 
1751
1752
  > .k-header {
1752
- @include border-top-radius( $border-radius );
1753
+ @include border-top-radius( $kendo-border-radius-md );
1753
1754
  @include fill(
1754
1755
  $header-text,
1755
1756
  $header-bg,
@@ -3337,11 +3338,11 @@ $display4-letter-spacing: null !default;
3337
3338
  ) !default;
3338
3339
 
3339
3340
  $utils-border-radius: (
3340
- default: map-get( $spacing, 1 ),
3341
+ default: $kendo-border-radius-md,
3341
3342
  0: 0,
3342
- sm: ( map-get( $spacing, 1 ) / 4 ),
3343
- md: ( map-get( $spacing, 1 ) / 2 ),
3344
- lg: map-get( $spacing, 1 ),
3343
+ sm: $kendo-border-radius-sm,
3344
+ md: $kendo-border-radius-md,
3345
+ lg: $kendo-border-radius-lg,
3345
3346
  full: 9999px
3346
3347
  ) !default;
3347
3348
 
@@ -3459,48 +3460,48 @@ $display4-letter-spacing: null !default;
3459
3460
  /// @name k-d-flex
3460
3461
  /// @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.
3461
3462
  /// @group flex-layout
3462
- .k-d-flex { display: flex; }
3463
- .\!k-d-flex { display: flex !important; } // sass-lint:disable-line no-important class-name-format
3463
+ .k-d-flex { display: flex; }
3464
+ .\!k-d-flex { display: flex !important; } // sass-lint:disable-line no-important class-name-format
3464
3465
  /// @name k-d-inline-flex
3465
3466
  /// @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.
3466
3467
  /// @group flex-layout
3467
- .k-d-inline-flex { display: inline-flex; }
3468
- .\!k-d-inline-flex { display: inline-flex !important; } // sass-lint:disable-line no-important class-name-format
3468
+ .k-d-inline-flex { display: inline-flex; }
3469
+ .\!k-d-inline-flex { display: inline-flex !important; } // sass-lint:disable-line no-important class-name-format
3469
3470
  /// @name k-d-flex-row
3470
3471
  /// @description This is equivalent to `display: inline-flex` and `flex-direction: row`.
3471
3472
  /// @group flex-layout
3472
- .k-d-flex-row { @extend .k-d-flex, .k-flex-row; }
3473
- .\!k-d-flex-row { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
3473
+ .k-d-flex-row { @extend .k-d-flex, .k-flex-row; }
3474
+ .\!k-d-flex-row { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
3474
3475
  /// @name k-d-flex-col
3475
3476
  /// @description This is equivalent to `display: inline-flex` and `flex-direction: column`.
3476
3477
  /// @group flex-layout
3477
- .k-d-flex-col { @extend .k-d-flex, .k-flex-col; }
3478
- .\!k-d-flex-col { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
3478
+ .k-d-flex-col { @extend .k-d-flex, .k-flex-col; }
3479
+ .\!k-d-flex-col { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
3479
3480
  /// @name k-flex-row
3480
3481
  /// @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`.
3481
3482
  /// @group flex-layout
3482
- .k-flex-row { flex-direction: row; }
3483
- .\!k-flex-row { flex-direction: row !important; } // sass-lint:disable-line no-important class-name-format
3483
+ .k-flex-row { flex-direction: row; }
3484
+ .\!k-flex-row { flex-direction: row !important; } // sass-lint:disable-line no-important class-name-format
3484
3485
  /// @name k-flex-row-reverse
3485
3486
  /// @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`.
3486
3487
  /// @group flex-layout
3487
- .k-flex-row-reverse { flex-direction: row-reverse; }
3488
- .\!k-flex-row-reverse { flex-direction: row-reverse !important; } // sass-lint:disable-line no-important class-name-format
3488
+ .k-flex-row-reverse { flex-direction: row-reverse; }
3489
+ .\!k-flex-row-reverse { flex-direction: row-reverse !important; } // sass-lint:disable-line no-important class-name-format
3489
3490
  /// @name k-flex-col
3490
3491
  /// @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.
3491
3492
  /// @group flex-layout
3492
- .k-flex-col { flex-direction: column; }
3493
- .\!k-flex-col { flex-direction: column !important; } // sass-lint:disable-line no-important class-name-format
3493
+ .k-flex-col { flex-direction: column; }
3494
+ .\!k-flex-col { flex-direction: column !important; } // sass-lint:disable-line no-important class-name-format
3494
3495
  /// @name k-flex-col-reverse
3495
3496
  /// @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.
3496
3497
  /// @group flex-layout
3497
- .k-flex-col-reverse { flex-direction: column-reverse; }
3498
- .\!k-flex-col-reverse { flex-direction: column-reverse; } // sass-lint:disable-line no-important class-name-format
3498
+ .k-flex-col-reverse { flex-direction: column-reverse; }
3499
+ .\!k-flex-col-reverse { flex-direction: column-reverse !important; } // sass-lint:disable-line no-important class-name-format
3499
3500
 
3500
3501
 
3501
3502
  // Aliases
3502
- .k-flex-column { @extend .k-flex-col; }
3503
- .k-flex-column-reverse { @extend .k-flex-col-reverse; }
3503
+ .k-flex-column { @extend .k-flex-col; }
3504
+ .k-flex-column-reverse { @extend .k-flex-col-reverse; }
3504
3505
 
3505
3506
 
3506
3507
  // Flex wrap
@@ -3508,15 +3509,18 @@ $display4-letter-spacing: null !default;
3508
3509
  /// @name k-flex-wrap
3509
3510
  /// @description This is equivalent to `flex-wrap: wrap`. It allows flex items to wrap as needed onto multiple lines, from top to bottom.
3510
3511
  /// @group flex-layout
3511
- .k-flex-wrap { flex-wrap: wrap; }
3512
+ .k-flex-wrap { flex-wrap: wrap; }
3513
+ .\!k-flex-wrap { flex-wrap: wrap !important; } // sass-lint:disable-line no-important class-name-format
3512
3514
  /// @name k-flex-nowrap
3513
3515
  /// @description This is equivalent to `flex-wrap: nowrap`. All flex items will be on one line.
3514
3516
  /// @group flex-layout
3515
- .k-flex-nowrap { flex-wrap: nowrap; }
3517
+ .k-flex-nowrap { flex-wrap: nowrap; }
3518
+ .\!k-flex-nowrap { flex-wrap: nowrap !important; } // sass-lint:disable-line no-important class-name-format
3516
3519
  /// @name k-flex-wrap-reverse
3517
3520
  /// @description This is equivalent to `flex-wrap: wrap-reverse`. It allows flex items to wrap as needed onto multiple lines, from bottom to top.
3518
3521
  /// @group flex-layout
3519
- .k-flex-wrap-reverse { flex-wrap: wrap-reverse; }
3522
+ .k-flex-wrap-reverse { flex-wrap: wrap-reverse; }
3523
+ .\!k-flex-wrap-reverse { flex-wrap: wrap-reverse !important; } // sass-lint:disable-line no-important class-name-format
3520
3524
 
3521
3525
 
3522
3526
  // Flex, shrink, grow,
@@ -3524,80 +3528,116 @@ $display4-letter-spacing: null !default;
3524
3528
  /// @name k-flex-initial
3525
3529
  /// @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.
3526
3530
  /// @group flex-layout
3527
- .k-flex-initial { flex: 0 1 auto; }
3531
+ .k-flex-initial { flex: 0 1 auto; }
3532
+ .\!k-flex-initial { flex: 0 1 auto !important; } // sass-lint:disable-line no-important class-name-format
3528
3533
  /// @name k-flex-1
3529
3534
  /// @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.
3530
3535
  /// @group flex-layout
3531
- .k-flex-1 { flex: 1 1 0%; }
3536
+ .k-flex-1 { flex: 1 1 0%; }
3537
+ .\!k-flex-1 { flex: 1 1 0% !important; } // sass-lint:disable-line no-important class-name-format
3532
3538
  /// @name k-flex-auto
3533
3539
  /// @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`.
3534
3540
  /// @group flex-layout
3535
- .k-flex-auto { flex: 1 1 auto; }
3541
+ .k-flex-auto { flex: 1 1 auto; }
3542
+ .\!k-flex-auto { flex: 1 1 auto !important; } // sass-lint:disable-line no-important class-name-format
3536
3543
  /// @name k-flex-none
3537
3544
  /// @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.
3538
3545
  /// @group flex-layout
3539
- .k-flex-none { flex: none; }
3546
+ .k-flex-none { flex: none; }
3547
+ .\!k-flex-none { flex: none !important; } // sass-lint:disable-line no-important class-name-format
3540
3548
  /// @name k-flex-grow
3541
3549
  /// @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.
3542
3550
  /// @group flex-layout
3543
- .k-flex-grow { flex-grow: 1; }
3551
+ .k-flex-grow { flex-grow: 1; }
3552
+ .\!k-flex-grow { flex-grow: 1 !important; } // sass-lint:disable-line no-important class-name-format
3544
3553
  /// @name k-flex-grow-0
3545
3554
  /// @description This is equivalent to `flex-grow: 0`. The item will not grow.
3546
3555
  /// @group flex-layout
3547
- .k-flex-grow-0 { flex-grow: 0; }
3556
+ .k-flex-grow-0 { flex-grow: 0; }
3557
+ .\!k-flex-grow-0 { flex-grow: 0 !important; } // sass-lint:disable-line no-important class-name-format
3548
3558
  /// @name k-flex-shrink
3549
3559
  /// @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.
3550
3560
  /// @group flex-layout
3551
- .k-flex-shrink { flex-shrink: 1; }
3561
+ .k-flex-shrink { flex-shrink: 1; }
3562
+ .\!k-flex-shrink { flex-shrink: 1 !important; } // sass-lint:disable-line no-important class-name-format
3552
3563
  /// @name k-flex-shrink-0
3553
3564
  /// @description This is equivalent to `flex-shrink: 0`. The item will not shrink.
3554
3565
  /// @group flex-layout
3555
- .k-flex-shrink-0 { flex-shrink: 0; }
3566
+ .k-flex-shrink-0 { flex-shrink: 0; }
3567
+ .\!k-flex-shrink-0 { flex-shrink: 0 !important; } // sass-lint:disable-line no-important class-name-format
3556
3568
  /// @name k-flex-basis-auto
3557
3569
  /// @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.
3558
3570
  /// @group flex-layout
3559
- .k-flex-basis-auto { flex-basis: auto; }
3571
+ .k-flex-basis-auto { flex-basis: auto; }
3572
+ .\!k-flex-basis-auto { flex-basis: auto !important; } // sass-lint:disable-line no-important class-name-format
3560
3573
  /// @name k-flex-basis-0
3561
3574
  /// @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.
3562
3575
  /// @group flex-layout
3563
- .k-flex-basis-0 { flex-basis: 0%; }
3576
+ .k-flex-basis-0 { flex-basis: 0%; }
3577
+ .\!k-flex-basis-0 { flex-basis: 0% !important; } // sass-lint:disable-line no-important class-name-format
3564
3578
 
3565
3579
 
3566
3580
  // Flex align
3567
- .k-align-items-start { align-items: flex-start; }
3568
- .k-align-items-end { align-items: flex-end; }
3569
- .k-align-items-center { align-items: center; }
3570
- .k-align-items-stretch { align-items: stretch; }
3571
- .k-align-items-baseline { align-items: baseline; }
3572
-
3573
- .k-align-content-start { align-content: flex-start; }
3574
- .k-align-content-end { align-content: flex-end; }
3575
- .k-align-content-center { align-content: center; }
3576
- .k-align-content-stretch { align-content: stretch; }
3577
- .k-align-content-baseline { align-content: baseline; }
3578
-
3579
- .k-align-self-start { align-self: flex-start; }
3580
- .k-align-self-end { align-self: flex-end; }
3581
- .k-align-self-center { align-self: center; }
3582
- .k-align-self-stretch { align-self: stretch; }
3583
- .k-align-self-baseline { align-self: baseline; }
3581
+ .k-align-items-start { align-items: flex-start; }
3582
+ .\!k-align-items-start { align-items: flex-start !important; } // sass-lint:disable-line no-important class-name-format
3583
+ .k-align-items-end { align-items: flex-end; }
3584
+ .\!k-align-items-end { align-items: flex-end !important; } // sass-lint:disable-line no-important class-name-format
3585
+ .k-align-items-center { align-items: center; }
3586
+ .\!k-align-items-center { align-items: center !important; } // sass-lint:disable-line no-important class-name-format
3587
+ .k-align-items-stretch { align-items: stretch; }
3588
+ .\!k-align-items-stretch { align-items: stretch !important; } // sass-lint:disable-line no-important class-name-format
3589
+ .k-align-items-baseline { align-items: baseline; }
3590
+ .\!k-align-items-baseline { align-items: baseline !important; } // sass-lint:disable-line no-important class-name-format
3591
+
3592
+ .k-align-content-start { align-content: flex-start; }
3593
+ .\!k-align-content-start { align-content: flex-start !important; } // sass-lint:disable-line no-important class-name-format
3594
+ .k-align-content-end { align-content: flex-end; }
3595
+ .\!k-align-content-end { align-content: flex-end !important; } // sass-lint:disable-line no-important class-name-format
3596
+ .k-align-content-center { align-content: center; }
3597
+ .\!k-align-content-center { align-content: center !important; } // sass-lint:disable-line no-important class-name-format
3598
+ .k-align-content-stretch { align-content: stretch; }
3599
+ .\!k-align-content-stretch { align-content: stretch !important; } // sass-lint:disable-line no-important class-name-format
3600
+ .k-align-content-baseline { align-content: baseline; }
3601
+ .\!k-align-content-baseline { align-content: baseline !important; } // sass-lint:disable-line no-important class-name-format
3602
+
3603
+ .k-align-self-start { align-self: flex-start; }
3604
+ .\!k-align-self-start { align-self: flex-start !important; } // sass-lint:disable-line no-important class-name-format
3605
+ .k-align-self-end { align-self: flex-end; }
3606
+ .\!k-align-self-end { align-self: flex-end !important; } // sass-lint:disable-line no-important class-name-format
3607
+ .k-align-self-center { align-self: center; }
3608
+ .\!k-align-self-center { align-self: center !important; } // sass-lint:disable-line no-important class-name-format
3609
+ .k-align-self-stretch { align-self: stretch; }
3610
+ .\!k-align-self-stretch { align-self: stretch !important; } // sass-lint:disable-line no-important class-name-format
3611
+ .k-align-self-baseline { align-self: baseline; }
3612
+ .\!k-align-self-baseline { align-self: baseline !important; } // sass-lint:disable-line no-important class-name-format
3584
3613
 
3585
3614
 
3586
3615
  // Justify content
3587
- .k-justify-content-start { justify-content: flex-start; }
3588
- .k-justify-content-end { justify-content: flex-end; }
3589
- .k-justify-content-center { justify-content: center; }
3590
- .k-justify-content-between { justify-content: space-between; }
3591
- .k-justify-content-around { justify-content: space-around; }
3592
- .k-justify-content-evenly { justify-content: space-evenly; }
3593
- .k-justify-content-stretch > * { flex: 1 0 0%; }
3616
+ .k-justify-content-start { justify-content: flex-start; }
3617
+ .\!k-justify-content-start { justify-content: flex-start !important; } // sass-lint:disable-line no-important class-name-format
3618
+ .k-justify-content-end { justify-content: flex-end; }
3619
+ .\!k-justify-content-end { justify-content: flex-end !important; } // sass-lint:disable-line no-important class-name-format
3620
+ .k-justify-content-center { justify-content: center; }
3621
+ .\!k-justify-content-center { justify-content: center !important; } // sass-lint:disable-line no-important class-name-format
3622
+ .k-justify-content-between { justify-content: space-between; }
3623
+ .\!k-justify-content-between { justify-content: space-between !important; } // sass-lint:disable-line no-important class-name-format
3624
+ .k-justify-content-around { justify-content: space-around; }
3625
+ .\!k-justify-content-around { justify-content: space-around !important; } // sass-lint:disable-line no-important class-name-format
3626
+ .k-justify-content-evenly { justify-content: space-evenly; }
3627
+ .\!k-justify-content-evenly { justify-content: space-evenly !important; } // sass-lint:disable-line no-important class-name-format
3628
+ .k-justify-content-stretch > * { flex: 1 0 0%; }
3629
+ .\!k-justify-content-stretch > * { flex: 1 0 0% !important; } // sass-lint:disable-line no-important class-name-format
3594
3630
 
3595
3631
 
3596
3632
  // Justify items
3597
- .k-justify-items-start { justify-items: flex-start; }
3598
- .k-justify-items-end { justify-items: flex-end; }
3599
- .k-justify-items-center { justify-items: center; }
3600
- .k-justify-items-stretch { justify-items: stretch; }
3633
+ .k-justify-items-start { justify-items: flex-start; }
3634
+ .\!k-justify-items-start { justify-items: flex-start !important; } // sass-lint:disable-line no-important class-name-format
3635
+ .k-justify-items-end { justify-items: flex-end; }
3636
+ .\!k-justify-items-end { justify-items: flex-end !important; } // sass-lint:disable-line no-important class-name-format
3637
+ .k-justify-items-center { justify-items: center; }
3638
+ .\!k-justify-items-center { justify-items: center !important; } // sass-lint:disable-line no-important class-name-format
3639
+ .k-justify-items-stretch { justify-items: stretch; }
3640
+ .\!k-justify-items-stretch { justify-items: stretch !important; } // sass-lint:disable-line no-important class-name-format
3601
3641
 
3602
3642
  }
3603
3643
 
@@ -6802,6 +6842,14 @@ $kendo-checkbox-ripple-opacity: .25 !default;
6802
6842
  right: 0;
6803
6843
  }
6804
6844
  }
6845
+ .k-list-item-text,
6846
+ .k-list-optionlabel {
6847
+ &::before {
6848
+ content: "\200b";
6849
+ width: 0px;
6850
+ overflow: hidden;
6851
+ }
6852
+ }
6805
6853
  .k-list-optionlabel {
6806
6854
  @extend .k-list-item;
6807
6855
  }
@@ -7059,7 +7107,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
7059
7107
  // #region @import "_variables.scss"; -> packages/default/scss/listgroup/_variables.scss
7060
7108
  // Listgroup
7061
7109
  $listgroup-border-width: 1px !default;
7062
- $listgroup-border-radius: $border-radius !default;
7110
+ $listgroup-border-radius: $kendo-border-radius-md !default;
7063
7111
 
7064
7112
  $listgroup-font-size: $font-size !default;
7065
7113
  $listgroup-line-height: $line-height !default;
@@ -7400,7 +7448,7 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
7400
7448
  }
7401
7449
  }
7402
7450
  .k-animation-container {
7403
- @include border-bottom-radius-only( $border-radius );
7451
+ @include border-bottom-radius-only( $kendo-border-radius-md );
7404
7452
 
7405
7453
  .k-popup {}
7406
7454
  }
@@ -7455,7 +7503,7 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
7455
7503
  }
7456
7504
 
7457
7505
  .k-animation-container {
7458
- @include border-bottom-radius-only( $border-radius );
7506
+ @include border-bottom-radius-only( $kendo-border-radius );
7459
7507
  }
7460
7508
 
7461
7509
  }
@@ -7588,21 +7636,21 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
7588
7636
  $badge-padding-x: $padding-x-sm !default;
7589
7637
  $badge-padding-y: $badge-padding-x !default;
7590
7638
  $badge-border-width: 1px !default;
7591
- $badge-border-radius: $border-radius !default;
7639
+ $badge-border-radius: $kendo-border-radius-md !default;
7592
7640
  $badge-font-size: $font-size-xs !default;
7593
7641
  $badge-line-height: 1 !default;
7594
7642
 
7595
7643
  $badge-padding-x-sm: ( $badge-padding-x / 2 ) !default;
7596
7644
  $badge-padding-y-sm: ( $badge-padding-y / 2 ) !default;
7597
7645
  $badge-border-width-sm: $badge-border-width !default;
7598
- $badge-border-radius-sm: $border-radius-sm !default;
7646
+ $badge-border-radius-sm: $kendo-border-radius-sm !default;
7599
7647
  $badge-font-size-sm: $font-size-xs !default;
7600
7648
  $badge-line-height-sm: 1 !default;
7601
7649
 
7602
7650
  $badge-padding-x-lg: ( $badge-padding-x * 1.5 ) !default;
7603
7651
  $badge-padding-y-lg: ( $badge-padding-y * 1.5 ) !default;
7604
7652
  $badge-border-width-lg: $badge-border-width !default;
7605
- $badge-border-radius-lg: $border-radius-lg !default;
7653
+ $badge-border-radius-lg: $kendo-border-radius-lg !default;
7606
7654
  $badge-font-size-lg: $font-size-sm !default;
7607
7655
  $badge-line-height-lg: 1 !default;
7608
7656
 
@@ -8078,6 +8126,7 @@ $kendo-button-transition: color .2s ease-in-out !default;
8078
8126
  box-sizing: border-box;
8079
8127
  border-width: $kendo-button-border-width;
8080
8128
  border-style: solid;
8129
+ border-radius: $kendo-button-border-radius;
8081
8130
  color: inherit;
8082
8131
  background: none;
8083
8132
  font-family: $kendo-button-font-family;
@@ -10993,6 +11042,8 @@ $kendo-chip-list-sizes: (
10993
11042
 
10994
11043
  // Chip content
10995
11044
  .k-chip-content {
11045
+ padding: .5em 0;
11046
+ margin: -.5em 0;
10996
11047
  min-width: 0;
10997
11048
  display: flex;
10998
11049
  flex-flow: row nowrap;
@@ -11267,7 +11318,7 @@ $kendo-chip-list-sizes: (
11267
11318
  // #endregion
11268
11319
  // #region @import "_variables.scss"; -> packages/default/scss/color-preview/_variables.scss
11269
11320
  // Color Preview
11270
- $color-preview-border-radius: $border-radius !default;
11321
+ $color-preview-border-radius: $kendo-border-radius-md !default;
11271
11322
  $color-preview-border-width: 1px !default;
11272
11323
  $color-preview-bg: null !default;
11273
11324
  $color-preview-text: null !default;
@@ -11429,7 +11480,7 @@ $loader-secondary-bg: #656565 !default;
11429
11480
  $loader-container-panel-border-width: 1px !default;
11430
11481
  $loader-container-panel-border-style: solid !default;
11431
11482
  $loader-container-panel-border-color: $component-border !default;
11432
- $loader-container-panel-border-radius: $border-radius !default;
11483
+ $loader-container-panel-border-radius: $kendo-border-radius-md !default;
11433
11484
  $loader-container-panel-bg: $white !default;
11434
11485
 
11435
11486
  $loader-container-padding-sm: map-get( $spacing, 4 ) !default;
@@ -11951,7 +12002,7 @@ $loader-container-font-size-lg: $font-size-lg !default;
11951
12002
  // #region @import "_variables.scss"; -> packages/default/scss/skeleton/_variables.scss
11952
12003
  // Skeleton
11953
12004
  $skeleton-text-transform: scale( 1, .6 ) !default;
11954
- $skeleton-text-border-radius: $border-radius !default;
12005
+ $skeleton-text-border-radius: $kendo-border-radius-md !default;
11955
12006
 
11956
12007
  $skeleton-rect-border-radius: 0 !default;
11957
12008
 
@@ -12100,7 +12151,7 @@ $tooltip-padding-y: $padding-y !default;
12100
12151
  $tooltip-padding-x: $padding-x !default;
12101
12152
  $tooltip-max-width: null !default;
12102
12153
  $tooltip-border-width: 0px !default;
12103
- $tooltip-border-radius: $border-radius !default;
12154
+ $tooltip-border-radius: $kendo-border-radius-md !default;
12104
12155
 
12105
12156
  $tooltip-font-family: $font-family !default;
12106
12157
  $tooltip-font-size: $font-size !default;
@@ -13421,11 +13472,6 @@ $fieldset-legend-border: null !default;
13421
13472
  display: inline-flex;
13422
13473
  width: 100%;
13423
13474
  }
13424
- .k-daterangepicker {
13425
- width: 100%;
13426
- flex-flow: column nowrap;
13427
- gap: 0;
13428
- }
13429
13475
  }
13430
13476
 
13431
13477
  // Form Buttons Container
@@ -14317,7 +14363,7 @@ $progressbar-chunk-border: $body-bg !default;
14317
14363
 
14318
14364
  // Base
14319
14365
  .k-progressbar {
14320
- @include border-radius( $border-radius );
14366
+ @include border-radius( $kendo-border-radius );
14321
14367
  --kendo-progressbar-progress: 0;
14322
14368
  border-width: $progressbar-border-width;
14323
14369
  border-style: solid;
@@ -15618,7 +15664,7 @@ $slider-disabled-opacity: null !default;
15618
15664
 
15619
15665
  .k-slider-track,
15620
15666
  .k-slider-selection {
15621
- @include border-radius( $border-radius );
15667
+ @include border-radius( $kendo-border-radius );
15622
15668
  }
15623
15669
 
15624
15670
  .k-slider-track {
@@ -15746,7 +15792,7 @@ $calendar-footer-padding-y: map-get( $spacing, 2 ) !default;
15746
15792
  $calendar-cell-padding-x: .5em !default;
15747
15793
  $calendar-cell-padding-y: $calendar-cell-padding-x !default;
15748
15794
  $calendar-cell-line-height: $calendar-line-height !default;
15749
- $calendar-cell-border-radius: $border-radius !default;
15795
+ $calendar-cell-border-radius: $kendo-border-radius-md !default;
15750
15796
 
15751
15797
  $calendar-header-cell-padding-x: null !default;
15752
15798
  $calendar-header-cell-padding-y: null !default;
@@ -16192,6 +16238,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16192
16238
  line-height: $calendar-navigation-item-height;
16193
16239
  cursor: pointer;
16194
16240
  padding: 0 1em;
16241
+ overflow: hidden;
16242
+ white-space: nowrap;
16243
+ text-overflow: clip;
16195
16244
  }
16196
16245
  }
16197
16246
 
@@ -17288,7 +17337,7 @@ $colorgradient-spacer: map-get( $spacing, 3 ) !default;
17288
17337
 
17289
17338
  $colorgradient-width: 272px !default;
17290
17339
  $colorgradient-border-width: 1px !default;
17291
- $colorgradient-border-radius: $border-radius !default;
17340
+ $colorgradient-border-radius: $kendo-border-radius-md !default;
17292
17341
  $colorgradient-padding-y: $colorgradient-spacer !default;
17293
17342
  $colorgradient-padding-x: $colorgradient-padding-y !default;
17294
17343
  $colorgradient-gap: $colorgradient-spacer !default;
@@ -17302,7 +17351,7 @@ $colorgradient-border: $component-border !default;
17302
17351
  $colorgradient-focus-border: null !default;
17303
17352
  $colorgradient-focus-shadow: 1px 1px 7px 1px rgba(0, 0, 0, .3) !default;
17304
17353
 
17305
- $colorgradient-canvas-border-radius: $border-radius !default;
17354
+ $colorgradient-canvas-border-radius: $kendo-border-radius-md !default;
17306
17355
  $colorgradient-canvas-gap: $colorgradient-spacer !default;
17307
17356
  $colorgradient-canvas-rectangle-height: 180px !default;
17308
17357
 
@@ -17650,7 +17699,7 @@ $coloreditor-spacer: map-get( $spacing, 3 ) !default;
17650
17699
 
17651
17700
  $coloreditor-min-width: 272px !default;
17652
17701
  $coloreditor-border-width: 1px !default;
17653
- $coloreditor-border-radius: $border-radius !default;
17702
+ $coloreditor-border-radius: $kendo-border-radius-md !default;
17654
17703
  $coloreditor-font-family: $font-family !default;
17655
17704
  $coloreditor-font-size: $font-size !default;
17656
17705
  $coloreditor-line-height: $line-height !default;
@@ -18721,7 +18770,7 @@ $kendo-treeview-item-padding-y: map-get( $spacing, 1 ) !default;
18721
18770
  $kendo-treeview-item-border-width: 0px !default;
18722
18771
  /// Border radius of treeview items.
18723
18772
  /// @group treeview
18724
- $kendo-treeview-item-border-radius: $border-radius !default;
18773
+ $kendo-treeview-item-border-radius: $kendo-border-radius-md !default;
18725
18774
 
18726
18775
 
18727
18776
  /// The sizes of the treeview.
@@ -20944,7 +20993,7 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
20944
20993
  $kendo-fab-border-width: 1px !default;
20945
20994
  /// Border radius of the FAB.
20946
20995
  /// @group floating-action-button
20947
- $kendo-fab-border-radius: $border-radius !default;
20996
+ $kendo-fab-border-radius: $kendo-border-radius-md !default;
20948
20997
 
20949
20998
  /// Font family of the FAB.
20950
20999
  /// @group floating-action-button
@@ -22436,7 +22485,7 @@ $drawer-selected-hover-text: $selected-hover-text !default;
22436
22485
  $notification-padding-x: 8px !default;
22437
22486
  $notification-padding-y: 4px !default;
22438
22487
  $notification-border-width: 1px !default;
22439
- $notification-border-radius: $border-radius !default;
22488
+ $notification-border-radius: $kendo-border-radius-md !default;
22440
22489
 
22441
22490
  $notification-shadow: $popup-shadow !default;
22442
22491
 
@@ -22454,6 +22503,7 @@ $notification-border: $component-border !default;
22454
22503
  @function notification-theme( $colors ) {
22455
22504
  $_theme: ();
22456
22505
 
22506
+ // sass-lint:disable-block indentation
22457
22507
  @each $name, $color in $colors {
22458
22508
  $_theme: map-merge(( $name: (
22459
22509
  color: contrast-wcag( $color ),
@@ -22637,7 +22687,7 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
22637
22687
  $card-padding-x: map-get( $spacing, lg ) !default;
22638
22688
  $card-padding-y: map-get( $spacing, md ) !default;
22639
22689
  $card-border-width: 1px !default;
22640
- $card-border-radius: $border-radius-lg !default;
22690
+ $card-border-radius: $kendo-border-radius-lg !default;
22641
22691
  $card-inner-border-radius: calc( #{$card-border-radius} - #{$card-border-width} ) !default;
22642
22692
  $card-font-family: $font-family !default;
22643
22693
  $card-font-size: $font-size !default;
@@ -23519,7 +23569,7 @@ $bottom-nav-item-padding-y: 0 !default;
23519
23569
  $bottom-nav-item-min-width: 72px !default;
23520
23570
  $bottom-nav-item-max-width: null !default;
23521
23571
  $bottom-nav-item-min-height: calc( #{$icon-size * 2.5} + #{$padding-x * 2} - #{$bottom-nav-padding-x * 2} ) !default;
23522
- $bottom-nav-item-border-radius: $border-radius !default;
23572
+ $bottom-nav-item-border-radius: $kendo-border-radius-md !default;
23523
23573
  $bottom-nav-item-gap: 0 map-get( $spacing, 1 ) !default;
23524
23574
 
23525
23575
  $bottom-nav-item-icon-margin-y: map-get( $spacing, 2 ) !default;
@@ -23753,7 +23803,7 @@ $breadcrumb-delimiter-icon-padding-y: 0px !default;
23753
23803
 
23754
23804
  $breadcrumb-link-padding-x: $padding-x !default;
23755
23805
  $breadcrumb-link-padding-y: $padding-y-lg !default;
23756
- $breadcrumb-link-border-radius: $border-radius !default;
23806
+ $breadcrumb-link-border-radius: $kendo-border-radius-md !default;
23757
23807
 
23758
23808
  $breadcrumb-icon-link-padding-x: $breadcrumb-link-padding-x !default;
23759
23809
  $breadcrumb-icon-link-padding-y: $breadcrumb-icon-link-padding-x !default;
@@ -24742,7 +24792,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
24742
24792
 
24743
24793
  // Step label
24744
24794
  .k-step-label {
24745
- max-width: 10em;
24795
+ max-width: calc(min(100%, 10em));
24746
24796
  display: inline-flex;
24747
24797
  flex-wrap: wrap;
24748
24798
  align-items: center;
@@ -25162,7 +25212,7 @@ $tabstrip-item-padding-y: $nav-item-padding-y !default;
25162
25212
  $tabstrip-item-border-width: 1px !default;
25163
25213
  /// Border radius of tabs
25164
25214
  /// @group tabstrip
25165
- $tabstrip-item-border-radius: $border-radius !default;
25215
+ $tabstrip-item-border-radius: $kendo-border-radius-md !default;
25166
25216
  /// Spacing between tabs
25167
25217
  /// @group tabstrip
25168
25218
  $tabstrip-item-gap: $nav-item-margin !default;
@@ -26931,7 +26981,7 @@ $tilelayout-card-border-width: $card-border-width !default;
26931
26981
  $tilelayout-card-focus-shadow: $card-focus-shadow !default;
26932
26982
 
26933
26983
  $tilelayout-hint-border-width: 1px !default;
26934
- $tilelayout-hint-border-radius: $border-radius-lg !default;
26984
+ $tilelayout-hint-border-radius: $kendo-border-radius-lg !default;
26935
26985
 
26936
26986
  $tilelayout-bg: $base-bg !default;
26937
26987
 
@@ -27767,7 +27817,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
27767
27817
 
27768
27818
  $grid-hierarchy-col-width: ($icon-size * 2) !default;
27769
27819
 
27770
- $grid-group-indicator-border-radius: $border-radius !default;
27820
+ $grid-group-indicator-border-radius: $kendo-border-radius-md !default;
27771
27821
  $grid-group-indicator-gap: $table-cell-padding-y !default;
27772
27822
 
27773
27823
  $grid-grouping-row-border-top: 1px !default;
@@ -29977,9 +30027,9 @@ $spreadsheet-insert-image-dialog-preview-width: 355px !default;
29977
30027
  $spreadsheet-insert-image-dialog-preview-height: 230px !default;
29978
30028
  $spreadsheet-insert-image-dialog-preview-img: "image-default.png" !default;
29979
30029
  $spreadsheet-insert-image-dialog-preview-border: $component-border !default;
29980
- $spreadsheet-insert-image-dialog-preview-border-radius: $border-radius !default;
30030
+ $spreadsheet-insert-image-dialog-preview-border-radius: $kendo-border-radius-md !default;
29981
30031
  $spreadsheet-insert-image-dialog-preview-overlay-shadow: inset 0 0 0 2000px rgba(0, 0, 0, .5) !default;
29982
- $spreadsheet-insert-image-dialog-preview-overlay-border-radius: $border-radius !default;
30032
+ $spreadsheet-insert-image-dialog-preview-overlay-border-radius: $kendo-border-radius-md !default;
29983
30033
  $spreadsheet-insert-image-dialog-overlay-hovered-text: $component-bg !default;
29984
30034
 
29985
30035
  $spreadsheet-drawing-handle-width: 6px !default;
@@ -29989,7 +30039,7 @@ $spreadsheet-drawing-handle-border-width: 1px !default;
29989
30039
  $spreadsheet-drawing-handle-outline-color: $primary !default;
29990
30040
  $spreadsheet-drawing-handle-border-color: $selected-bg !default;
29991
30041
  $spreadsheet-drawing-handle-bg: $primary !default;
29992
- $spreadsheet-drawing-handle-border-radius: $border-radius-lg !default;
30042
+ $spreadsheet-drawing-handle-border-radius: $kendo-border-radius-lg !default;
29993
30043
 
29994
30044
  $spreadsheet-drawing-outline-style: solid !default;
29995
30045
  $spreadsheet-drawing-outline-width: 2px !default;
@@ -30575,7 +30625,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
30575
30625
  box-sizing: border-box;
30576
30626
  }
30577
30627
  .k-spreadsheet-filter {
30578
- @include border-radius( $border-radius );
30628
+ @include border-radius( $kendo-border-radius );
30579
30629
  line-height: 1;
30580
30630
  position: absolute;
30581
30631
  cursor: pointer;
@@ -31319,7 +31369,7 @@ $pivotgrid-configurator-button-size: calc( #{$pivotgrid-line-height * 1em} + #{$
31319
31369
  $pivotgrid-calculated-field-padding-x: $pivotgrid-spacer !default;
31320
31370
  $pivotgrid-calculated-field-padding-y: $pivotgrid-spacer !default;
31321
31371
  $pivotgrid-calculated-field-border-width: 1px !default;
31322
- $pivotgrid-calculated-field-border-radius: $border-radius !default;
31372
+ $pivotgrid-calculated-field-border-radius: $kendo-border-radius-md !default;
31323
31373
  $pivotgrid-calculated-field-gap: $pivotgrid-spacer !default;
31324
31374
 
31325
31375
  $pivotgrid-calculated-field-bg: $component-bg !default;
@@ -33184,7 +33234,7 @@ $taskboard-columns-container-gap: $taskboard-spacer !default;
33184
33234
 
33185
33235
  $taskboard-column-width: 320px !default;
33186
33236
  $taskboard-column-border-width: 1px !default;
33187
- $taskboard-column-border-radius: $border-radius !default;
33237
+ $taskboard-column-border-radius: $kendo-border-radius-md !default;
33188
33238
  $taskboard-column-bg: $base-bg !default;
33189
33239
  $taskboard-column-text: null !default;
33190
33240
  $taskboard-column-border: transparent !default;
@@ -33226,7 +33276,7 @@ $taskboard-pane-actions-padding-x: $taskboard-spacer !default;
33226
33276
  $taskboard-card-padding-y: $taskboard-spacer !default;
33227
33277
  $taskboard-card-padding-x: $taskboard-card-padding-y !default;
33228
33278
  $taskboard-card-border-width: $card-border-width !default;
33229
- $taskboard-card-border-radius: $border-radius !default;
33279
+ $taskboard-card-border-radius: $kendo-border-radius-md !default;
33230
33280
  $taskboard-card-shadow: $card-shadow !default;
33231
33281
  $taskboard-card-bg: $card-bg !default;
33232
33282
  $taskboard-card-text: $card-text !default;
@@ -33729,7 +33779,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
33729
33779
 
33730
33780
  // Inline editor
33731
33781
  .k-editor-inline {
33732
- @include border-radius( $border-radius );
33782
+ @include border-radius( $kendo-border-radius-md );
33733
33783
  padding: $padding-y-sm $padding-x-sm;
33734
33784
  border: 1px solid transparent;
33735
33785
  word-wrap: break-word;
@@ -34150,7 +34200,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
34150
34200
  white-space: nowrap;
34151
34201
  overflow: hidden;
34152
34202
  cursor: pointer;
34153
- @include border-radius( $border-radius );
34203
+ @include border-radius( $kendo-border-radius-md );
34154
34204
 
34155
34205
  .k-i-file,
34156
34206
  .k-i-folder {
@@ -34897,6 +34947,11 @@ $gantt-advanced-bg-lighter: tint($gantt-advanced-bg, 5) !default;
34897
34947
  $gantt-action-on-offset-text: #000000 !default;
34898
34948
  $gantt-offset-resize-handler-top: 50% !default;
34899
34949
 
34950
+ $gantt-validation-tooltip-width: 200px !default;
34951
+ $gantt-validation-tooltip-border: #656565 !default;
34952
+ $gantt-validation-tooltip-valid-border: $success !default;
34953
+ $gantt-validation-tooltip-invalid-border: $error !default;
34954
+
34900
34955
  // #endregion
34901
34956
  // #region @import "_layout.scss"; -> packages/default/scss/gantt/_layout.scss
34902
34957
  @include exports("gantt/layout") {
@@ -35407,7 +35462,7 @@ $gantt-offset-resize-handler-top: 50% !default;
35407
35462
  // Single task
35408
35463
  .k-single-wrap {}
35409
35464
  .k-task-single {
35410
- @include border-radius( $border-radius );
35465
+ @include border-radius( $kendo-border-radius-md );
35411
35466
  border-width: $gantt-task-border-width;
35412
35467
  border-style: solid;
35413
35468
  box-sizing: border-box;
@@ -35440,7 +35495,7 @@ $gantt-offset-resize-handler-top: 50% !default;
35440
35495
  }
35441
35496
  }
35442
35497
  .k-task-complete {
35443
- @include border-radius( $border-radius );
35498
+ @include border-radius( $kendo-border-radius-md );
35444
35499
  width: 20%;
35445
35500
  position: absolute;
35446
35501
  z-index: 1;
@@ -35510,7 +35565,6 @@ $gantt-offset-resize-handler-top: 50% !default;
35510
35565
  }
35511
35566
 
35512
35567
  // Planned position
35513
-
35514
35568
  .k-gantt-planned {
35515
35569
  .k-gantt-dependencies,
35516
35570
  .k-task-dot,
@@ -35541,7 +35595,6 @@ $gantt-offset-resize-handler-top: 50% !default;
35541
35595
  }
35542
35596
 
35543
35597
  // Planned element
35544
-
35545
35598
  .k-task-planned {
35546
35599
  margin: 0 0 $gantt-planned-margin-y;
35547
35600
  line-height: $gantt-planned-line-height;
@@ -35574,7 +35627,6 @@ $gantt-offset-resize-handler-top: 50% !default;
35574
35627
  }
35575
35628
 
35576
35629
  // Planned Tooltip
35577
-
35578
35630
  .k-planned-tooltip {
35579
35631
  .k-task-content {
35580
35632
  display: block;
@@ -35582,7 +35634,6 @@ $gantt-offset-resize-handler-top: 50% !default;
35582
35634
  }
35583
35635
 
35584
35636
  // Delay offset
35585
-
35586
35637
  .k-task-offset-wrap .k-task-content .k-resize-e {
35587
35638
  display: none;
35588
35639
  }
@@ -35613,6 +35664,36 @@ $gantt-offset-resize-handler-top: 50% !default;
35613
35664
  .k-task-offset:hover .k-resize-handle {
35614
35665
  visibility: visible;
35615
35666
  }
35667
+
35668
+
35669
+ // Dependency Validation Tooltip
35670
+ .k-gantt-tooltip-validation {
35671
+ max-width: $gantt-validation-tooltip-width;
35672
+ display: block;
35673
+
35674
+ &::before {
35675
+ content: '';
35676
+ width: 4px;
35677
+ height: 100%;
35678
+ position: absolute;
35679
+ top: 0;
35680
+ left: 0;
35681
+ }
35682
+ }
35683
+ .k-gantt-tooltip-validation-row {
35684
+ display: flex;
35685
+ flex-direction: row;
35686
+ justify-content: space-between;
35687
+ }
35688
+ .k-gantt-tooltip-validation-label {
35689
+ display: inline-flex;
35690
+ white-space: nowrap;
35691
+ overflow: hidden;
35692
+ text-overflow: ellipsis;
35693
+ }
35694
+ .k-gantt-tooltip-validation-value {
35695
+ font-weight: $font-weight-bold;
35696
+ }
35616
35697
  }
35617
35698
 
35618
35699
  @include exports("gantt/export") {
@@ -35658,7 +35739,8 @@ $gantt-offset-resize-handler-top: 50% !default;
35658
35739
 
35659
35740
  @include exports("gantt/rtl") {
35660
35741
 
35661
- .k-rtl {
35742
+ .k-rtl,
35743
+ [dir="rtl"] {
35662
35744
 
35663
35745
  .k-gantt-rows,
35664
35746
  .k-gantt-columns {
@@ -35737,6 +35819,11 @@ $gantt-offset-resize-handler-top: 50% !default;
35737
35819
  .k-gantt-timeline .k-milestone-wrap .k-task-start {
35738
35820
  right: $gantt-rtl-milestone-dot-start-margin-x;
35739
35821
  }
35822
+
35823
+ .k-gantt-tooltip-validation::before {
35824
+ left: auto;
35825
+ right: 0;
35826
+ }
35740
35827
  }
35741
35828
  }
35742
35829
 
@@ -35988,7 +36075,6 @@ $gantt-offset-resize-handler-top: 50% !default;
35988
36075
  }
35989
36076
 
35990
36077
  // Tooltips
35991
-
35992
36078
  .k-offset-tooltip-delayed {
35993
36079
  @include fill(
35994
36080
  $bg: $gantt-delayed-bg
@@ -36000,6 +36086,22 @@ $gantt-offset-resize-handler-top: 50% !default;
36000
36086
  $bg: $gantt-planned-bg
36001
36087
  );
36002
36088
  }
36089
+
36090
+ .k-gantt-tooltip-validation {
36091
+ &::before {
36092
+ background-color: $gantt-validation-tooltip-border;
36093
+ }
36094
+ }
36095
+ .k-gantt-tooltip-valid {
36096
+ &::before {
36097
+ background-color: $gantt-validation-tooltip-valid-border;
36098
+ }
36099
+ }
36100
+ .k-gantt-tooltip-invalid {
36101
+ &::before {
36102
+ background-color: $gantt-validation-tooltip-invalid-border;
36103
+ }
36104
+ }
36003
36105
  }
36004
36106
 
36005
36107
  // #endregion
@@ -36061,7 +36163,7 @@ $scheduler-footer-border: $toolbar-border !default;
36061
36163
  $scheduler-footer-gradient: $toolbar-gradient !default;
36062
36164
 
36063
36165
  $scheduler-event-min-height: 25px !default;
36064
- $scheduler-event-border-radius: $border-radius !default;
36166
+ $scheduler-event-border-radius: $kendo-border-radius-md !default;
36065
36167
  $scheduler-event-line-height: calc( #{$scheduler-event-min-height} - (2 * #{$padding-y}) ) !default;
36066
36168
 
36067
36169
  $scheduler-event-bg: tint( $selected-bg, 2 ) !default;
@@ -36128,7 +36230,7 @@ $scheduler-tooltip-events-gap: $padding-y !default;
36128
36230
 
36129
36231
  $scheduler-tooltip-event-padding-x: $padding-x !default;
36130
36232
  $scheduler-tooltip-event-padding-y: $padding-y !default;
36131
- $scheduler-tooltip-event-border-radius: $border-radius !default;
36233
+ $scheduler-tooltip-event-border-radius: $kendo-border-radius-md !default;
36132
36234
  $scheduler-tooltip-event-gap: $padding-x-sm !default;
36133
36235
 
36134
36236
  $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
@@ -36530,7 +36632,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
36530
36632
  // Appointments
36531
36633
  kendo-scheduler .k-event,
36532
36634
  .k-event {
36533
- @include border-radius( $border-radius );
36635
+ @include border-radius( $kendo-border-radius );
36534
36636
  min-height: $scheduler-event-min-height;
36535
36637
  box-sizing: border-box;
36536
36638
  border-width: 0;
@@ -38555,7 +38657,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
38555
38657
  display: inline-block;
38556
38658
  text-align: center;
38557
38659
  padding: $timeline-flag-padding-y $timeline-flag-padding-x;
38558
- border-radius: $border-radius;
38660
+ border-radius: $kendo-border-radius;
38559
38661
  line-height: $timeline-flag-line-height;
38560
38662
  min-width: $timeline-flag-min-width;
38561
38663
  max-width: $timeline-flag-max-width;
@@ -38619,7 +38721,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
38619
38721
  }
38620
38722
 
38621
38723
  &::-webkit-scrollbar-thumb {
38622
- border-radius: $border-radius;
38724
+ border-radius: $kendo-border-radius;
38623
38725
  }
38624
38726
  }
38625
38727
  }
@@ -38663,7 +38765,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
38663
38765
  height: 100%;
38664
38766
  width: $timeline-track-size;
38665
38767
  transform: translateX(-50%);
38666
- border-radius: $border-radius-lg;
38768
+ border-radius: $kendo-border-radius-lg;
38667
38769
  }
38668
38770
 
38669
38771
  .k-timeline-flag-wrap {
@@ -40008,7 +40110,7 @@ $treemap-line-height: $line-height !default;
40008
40110
  }
40009
40111
 
40010
40112
  .k-chart-tooltip {
40011
- @include border-radius( $border-radius );
40113
+ @include border-radius( $kendo-border-radius-md );
40012
40114
  font-size: $chart-tooltip-font-size;
40013
40115
  line-height: $line-height;
40014
40116
  padding: $tooltip-padding-y $tooltip-padding-x;
@@ -40116,7 +40218,7 @@ $treemap-line-height: $line-height !default;
40116
40218
  }
40117
40219
 
40118
40220
  .k-navigator-hint .k-scroll {
40119
- @include border-radius( $border-radius );
40221
+ @include border-radius( $kendo-border-radius-md );
40120
40222
  position: absolute;
40121
40223
  height: 4px;
40122
40224
  }
@@ -40343,7 +40445,7 @@ $treemap-line-height: $line-height !default;
40343
40445
  base: $base-bg,
40344
40446
  background: $chart-bg,
40345
40447
 
40346
- border-radius: $border-radius,
40448
+ border-radius: $kendo-border-radius-md,
40347
40449
 
40348
40450
  normal-background: $base-bg,
40349
40451
  normal-text-color: $base-text,
@@ -40861,7 +40963,7 @@ $orgchart-node-container-gap: $orgchart-spacer !default;
40861
40963
  $orgchart-node-group-padding-y: $orgchart-spacer !default;
40862
40964
  $orgchart-node-group-padding-x: $orgchart-node-group-padding-y !default;
40863
40965
  $orgchart-node-group-border-width: 1px !default;
40864
- $orgchart-node-group-border-radius: $border-radius !default;
40966
+ $orgchart-node-group-border-radius: $kendo-border-radius-md !default;
40865
40967
  $orgchart-node-group-bg: $base-bg !default;
40866
40968
  $orgchart-node-group-text: $base-text !default;
40867
40969
  $orgchart-node-group-border: $base-border !default;