@progress/kendo-theme-classic 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.
package/dist/all.scss CHANGED
@@ -1011,9 +1011,10 @@ $padding-x-lg: $padding-x * 1.5 !default;
1011
1011
  $padding-y-lg: $padding-y * 1.5 !default;
1012
1012
 
1013
1013
  /// Border radius for all components.
1014
- $border-radius: map-get( $spacing, 1 ) !default;
1015
- $border-radius-sm: $border-radius / 2 !default;
1016
- $border-radius-lg: $border-radius * 2 !default;
1014
+ $kendo-border-radius: map-get( $spacing, 1 ) !default;
1015
+ $kendo-border-radius-sm: $kendo-border-radius / 2 !default;
1016
+ $kendo-border-radius-md: $kendo-border-radius !default;
1017
+ $kendo-border-radius-lg: $kendo-border-radius * 2 !default;
1017
1018
 
1018
1019
  $panel-padding-x: $padding-x !default;
1019
1020
  $panel-padding-y: $padding-y !default;
@@ -1309,7 +1310,7 @@ $invalid-shadow: null !default;
1309
1310
  $drag-clue-padding-x: $padding-x !default;
1310
1311
  $drag-clue-padding-y: $padding-y !default;
1311
1312
  $drag-clue-border-width: 1px !default;
1312
- $drag-clue-border-radius: $border-radius !default;
1313
+ $drag-clue-border-radius: $kendo-border-radius-md !default;
1313
1314
  $drag-clue-font-size: $font-size !default;
1314
1315
  $drag-clue-font-family: $font-family !default;
1315
1316
  $drag-clue-line-height: $line-height !default;
@@ -1712,7 +1713,7 @@ $display4-letter-spacing: null !default;
1712
1713
  // Panels
1713
1714
  .k-block,
1714
1715
  .k-panel {
1715
- @include border-radius( $border-radius );
1716
+ @include border-radius( $kendo-border-radius-md );
1716
1717
  @include fill(
1717
1718
  $panel-text,
1718
1719
  $panel-bg,
@@ -1724,7 +1725,7 @@ $display4-letter-spacing: null !default;
1724
1725
  box-sizing: border-box;
1725
1726
 
1726
1727
  > .k-header {
1727
- @include border-top-radius( $border-radius );
1728
+ @include border-top-radius( $kendo-border-radius-md );
1728
1729
  @include fill(
1729
1730
  $header-text,
1730
1731
  $header-bg,
@@ -3296,11 +3297,11 @@ $display4-letter-spacing: null !default;
3296
3297
  // Component
3297
3298
  // #region @import "_border.scss"; -> packages/classic/scss/utils/_border.scss
3298
3299
  $utils-border-radius: (
3299
- default: map-get( $spacing, 1 ),
3300
+ default: $kendo-border-radius-md,
3300
3301
  0: 0,
3301
- sm: map-get( $spacing, 1) / 2,
3302
- md: map-get( $spacing, 1),
3303
- lg: map-get( $spacing, 1) * 1.5,
3302
+ sm: $kendo-border-radius-sm,
3303
+ md: $kendo-border-radius-md,
3304
+ lg: $kendo-border-radius-lg,
3304
3305
  full: 9999px
3305
3306
  ) !default;
3306
3307
 
@@ -3348,11 +3349,11 @@ $utils-border-radius: (
3348
3349
  ) !default;
3349
3350
 
3350
3351
  $utils-border-radius: (
3351
- default: map-get( $spacing, 1 ),
3352
+ default: $kendo-border-radius-md,
3352
3353
  0: 0,
3353
- sm: ( map-get( $spacing, 1 ) / 4 ),
3354
- md: ( map-get( $spacing, 1 ) / 2 ),
3355
- lg: map-get( $spacing, 1 ),
3354
+ sm: $kendo-border-radius-sm,
3355
+ md: $kendo-border-radius-md,
3356
+ lg: $kendo-border-radius-lg,
3356
3357
  full: 9999px
3357
3358
  ) !default;
3358
3359
 
@@ -3476,48 +3477,48 @@ $utils-border-radius: (
3476
3477
  /// @name k-d-flex
3477
3478
  /// @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.
3478
3479
  /// @group flex-layout
3479
- .k-d-flex { display: flex; }
3480
- .\!k-d-flex { display: flex !important; } // sass-lint:disable-line no-important class-name-format
3480
+ .k-d-flex { display: flex; }
3481
+ .\!k-d-flex { display: flex !important; } // sass-lint:disable-line no-important class-name-format
3481
3482
  /// @name k-d-inline-flex
3482
3483
  /// @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.
3483
3484
  /// @group flex-layout
3484
- .k-d-inline-flex { display: inline-flex; }
3485
- .\!k-d-inline-flex { display: inline-flex !important; } // sass-lint:disable-line no-important class-name-format
3485
+ .k-d-inline-flex { display: inline-flex; }
3486
+ .\!k-d-inline-flex { display: inline-flex !important; } // sass-lint:disable-line no-important class-name-format
3486
3487
  /// @name k-d-flex-row
3487
3488
  /// @description This is equivalent to `display: inline-flex` and `flex-direction: row`.
3488
3489
  /// @group flex-layout
3489
- .k-d-flex-row { @extend .k-d-flex, .k-flex-row; }
3490
- .\!k-d-flex-row { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
3490
+ .k-d-flex-row { @extend .k-d-flex, .k-flex-row; }
3491
+ .\!k-d-flex-row { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
3491
3492
  /// @name k-d-flex-col
3492
3493
  /// @description This is equivalent to `display: inline-flex` and `flex-direction: column`.
3493
3494
  /// @group flex-layout
3494
- .k-d-flex-col { @extend .k-d-flex, .k-flex-col; }
3495
- .\!k-d-flex-col { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
3495
+ .k-d-flex-col { @extend .k-d-flex, .k-flex-col; }
3496
+ .\!k-d-flex-col { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
3496
3497
  /// @name k-flex-row
3497
3498
  /// @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`.
3498
3499
  /// @group flex-layout
3499
- .k-flex-row { flex-direction: row; }
3500
- .\!k-flex-row { flex-direction: row !important; } // sass-lint:disable-line no-important class-name-format
3500
+ .k-flex-row { flex-direction: row; }
3501
+ .\!k-flex-row { flex-direction: row !important; } // sass-lint:disable-line no-important class-name-format
3501
3502
  /// @name k-flex-row-reverse
3502
3503
  /// @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`.
3503
3504
  /// @group flex-layout
3504
- .k-flex-row-reverse { flex-direction: row-reverse; }
3505
- .\!k-flex-row-reverse { flex-direction: row-reverse !important; } // sass-lint:disable-line no-important class-name-format
3505
+ .k-flex-row-reverse { flex-direction: row-reverse; }
3506
+ .\!k-flex-row-reverse { flex-direction: row-reverse !important; } // sass-lint:disable-line no-important class-name-format
3506
3507
  /// @name k-flex-col
3507
3508
  /// @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.
3508
3509
  /// @group flex-layout
3509
- .k-flex-col { flex-direction: column; }
3510
- .\!k-flex-col { flex-direction: column !important; } // sass-lint:disable-line no-important class-name-format
3510
+ .k-flex-col { flex-direction: column; }
3511
+ .\!k-flex-col { flex-direction: column !important; } // sass-lint:disable-line no-important class-name-format
3511
3512
  /// @name k-flex-col-reverse
3512
3513
  /// @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.
3513
3514
  /// @group flex-layout
3514
- .k-flex-col-reverse { flex-direction: column-reverse; }
3515
- .\!k-flex-col-reverse { flex-direction: column-reverse; } // sass-lint:disable-line no-important class-name-format
3515
+ .k-flex-col-reverse { flex-direction: column-reverse; }
3516
+ .\!k-flex-col-reverse { flex-direction: column-reverse !important; } // sass-lint:disable-line no-important class-name-format
3516
3517
 
3517
3518
 
3518
3519
  // Aliases
3519
- .k-flex-column { @extend .k-flex-col; }
3520
- .k-flex-column-reverse { @extend .k-flex-col-reverse; }
3520
+ .k-flex-column { @extend .k-flex-col; }
3521
+ .k-flex-column-reverse { @extend .k-flex-col-reverse; }
3521
3522
 
3522
3523
 
3523
3524
  // Flex wrap
@@ -3525,15 +3526,18 @@ $utils-border-radius: (
3525
3526
  /// @name k-flex-wrap
3526
3527
  /// @description This is equivalent to `flex-wrap: wrap`. It allows flex items to wrap as needed onto multiple lines, from top to bottom.
3527
3528
  /// @group flex-layout
3528
- .k-flex-wrap { flex-wrap: wrap; }
3529
+ .k-flex-wrap { flex-wrap: wrap; }
3530
+ .\!k-flex-wrap { flex-wrap: wrap !important; } // sass-lint:disable-line no-important class-name-format
3529
3531
  /// @name k-flex-nowrap
3530
3532
  /// @description This is equivalent to `flex-wrap: nowrap`. All flex items will be on one line.
3531
3533
  /// @group flex-layout
3532
- .k-flex-nowrap { flex-wrap: nowrap; }
3534
+ .k-flex-nowrap { flex-wrap: nowrap; }
3535
+ .\!k-flex-nowrap { flex-wrap: nowrap !important; } // sass-lint:disable-line no-important class-name-format
3533
3536
  /// @name k-flex-wrap-reverse
3534
3537
  /// @description This is equivalent to `flex-wrap: wrap-reverse`. It allows flex items to wrap as needed onto multiple lines, from bottom to top.
3535
3538
  /// @group flex-layout
3536
- .k-flex-wrap-reverse { flex-wrap: wrap-reverse; }
3539
+ .k-flex-wrap-reverse { flex-wrap: wrap-reverse; }
3540
+ .\!k-flex-wrap-reverse { flex-wrap: wrap-reverse !important; } // sass-lint:disable-line no-important class-name-format
3537
3541
 
3538
3542
 
3539
3543
  // Flex, shrink, grow,
@@ -3541,80 +3545,116 @@ $utils-border-radius: (
3541
3545
  /// @name k-flex-initial
3542
3546
  /// @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.
3543
3547
  /// @group flex-layout
3544
- .k-flex-initial { flex: 0 1 auto; }
3548
+ .k-flex-initial { flex: 0 1 auto; }
3549
+ .\!k-flex-initial { flex: 0 1 auto !important; } // sass-lint:disable-line no-important class-name-format
3545
3550
  /// @name k-flex-1
3546
3551
  /// @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.
3547
3552
  /// @group flex-layout
3548
- .k-flex-1 { flex: 1 1 0%; }
3553
+ .k-flex-1 { flex: 1 1 0%; }
3554
+ .\!k-flex-1 { flex: 1 1 0% !important; } // sass-lint:disable-line no-important class-name-format
3549
3555
  /// @name k-flex-auto
3550
3556
  /// @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`.
3551
3557
  /// @group flex-layout
3552
- .k-flex-auto { flex: 1 1 auto; }
3558
+ .k-flex-auto { flex: 1 1 auto; }
3559
+ .\!k-flex-auto { flex: 1 1 auto !important; } // sass-lint:disable-line no-important class-name-format
3553
3560
  /// @name k-flex-none
3554
3561
  /// @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.
3555
3562
  /// @group flex-layout
3556
- .k-flex-none { flex: none; }
3563
+ .k-flex-none { flex: none; }
3564
+ .\!k-flex-none { flex: none !important; } // sass-lint:disable-line no-important class-name-format
3557
3565
  /// @name k-flex-grow
3558
3566
  /// @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.
3559
3567
  /// @group flex-layout
3560
- .k-flex-grow { flex-grow: 1; }
3568
+ .k-flex-grow { flex-grow: 1; }
3569
+ .\!k-flex-grow { flex-grow: 1 !important; } // sass-lint:disable-line no-important class-name-format
3561
3570
  /// @name k-flex-grow-0
3562
3571
  /// @description This is equivalent to `flex-grow: 0`. The item will not grow.
3563
3572
  /// @group flex-layout
3564
- .k-flex-grow-0 { flex-grow: 0; }
3573
+ .k-flex-grow-0 { flex-grow: 0; }
3574
+ .\!k-flex-grow-0 { flex-grow: 0 !important; } // sass-lint:disable-line no-important class-name-format
3565
3575
  /// @name k-flex-shrink
3566
3576
  /// @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.
3567
3577
  /// @group flex-layout
3568
- .k-flex-shrink { flex-shrink: 1; }
3578
+ .k-flex-shrink { flex-shrink: 1; }
3579
+ .\!k-flex-shrink { flex-shrink: 1 !important; } // sass-lint:disable-line no-important class-name-format
3569
3580
  /// @name k-flex-shrink-0
3570
3581
  /// @description This is equivalent to `flex-shrink: 0`. The item will not shrink.
3571
3582
  /// @group flex-layout
3572
- .k-flex-shrink-0 { flex-shrink: 0; }
3583
+ .k-flex-shrink-0 { flex-shrink: 0; }
3584
+ .\!k-flex-shrink-0 { flex-shrink: 0 !important; } // sass-lint:disable-line no-important class-name-format
3573
3585
  /// @name k-flex-basis-auto
3574
3586
  /// @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.
3575
3587
  /// @group flex-layout
3576
- .k-flex-basis-auto { flex-basis: auto; }
3588
+ .k-flex-basis-auto { flex-basis: auto; }
3589
+ .\!k-flex-basis-auto { flex-basis: auto !important; } // sass-lint:disable-line no-important class-name-format
3577
3590
  /// @name k-flex-basis-0
3578
3591
  /// @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.
3579
3592
  /// @group flex-layout
3580
- .k-flex-basis-0 { flex-basis: 0%; }
3593
+ .k-flex-basis-0 { flex-basis: 0%; }
3594
+ .\!k-flex-basis-0 { flex-basis: 0% !important; } // sass-lint:disable-line no-important class-name-format
3581
3595
 
3582
3596
 
3583
3597
  // Flex align
3584
- .k-align-items-start { align-items: flex-start; }
3585
- .k-align-items-end { align-items: flex-end; }
3586
- .k-align-items-center { align-items: center; }
3587
- .k-align-items-stretch { align-items: stretch; }
3588
- .k-align-items-baseline { align-items: baseline; }
3589
-
3590
- .k-align-content-start { align-content: flex-start; }
3591
- .k-align-content-end { align-content: flex-end; }
3592
- .k-align-content-center { align-content: center; }
3593
- .k-align-content-stretch { align-content: stretch; }
3594
- .k-align-content-baseline { align-content: baseline; }
3595
-
3596
- .k-align-self-start { align-self: flex-start; }
3597
- .k-align-self-end { align-self: flex-end; }
3598
- .k-align-self-center { align-self: center; }
3599
- .k-align-self-stretch { align-self: stretch; }
3600
- .k-align-self-baseline { align-self: baseline; }
3598
+ .k-align-items-start { align-items: flex-start; }
3599
+ .\!k-align-items-start { align-items: flex-start !important; } // sass-lint:disable-line no-important class-name-format
3600
+ .k-align-items-end { align-items: flex-end; }
3601
+ .\!k-align-items-end { align-items: flex-end !important; } // sass-lint:disable-line no-important class-name-format
3602
+ .k-align-items-center { align-items: center; }
3603
+ .\!k-align-items-center { align-items: center !important; } // sass-lint:disable-line no-important class-name-format
3604
+ .k-align-items-stretch { align-items: stretch; }
3605
+ .\!k-align-items-stretch { align-items: stretch !important; } // sass-lint:disable-line no-important class-name-format
3606
+ .k-align-items-baseline { align-items: baseline; }
3607
+ .\!k-align-items-baseline { align-items: baseline !important; } // sass-lint:disable-line no-important class-name-format
3608
+
3609
+ .k-align-content-start { align-content: flex-start; }
3610
+ .\!k-align-content-start { align-content: flex-start !important; } // sass-lint:disable-line no-important class-name-format
3611
+ .k-align-content-end { align-content: flex-end; }
3612
+ .\!k-align-content-end { align-content: flex-end !important; } // sass-lint:disable-line no-important class-name-format
3613
+ .k-align-content-center { align-content: center; }
3614
+ .\!k-align-content-center { align-content: center !important; } // sass-lint:disable-line no-important class-name-format
3615
+ .k-align-content-stretch { align-content: stretch; }
3616
+ .\!k-align-content-stretch { align-content: stretch !important; } // sass-lint:disable-line no-important class-name-format
3617
+ .k-align-content-baseline { align-content: baseline; }
3618
+ .\!k-align-content-baseline { align-content: baseline !important; } // sass-lint:disable-line no-important class-name-format
3619
+
3620
+ .k-align-self-start { align-self: flex-start; }
3621
+ .\!k-align-self-start { align-self: flex-start !important; } // sass-lint:disable-line no-important class-name-format
3622
+ .k-align-self-end { align-self: flex-end; }
3623
+ .\!k-align-self-end { align-self: flex-end !important; } // sass-lint:disable-line no-important class-name-format
3624
+ .k-align-self-center { align-self: center; }
3625
+ .\!k-align-self-center { align-self: center !important; } // sass-lint:disable-line no-important class-name-format
3626
+ .k-align-self-stretch { align-self: stretch; }
3627
+ .\!k-align-self-stretch { align-self: stretch !important; } // sass-lint:disable-line no-important class-name-format
3628
+ .k-align-self-baseline { align-self: baseline; }
3629
+ .\!k-align-self-baseline { align-self: baseline !important; } // sass-lint:disable-line no-important class-name-format
3601
3630
 
3602
3631
 
3603
3632
  // Justify content
3604
- .k-justify-content-start { justify-content: flex-start; }
3605
- .k-justify-content-end { justify-content: flex-end; }
3606
- .k-justify-content-center { justify-content: center; }
3607
- .k-justify-content-between { justify-content: space-between; }
3608
- .k-justify-content-around { justify-content: space-around; }
3609
- .k-justify-content-evenly { justify-content: space-evenly; }
3610
- .k-justify-content-stretch > * { flex: 1 0 0%; }
3633
+ .k-justify-content-start { justify-content: flex-start; }
3634
+ .\!k-justify-content-start { justify-content: flex-start !important; } // sass-lint:disable-line no-important class-name-format
3635
+ .k-justify-content-end { justify-content: flex-end; }
3636
+ .\!k-justify-content-end { justify-content: flex-end !important; } // sass-lint:disable-line no-important class-name-format
3637
+ .k-justify-content-center { justify-content: center; }
3638
+ .\!k-justify-content-center { justify-content: center !important; } // sass-lint:disable-line no-important class-name-format
3639
+ .k-justify-content-between { justify-content: space-between; }
3640
+ .\!k-justify-content-between { justify-content: space-between !important; } // sass-lint:disable-line no-important class-name-format
3641
+ .k-justify-content-around { justify-content: space-around; }
3642
+ .\!k-justify-content-around { justify-content: space-around !important; } // sass-lint:disable-line no-important class-name-format
3643
+ .k-justify-content-evenly { justify-content: space-evenly; }
3644
+ .\!k-justify-content-evenly { justify-content: space-evenly !important; } // sass-lint:disable-line no-important class-name-format
3645
+ .k-justify-content-stretch > * { flex: 1 0 0%; }
3646
+ .\!k-justify-content-stretch > * { flex: 1 0 0% !important; } // sass-lint:disable-line no-important class-name-format
3611
3647
 
3612
3648
 
3613
3649
  // Justify items
3614
- .k-justify-items-start { justify-items: flex-start; }
3615
- .k-justify-items-end { justify-items: flex-end; }
3616
- .k-justify-items-center { justify-items: center; }
3617
- .k-justify-items-stretch { justify-items: stretch; }
3650
+ .k-justify-items-start { justify-items: flex-start; }
3651
+ .\!k-justify-items-start { justify-items: flex-start !important; } // sass-lint:disable-line no-important class-name-format
3652
+ .k-justify-items-end { justify-items: flex-end; }
3653
+ .\!k-justify-items-end { justify-items: flex-end !important; } // sass-lint:disable-line no-important class-name-format
3654
+ .k-justify-items-center { justify-items: center; }
3655
+ .\!k-justify-items-center { justify-items: center !important; } // sass-lint:disable-line no-important class-name-format
3656
+ .k-justify-items-stretch { justify-items: stretch; }
3657
+ .\!k-justify-items-stretch { justify-items: stretch !important; } // sass-lint:disable-line no-important class-name-format
3618
3658
 
3619
3659
  }
3620
3660
 
@@ -6888,6 +6928,14 @@ $kendo-checkbox-ripple-opacity: .25 !default;
6888
6928
  right: 0;
6889
6929
  }
6890
6930
  }
6931
+ .k-list-item-text,
6932
+ .k-list-optionlabel {
6933
+ &::before {
6934
+ content: "\200b";
6935
+ width: 0px;
6936
+ overflow: hidden;
6937
+ }
6938
+ }
6891
6939
  .k-list-optionlabel {
6892
6940
  @extend .k-list-item;
6893
6941
  }
@@ -7150,7 +7198,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
7150
7198
  // #region @import "_variables.scss"; -> packages/classic/scss/listgroup/_variables.scss
7151
7199
  // Listgroup
7152
7200
  $listgroup-border-width: 1px !default;
7153
- $listgroup-border-radius: $border-radius !default;
7201
+ $listgroup-border-radius: $kendo-border-radius-md !default;
7154
7202
 
7155
7203
  $listgroup-font-size: $font-size !default;
7156
7204
  $listgroup-line-height: $line-height !default;
@@ -7504,7 +7552,7 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
7504
7552
  }
7505
7553
  }
7506
7554
  .k-animation-container {
7507
- @include border-bottom-radius-only( $border-radius );
7555
+ @include border-bottom-radius-only( $kendo-border-radius-md );
7508
7556
 
7509
7557
  .k-popup {}
7510
7558
  }
@@ -7562,7 +7610,7 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
7562
7610
  }
7563
7611
 
7564
7612
  .k-animation-container {
7565
- @include border-bottom-radius-only( $border-radius );
7613
+ @include border-bottom-radius-only( $kendo-border-radius );
7566
7614
  }
7567
7615
 
7568
7616
  }
@@ -7703,21 +7751,21 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
7703
7751
  $badge-padding-x: $padding-x-sm !default;
7704
7752
  $badge-padding-y: $badge-padding-x !default;
7705
7753
  $badge-border-width: 1px !default;
7706
- $badge-border-radius: $border-radius !default;
7754
+ $badge-border-radius: $kendo-border-radius-md !default;
7707
7755
  $badge-font-size: $font-size-xs !default;
7708
7756
  $badge-line-height: 1 !default;
7709
7757
 
7710
7758
  $badge-padding-x-sm: ( $badge-padding-x / 2 ) !default;
7711
7759
  $badge-padding-y-sm: ( $badge-padding-y / 2 ) !default;
7712
7760
  $badge-border-width-sm: $badge-border-width !default;
7713
- $badge-border-radius-sm: $border-radius-sm !default;
7761
+ $badge-border-radius-sm: $kendo-border-radius-sm !default;
7714
7762
  $badge-font-size-sm: $font-size-xs !default;
7715
7763
  $badge-line-height-sm: 1 !default;
7716
7764
 
7717
7765
  $badge-padding-x-lg: ( $badge-padding-x * 1.5 ) !default;
7718
7766
  $badge-padding-y-lg: ( $badge-padding-y * 1.5 ) !default;
7719
7767
  $badge-border-width-lg: $badge-border-width !default;
7720
- $badge-border-radius-lg: $border-radius-lg !default;
7768
+ $badge-border-radius-lg: $kendo-border-radius-lg !default;
7721
7769
  $badge-font-size-lg: $font-size-sm !default;
7722
7770
  $badge-line-height-lg: 1 !default;
7723
7771
 
@@ -8199,6 +8247,7 @@ $kendo-button-transition: color .2s ease-in-out !default;
8199
8247
  box-sizing: border-box;
8200
8248
  border-width: $kendo-button-border-width;
8201
8249
  border-style: solid;
8250
+ border-radius: $kendo-button-border-radius;
8202
8251
  color: inherit;
8203
8252
  background: none;
8204
8253
  font-family: $kendo-button-font-family;
@@ -11156,6 +11205,8 @@ $kendo-chip-list-sizes: (
11156
11205
 
11157
11206
  // Chip content
11158
11207
  .k-chip-content {
11208
+ padding: .5em 0;
11209
+ margin: -.5em 0;
11159
11210
  min-width: 0;
11160
11211
  display: flex;
11161
11212
  flex-flow: row nowrap;
@@ -11435,7 +11486,7 @@ $kendo-chip-list-sizes: (
11435
11486
  // #endregion
11436
11487
  // #region @import "_variables.scss"; -> packages/classic/scss/color-preview/_variables.scss
11437
11488
  // Color Preview
11438
- $color-preview-border-radius: $border-radius !default;
11489
+ $color-preview-border-radius: $kendo-border-radius-md !default;
11439
11490
  $color-preview-border-width: 1px !default;
11440
11491
  $color-preview-bg: null !default;
11441
11492
  $color-preview-text: null !default;
@@ -11604,7 +11655,7 @@ $loader-secondary-bg: #656565 !default;
11604
11655
  $loader-container-panel-border-width: 1px !default;
11605
11656
  $loader-container-panel-border-style: solid !default;
11606
11657
  $loader-container-panel-border-color: $component-border !default;
11607
- $loader-container-panel-border-radius: $border-radius !default;
11658
+ $loader-container-panel-border-radius: $kendo-border-radius-md !default;
11608
11659
  $loader-container-panel-bg: $white !default;
11609
11660
 
11610
11661
  $loader-container-padding-sm: 15px !default;
@@ -12132,7 +12183,7 @@ $loader-container-font-size-lg: $font-size-lg !default;
12132
12183
  // #region @import "_variables.scss"; -> packages/classic/scss/skeleton/_variables.scss
12133
12184
  // Skeleton
12134
12185
  $skeleton-text-transform: scale( 1, .6 ) !default;
12135
- $skeleton-text-border-radius: $border-radius !default;
12186
+ $skeleton-text-border-radius: $kendo-border-radius-md !default;
12136
12187
 
12137
12188
  $skeleton-rect-border-radius: 0 !default;
12138
12189
 
@@ -12287,7 +12338,7 @@ $tooltip-padding-y: $padding-y !default;
12287
12338
  $tooltip-padding-x: $padding-x !default;
12288
12339
  $tooltip-max-width: null !default;
12289
12340
  $tooltip-border-width: 0px !default;
12290
- $tooltip-border-radius: $border-radius !default;
12341
+ $tooltip-border-radius: $kendo-border-radius-md !default;
12291
12342
 
12292
12343
  $tooltip-font-family: $font-family !default;
12293
12344
  $tooltip-font-size: $font-size !default;
@@ -13627,11 +13678,6 @@ $fieldset-legend-border: null !default;
13627
13678
  display: inline-flex;
13628
13679
  width: 100%;
13629
13680
  }
13630
- .k-daterangepicker {
13631
- width: 100%;
13632
- flex-flow: column nowrap;
13633
- gap: 0;
13634
- }
13635
13681
  }
13636
13682
 
13637
13683
  // Form Buttons Container
@@ -14559,7 +14605,7 @@ $progressbar-chunk-border: $body-bg !default;
14559
14605
 
14560
14606
  // Base
14561
14607
  .k-progressbar {
14562
- @include border-radius( $border-radius );
14608
+ @include border-radius( $kendo-border-radius );
14563
14609
  --kendo-progressbar-progress: 0;
14564
14610
  border-width: $progressbar-border-width;
14565
14611
  border-style: solid;
@@ -15875,7 +15921,7 @@ $slider-disabled-opacity: null !default;
15875
15921
 
15876
15922
  .k-slider-track,
15877
15923
  .k-slider-selection {
15878
- @include border-radius( $border-radius );
15924
+ @include border-radius( $kendo-border-radius );
15879
15925
  }
15880
15926
 
15881
15927
  .k-slider-track {
@@ -16005,7 +16051,7 @@ $calendar-footer-padding-y: map-get( $spacing, 2 ) !default;
16005
16051
  $calendar-cell-padding-x: map-get( $spacing, 1 ) !default;
16006
16052
  $calendar-cell-padding-y: $calendar-cell-padding-x !default;
16007
16053
  $calendar-cell-line-height: $calendar-line-height !default;
16008
- $calendar-cell-border-radius: $border-radius !default;
16054
+ $calendar-cell-border-radius: $kendo-border-radius-md !default;
16009
16055
 
16010
16056
  $calendar-header-cell-padding-x: null !default;
16011
16057
  $calendar-header-cell-padding-y: null !default;
@@ -16452,6 +16498,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
16452
16498
  line-height: $calendar-navigation-item-height;
16453
16499
  cursor: pointer;
16454
16500
  padding: 0 1em;
16501
+ overflow: hidden;
16502
+ white-space: nowrap;
16503
+ text-overflow: clip;
16455
16504
  }
16456
16505
  }
16457
16506
 
@@ -17584,7 +17633,7 @@ $colorgradient-spacer: map-get( $spacing, 3 ) !default;
17584
17633
 
17585
17634
  $colorgradient-width: 272px !default;
17586
17635
  $colorgradient-border-width: 1px !default;
17587
- $colorgradient-border-radius: $border-radius !default;
17636
+ $colorgradient-border-radius: $kendo-border-radius-md !default;
17588
17637
  $colorgradient-padding-y: $colorgradient-spacer !default;
17589
17638
  $colorgradient-padding-x: $colorgradient-padding-y !default;
17590
17639
  $colorgradient-gap: $colorgradient-spacer !default;
@@ -17599,7 +17648,7 @@ $colorgradient-focus-border: null !default;
17599
17648
  $colorgradient-focus-shadow: 1px 1px 7px 1px rgba(0, 0, 0, .3) !default;
17600
17649
 
17601
17650
 
17602
- $colorgradient-canvas-border-radius: $border-radius !default;
17651
+ $colorgradient-canvas-border-radius: $kendo-border-radius-md !default;
17603
17652
  $colorgradient-canvas-gap: $colorgradient-spacer !default;
17604
17653
  $colorgradient-canvas-rectangle-height: 180px !default;
17605
17654
 
@@ -17953,7 +18002,7 @@ $coloreditor-spacer: map-get( $spacing, 3 ) !default;
17953
18002
 
17954
18003
  $coloreditor-min-width: 272px !default;
17955
18004
  $coloreditor-border-width: 1px !default;
17956
- $coloreditor-border-radius: $border-radius !default;
18005
+ $coloreditor-border-radius: $kendo-border-radius-md !default;
17957
18006
  $coloreditor-font-family: $font-family !default;
17958
18007
  $coloreditor-font-size: $font-size !default;
17959
18008
  $coloreditor-line-height: $line-height !default;
@@ -19084,7 +19133,7 @@ $kendo-treeview-item-padding-y: map-get( $spacing, 1 ) !default;
19084
19133
  $kendo-treeview-item-border-width: 0px !default;
19085
19134
  /// Border radius of treeview items.
19086
19135
  /// @group treeview
19087
- $kendo-treeview-item-border-radius: $border-radius !default;
19136
+ $kendo-treeview-item-border-radius: $kendo-border-radius-md !default;
19088
19137
 
19089
19138
 
19090
19139
  /// The sizes of the treeview.
@@ -21361,7 +21410,7 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
21361
21410
  $kendo-fab-border-width: 1px !default;
21362
21411
  /// Border radius of the FAB.
21363
21412
  /// @group floating-action-button
21364
- $kendo-fab-border-radius: $border-radius !default;
21413
+ $kendo-fab-border-radius: $kendo-border-radius-md !default;
21365
21414
 
21366
21415
  /// Font family of the FAB.
21367
21416
  /// @group floating-action-button
@@ -22883,7 +22932,7 @@ $drawer-selected-hover-text: $selected-hover-text !default;
22883
22932
  $notification-padding-x: 8px !default;
22884
22933
  $notification-padding-y: 4px !default;
22885
22934
  $notification-border-width: 1px !default;
22886
- $notification-border-radius: $border-radius !default;
22935
+ $notification-border-radius: $kendo-border-radius-md !default;
22887
22936
 
22888
22937
  $notification-shadow: $popup-shadow !default;
22889
22938
 
@@ -22901,6 +22950,7 @@ $notification-border: $component-border !default;
22901
22950
  @function notification-theme( $colors ) {
22902
22951
  $_theme: ();
22903
22952
 
22953
+ // sass-lint:disable-block indentation
22904
22954
  @each $name, $color in $colors {
22905
22955
  $_theme: map-merge(( $name: (
22906
22956
  color: contrast-wcag( $color ),
@@ -23093,7 +23143,7 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
23093
23143
  $card-padding-x: map-get( $spacing, lg ) !default;
23094
23144
  $card-padding-y: map-get( $spacing, md ) !default;
23095
23145
  $card-border-width: 1px !default;
23096
- $card-border-radius: $border-radius-lg !default;
23146
+ $card-border-radius: $kendo-border-radius-lg !default;
23097
23147
  $card-inner-border-radius: calc( #{$card-border-radius} - #{$card-border-width} ) !default;
23098
23148
  $card-font-family: $font-family !default;
23099
23149
  $card-font-size: $font-size !default;
@@ -23990,7 +24040,7 @@ $bottom-nav-item-padding-y: 0 !default;
23990
24040
  $bottom-nav-item-min-width: 72px !default;
23991
24041
  $bottom-nav-item-max-width: null !default;
23992
24042
  $bottom-nav-item-min-height: calc( #{$icon-size * 2.5} + #{$padding-x * 2} - #{$bottom-nav-padding-x * 2} ) !default;
23993
- $bottom-nav-item-border-radius: $border-radius !default;
24043
+ $bottom-nav-item-border-radius: $kendo-border-radius-md !default;
23994
24044
  $bottom-nav-item-gap: 0 map-get( $spacing, 1 ) !default;
23995
24045
 
23996
24046
  $bottom-nav-item-icon-margin-y: map-get( $spacing, 2 ) !default;
@@ -24228,7 +24278,7 @@ $breadcrumb-delimiter-icon-padding-y: 0px !default;
24228
24278
 
24229
24279
  $breadcrumb-link-padding-x: $padding-x !default;
24230
24280
  $breadcrumb-link-padding-y: $padding-y-lg !default;
24231
- $breadcrumb-link-border-radius: $border-radius !default;
24281
+ $breadcrumb-link-border-radius: $kendo-border-radius-md !default;
24232
24282
 
24233
24283
  $breadcrumb-icon-link-padding-x: $breadcrumb-link-padding-x !default;
24234
24284
  $breadcrumb-icon-link-padding-y: $breadcrumb-icon-link-padding-x !default;
@@ -25230,7 +25280,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
25230
25280
 
25231
25281
  // Step label
25232
25282
  .k-step-label {
25233
- max-width: 10em;
25283
+ max-width: calc(min(100%, 10em));
25234
25284
  display: inline-flex;
25235
25285
  flex-wrap: wrap;
25236
25286
  align-items: center;
@@ -25655,7 +25705,7 @@ $tabstrip-item-padding-y: $nav-item-padding-y !default;
25655
25705
  $tabstrip-item-border-width: 1px !default;
25656
25706
  /// Border radius of tabs
25657
25707
  /// @group tabstrip
25658
- $tabstrip-item-border-radius: $border-radius !default;
25708
+ $tabstrip-item-border-radius: $kendo-border-radius-md !default;
25659
25709
  /// Spacing between tabs
25660
25710
  /// @group tabstrip
25661
25711
  $tabstrip-item-gap: $nav-item-margin !default;
@@ -27455,7 +27505,7 @@ $tilelayout-card-border-width: $card-border-width !default;
27455
27505
  $tilelayout-card-focus-shadow: $card-focus-shadow !default;
27456
27506
 
27457
27507
  $tilelayout-hint-border-width: 1px !default;
27458
- $tilelayout-hint-border-radius: $border-radius-lg !default;
27508
+ $tilelayout-hint-border-radius: $kendo-border-radius-lg !default;
27459
27509
 
27460
27510
  $tilelayout-bg: $base-bg !default;
27461
27511
 
@@ -28304,7 +28354,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
28304
28354
 
28305
28355
  $grid-hierarchy-col-width: ($icon-size * 2) !default;
28306
28356
 
28307
- $grid-group-indicator-border-radius: $border-radius !default;
28357
+ $grid-group-indicator-border-radius: $kendo-border-radius-md !default;
28308
28358
  $grid-group-indicator-gap: $table-cell-padding-y !default;
28309
28359
 
28310
28360
  $grid-grouping-row-border-top: 1px !default;
@@ -30525,9 +30575,9 @@ $spreadsheet-insert-image-dialog-preview-width: 355px !default;
30525
30575
  $spreadsheet-insert-image-dialog-preview-height: 230px !default;
30526
30576
  $spreadsheet-insert-image-dialog-preview-img: "image-default.png" !default;
30527
30577
  $spreadsheet-insert-image-dialog-preview-border: $component-border !default;
30528
- $spreadsheet-insert-image-dialog-preview-border-radius: $border-radius !default;
30578
+ $spreadsheet-insert-image-dialog-preview-border-radius: $kendo-border-radius-md !default;
30529
30579
  $spreadsheet-insert-image-dialog-preview-overlay-shadow: inset 0 0 0 2000px rgba(0, 0, 0, .5) !default;
30530
- $spreadsheet-insert-image-dialog-preview-overlay-border-radius: $border-radius !default;
30580
+ $spreadsheet-insert-image-dialog-preview-overlay-border-radius: $kendo-border-radius-md !default;
30531
30581
  $spreadsheet-insert-image-dialog-overlay-hovered-text: $component-bg !default;
30532
30582
 
30533
30583
  $spreadsheet-drawing-handle-width: 6px !default;
@@ -30537,7 +30587,7 @@ $spreadsheet-drawing-handle-border-width: 1px !default;
30537
30587
  $spreadsheet-drawing-handle-outline-color: $primary !default;
30538
30588
  $spreadsheet-drawing-handle-border-color: $selected-bg !default;
30539
30589
  $spreadsheet-drawing-handle-bg: $primary !default;
30540
- $spreadsheet-drawing-handle-border-radius: $border-radius-lg !default;
30590
+ $spreadsheet-drawing-handle-border-radius: $kendo-border-radius-lg !default;
30541
30591
 
30542
30592
  $spreadsheet-drawing-outline-style: solid !default;
30543
30593
  $spreadsheet-drawing-outline-width: 2px !default;
@@ -31124,7 +31174,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
31124
31174
  box-sizing: border-box;
31125
31175
  }
31126
31176
  .k-spreadsheet-filter {
31127
- @include border-radius( $border-radius );
31177
+ @include border-radius( $kendo-border-radius );
31128
31178
  line-height: 1;
31129
31179
  position: absolute;
31130
31180
  cursor: pointer;
@@ -31874,7 +31924,7 @@ $pivotgrid-configurator-button-size: calc( #{$pivotgrid-line-height * 1em} + #{$
31874
31924
  $pivotgrid-calculated-field-padding-x: $pivotgrid-spacer !default;
31875
31925
  $pivotgrid-calculated-field-padding-y: $pivotgrid-spacer !default;
31876
31926
  $pivotgrid-calculated-field-border-width: 1px !default;
31877
- $pivotgrid-calculated-field-border-radius: $border-radius-sm !default;
31927
+ $pivotgrid-calculated-field-border-radius: $kendo-border-radius-sm !default;
31878
31928
  $pivotgrid-calculated-field-gap: $pivotgrid-spacer !default;
31879
31929
 
31880
31930
  $pivotgrid-calculated-field-bg: $component-bg !default;
@@ -33762,7 +33812,7 @@ $taskboard-columns-container-gap: $taskboard-spacer !default;
33762
33812
 
33763
33813
  $taskboard-column-width: 320px !default;
33764
33814
  $taskboard-column-border-width: 1px !default;
33765
- $taskboard-column-border-radius: $border-radius !default;
33815
+ $taskboard-column-border-radius: $kendo-border-radius-md !default;
33766
33816
  $taskboard-column-bg: $base-bg !default;
33767
33817
  $taskboard-column-text: null !default;
33768
33818
  $taskboard-column-border: transparent !default;
@@ -34314,7 +34364,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
34314
34364
 
34315
34365
  // Inline editor
34316
34366
  .k-editor-inline {
34317
- @include border-radius( $border-radius );
34367
+ @include border-radius( $kendo-border-radius-md );
34318
34368
  padding: $padding-y-sm $padding-x-sm;
34319
34369
  border: 1px solid transparent;
34320
34370
  word-wrap: break-word;
@@ -34735,7 +34785,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
34735
34785
  white-space: nowrap;
34736
34786
  overflow: hidden;
34737
34787
  cursor: pointer;
34738
- @include border-radius( $border-radius );
34788
+ @include border-radius( $kendo-border-radius-md );
34739
34789
 
34740
34790
  .k-i-file,
34741
34791
  .k-i-folder {
@@ -35493,6 +35543,11 @@ $gantt-advanced-bg-lighter: tint($gantt-advanced-bg, 5) !default;
35493
35543
  $gantt-action-on-offset-text: #000000 !default;
35494
35544
  $gantt-offset-resize-handler-top: 50% !default;
35495
35545
 
35546
+ $gantt-validation-tooltip-width: 200px !default;
35547
+ $gantt-validation-tooltip-border: #656565 !default;
35548
+ $gantt-validation-tooltip-valid-border: $success !default;
35549
+ $gantt-validation-tooltip-invalid-border: $error !default;
35550
+
35496
35551
  // #endregion
35497
35552
  // #region @import "_layout.scss"; -> packages/classic/scss/gantt/_layout.scss
35498
35553
  // #region @import "~@progress/kendo-theme-default/scss/gantt/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/gantt/_layout.scss
@@ -36004,7 +36059,7 @@ $gantt-offset-resize-handler-top: 50% !default;
36004
36059
  // Single task
36005
36060
  .k-single-wrap {}
36006
36061
  .k-task-single {
36007
- @include border-radius( $border-radius );
36062
+ @include border-radius( $kendo-border-radius-md );
36008
36063
  border-width: $gantt-task-border-width;
36009
36064
  border-style: solid;
36010
36065
  box-sizing: border-box;
@@ -36037,7 +36092,7 @@ $gantt-offset-resize-handler-top: 50% !default;
36037
36092
  }
36038
36093
  }
36039
36094
  .k-task-complete {
36040
- @include border-radius( $border-radius );
36095
+ @include border-radius( $kendo-border-radius-md );
36041
36096
  width: 20%;
36042
36097
  position: absolute;
36043
36098
  z-index: 1;
@@ -36107,7 +36162,6 @@ $gantt-offset-resize-handler-top: 50% !default;
36107
36162
  }
36108
36163
 
36109
36164
  // Planned position
36110
-
36111
36165
  .k-gantt-planned {
36112
36166
  .k-gantt-dependencies,
36113
36167
  .k-task-dot,
@@ -36138,7 +36192,6 @@ $gantt-offset-resize-handler-top: 50% !default;
36138
36192
  }
36139
36193
 
36140
36194
  // Planned element
36141
-
36142
36195
  .k-task-planned {
36143
36196
  margin: 0 0 $gantt-planned-margin-y;
36144
36197
  line-height: $gantt-planned-line-height;
@@ -36171,7 +36224,6 @@ $gantt-offset-resize-handler-top: 50% !default;
36171
36224
  }
36172
36225
 
36173
36226
  // Planned Tooltip
36174
-
36175
36227
  .k-planned-tooltip {
36176
36228
  .k-task-content {
36177
36229
  display: block;
@@ -36179,7 +36231,6 @@ $gantt-offset-resize-handler-top: 50% !default;
36179
36231
  }
36180
36232
 
36181
36233
  // Delay offset
36182
-
36183
36234
  .k-task-offset-wrap .k-task-content .k-resize-e {
36184
36235
  display: none;
36185
36236
  }
@@ -36210,6 +36261,36 @@ $gantt-offset-resize-handler-top: 50% !default;
36210
36261
  .k-task-offset:hover .k-resize-handle {
36211
36262
  visibility: visible;
36212
36263
  }
36264
+
36265
+
36266
+ // Dependency Validation Tooltip
36267
+ .k-gantt-tooltip-validation {
36268
+ max-width: $gantt-validation-tooltip-width;
36269
+ display: block;
36270
+
36271
+ &::before {
36272
+ content: '';
36273
+ width: 4px;
36274
+ height: 100%;
36275
+ position: absolute;
36276
+ top: 0;
36277
+ left: 0;
36278
+ }
36279
+ }
36280
+ .k-gantt-tooltip-validation-row {
36281
+ display: flex;
36282
+ flex-direction: row;
36283
+ justify-content: space-between;
36284
+ }
36285
+ .k-gantt-tooltip-validation-label {
36286
+ display: inline-flex;
36287
+ white-space: nowrap;
36288
+ overflow: hidden;
36289
+ text-overflow: ellipsis;
36290
+ }
36291
+ .k-gantt-tooltip-validation-value {
36292
+ font-weight: $font-weight-bold;
36293
+ }
36213
36294
  }
36214
36295
 
36215
36296
  @include exports("gantt/export") {
@@ -36255,7 +36336,8 @@ $gantt-offset-resize-handler-top: 50% !default;
36255
36336
 
36256
36337
  @include exports("gantt/rtl") {
36257
36338
 
36258
- .k-rtl {
36339
+ .k-rtl,
36340
+ [dir="rtl"] {
36259
36341
 
36260
36342
  .k-gantt-rows,
36261
36343
  .k-gantt-columns {
@@ -36334,6 +36416,11 @@ $gantt-offset-resize-handler-top: 50% !default;
36334
36416
  .k-gantt-timeline .k-milestone-wrap .k-task-start {
36335
36417
  right: $gantt-rtl-milestone-dot-start-margin-x;
36336
36418
  }
36419
+
36420
+ .k-gantt-tooltip-validation::before {
36421
+ left: auto;
36422
+ right: 0;
36423
+ }
36337
36424
  }
36338
36425
  }
36339
36426
 
@@ -36588,7 +36675,6 @@ $gantt-offset-resize-handler-top: 50% !default;
36588
36675
  }
36589
36676
 
36590
36677
  // Tooltips
36591
-
36592
36678
  .k-offset-tooltip-delayed {
36593
36679
  @include fill(
36594
36680
  $bg: $gantt-delayed-bg
@@ -36600,6 +36686,22 @@ $gantt-offset-resize-handler-top: 50% !default;
36600
36686
  $bg: $gantt-planned-bg
36601
36687
  );
36602
36688
  }
36689
+
36690
+ .k-gantt-tooltip-validation {
36691
+ &::before {
36692
+ background-color: $gantt-validation-tooltip-border;
36693
+ }
36694
+ }
36695
+ .k-gantt-tooltip-valid {
36696
+ &::before {
36697
+ background-color: $gantt-validation-tooltip-valid-border;
36698
+ }
36699
+ }
36700
+ .k-gantt-tooltip-invalid {
36701
+ &::before {
36702
+ background-color: $gantt-validation-tooltip-invalid-border;
36703
+ }
36704
+ }
36603
36705
  }
36604
36706
 
36605
36707
  // #endregion
@@ -36663,7 +36765,7 @@ $scheduler-footer-border: $toolbar-border !default;
36663
36765
  $scheduler-footer-gradient: $toolbar-gradient !default;
36664
36766
 
36665
36767
  $scheduler-event-min-height: 25px !default;
36666
- $scheduler-event-border-radius: $border-radius !default;
36768
+ $scheduler-event-border-radius: $kendo-border-radius-md !default;
36667
36769
  $scheduler-event-line-height: calc( #{$scheduler-event-min-height} - (2 * #{$padding-y}) ) !default;
36668
36770
 
36669
36771
  $scheduler-event-bg: tint( $selected-bg, 2 ) !default;
@@ -36730,7 +36832,7 @@ $scheduler-tooltip-events-gap: $padding-y !default;
36730
36832
 
36731
36833
  $scheduler-tooltip-event-padding-x: $padding-x !default;
36732
36834
  $scheduler-tooltip-event-padding-y: $padding-y !default;
36733
- $scheduler-tooltip-event-border-radius: $border-radius !default;
36835
+ $scheduler-tooltip-event-border-radius: $kendo-border-radius-md !default;
36734
36836
  $scheduler-tooltip-event-gap: $padding-x-sm !default;
36735
36837
 
36736
36838
  $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
@@ -37133,7 +37235,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
37133
37235
  // Appointments
37134
37236
  kendo-scheduler .k-event,
37135
37237
  .k-event {
37136
- @include border-radius( $border-radius );
37238
+ @include border-radius( $kendo-border-radius );
37137
37239
  min-height: $scheduler-event-min-height;
37138
37240
  box-sizing: border-box;
37139
37241
  border-width: 0;
@@ -39176,7 +39278,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
39176
39278
  display: inline-block;
39177
39279
  text-align: center;
39178
39280
  padding: $timeline-flag-padding-y $timeline-flag-padding-x;
39179
- border-radius: $border-radius;
39281
+ border-radius: $kendo-border-radius;
39180
39282
  line-height: $timeline-flag-line-height;
39181
39283
  min-width: $timeline-flag-min-width;
39182
39284
  max-width: $timeline-flag-max-width;
@@ -39240,7 +39342,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
39240
39342
  }
39241
39343
 
39242
39344
  &::-webkit-scrollbar-thumb {
39243
- border-radius: $border-radius;
39345
+ border-radius: $kendo-border-radius;
39244
39346
  }
39245
39347
  }
39246
39348
  }
@@ -39284,7 +39386,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
39284
39386
  height: 100%;
39285
39387
  width: $timeline-track-size;
39286
39388
  transform: translateX(-50%);
39287
- border-radius: $border-radius-lg;
39389
+ border-radius: $kendo-border-radius-lg;
39288
39390
  }
39289
39391
 
39290
39392
  .k-timeline-flag-wrap {
@@ -40653,7 +40755,7 @@ $treemap-line-height: $line-height !default;
40653
40755
  }
40654
40756
 
40655
40757
  .k-chart-tooltip {
40656
- @include border-radius( $border-radius );
40758
+ @include border-radius( $kendo-border-radius-md );
40657
40759
  font-size: $chart-tooltip-font-size;
40658
40760
  line-height: $line-height;
40659
40761
  padding: $tooltip-padding-y $tooltip-padding-x;
@@ -40761,7 +40863,7 @@ $treemap-line-height: $line-height !default;
40761
40863
  }
40762
40864
 
40763
40865
  .k-navigator-hint .k-scroll {
40764
- @include border-radius( $border-radius );
40866
+ @include border-radius( $kendo-border-radius-md );
40765
40867
  position: absolute;
40766
40868
  height: 4px;
40767
40869
  }
@@ -40988,7 +41090,7 @@ $treemap-line-height: $line-height !default;
40988
41090
  base: $base-bg,
40989
41091
  background: $chart-bg,
40990
41092
 
40991
- border-radius: $border-radius,
41093
+ border-radius: $kendo-border-radius-md,
40992
41094
 
40993
41095
  normal-background: $base-bg,
40994
41096
  normal-text-color: $base-text,
@@ -41517,7 +41619,7 @@ $orgchart-node-container-gap: $orgchart-spacer !default;
41517
41619
  $orgchart-node-group-padding-y: $orgchart-spacer !default;
41518
41620
  $orgchart-node-group-padding-x: $orgchart-node-group-padding-y !default;
41519
41621
  $orgchart-node-group-border-width: 1px !default;
41520
- $orgchart-node-group-border-radius: $border-radius !default;
41622
+ $orgchart-node-group-border-radius: $kendo-border-radius-md !default;
41521
41623
  $orgchart-node-group-bg: $base-bg !default;
41522
41624
  $orgchart-node-group-text: $base-text !default;
41523
41625
  $orgchart-node-group-border: $base-border !default;