@progress/kendo-theme-default 5.1.2-dev.6 → 5.2.1-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +438 -187
- package/dist/all.scss +269 -133
- package/lib/swatches/default-blue.json +2 -1
- package/lib/swatches/default-dataviz-v4.json +2 -1
- package/lib/swatches/default-green.json +2 -1
- package/lib/swatches/default-main-dark.json +2 -1
- package/lib/swatches/default-main.json +2 -1
- package/lib/swatches/default-nordic.json +2 -1
- package/lib/swatches/default-orange.json +2 -1
- package/lib/swatches/default-purple.json +2 -1
- package/lib/swatches/default-turquoise.json +2 -1
- package/lib/swatches/default-urban.json +2 -1
- package/package.json +3 -3
- package/scss/_variables.scss +5 -4
- package/scss/badge/_variables.scss +3 -3
- package/scss/bottom-navigation/_variables.scss +1 -1
- package/scss/breadcrumb/_variables.scss +1 -1
- package/scss/button/_layout.scss +13 -0
- package/scss/button/_variables.scss +11 -0
- package/scss/calendar/_layout.scss +3 -0
- package/scss/calendar/_variables.scss +1 -1
- package/scss/card/_variables.scss +1 -1
- package/scss/chip/_layout.scss +2 -0
- package/scss/color-preview/_variables.scss +1 -1
- package/scss/coloreditor/_variables.scss +1 -1
- package/scss/colorgradient/_layout.scss +4 -0
- package/scss/colorgradient/_variables.scss +2 -2
- package/scss/common/_base.scss +2 -2
- package/scss/dataviz/_layout.scss +3 -3
- package/scss/editor/_layout.scss +2 -2
- package/scss/fab/_variables.scss +1 -1
- package/scss/forms/_layout.scss +0 -5
- package/scss/gantt/_layout.scss +39 -7
- package/scss/gantt/_theme.scss +16 -1
- package/scss/gantt/_variables.scss +5 -0
- package/scss/grid/_layout.scss +1 -1
- package/scss/imageeditor/_layout.scss +5 -0
- package/scss/input/_layout.scss +2 -2
- package/scss/list/_layout.scss +8 -0
- package/scss/listgroup/_variables.scss +1 -1
- package/scss/loader/_variables.scss +1 -1
- package/scss/notification/_variables.scss +2 -1
- package/scss/orgchart/_variables.scss +1 -1
- package/scss/pager/_layout.scss +5 -0
- package/scss/pivotgrid/_variables.scss +1 -1
- package/scss/popup/_layout.scss +1 -1
- package/scss/popup/_theme.scss +1 -1
- package/scss/progressbar/_layout.scss +1 -1
- package/scss/scheduler/_layout.scss +1 -1
- package/scss/scheduler/_variables.scss +2 -2
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/slider/_theme.scss +1 -1
- package/scss/spreadsheet/_layout.scss +1 -5
- package/scss/spreadsheet/_variables.scss +3 -3
- package/scss/stepper/_layout.scss +2 -1
- package/scss/tabstrip/_variables.scss +1 -1
- package/scss/taskboard/_variables.scss +2 -2
- package/scss/tilelayout/_variables.scss +1 -1
- package/scss/timeline/_layout.scss +3 -3
- package/scss/tooltip/_variables.scss +1 -1
- package/scss/treeview/_variables.scss +1 -1
- package/scss/utils/_border.scss +4 -4
- 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:
|
|
1068
|
-
$border-radius-sm: $border-radius
|
|
1069
|
-
$border-radius-
|
|
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:
|
|
3341
|
+
default: $kendo-border-radius-md,
|
|
3341
3342
|
0: 0,
|
|
3342
|
-
sm:
|
|
3343
|
-
md:
|
|
3344
|
-
lg:
|
|
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
|
|
3463
|
-
.\!k-d-flex
|
|
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
|
|
3468
|
-
.\!k-d-inline-flex
|
|
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
|
|
3473
|
-
.\!k-d-flex-row
|
|
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
|
|
3478
|
-
.\!k-d-flex-col
|
|
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
|
|
3483
|
-
.\!k-flex-row
|
|
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
|
|
3488
|
-
.\!k-flex-row-reverse
|
|
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
|
|
3493
|
-
.\!k-flex-col
|
|
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
|
|
3498
|
-
.\!k-flex-col-reverse
|
|
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
|
|
3503
|
-
.k-flex-column-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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
3568
|
-
|
|
3569
|
-
.k-align-items-
|
|
3570
|
-
|
|
3571
|
-
.k-align-items-
|
|
3572
|
-
|
|
3573
|
-
.k-align-
|
|
3574
|
-
|
|
3575
|
-
.k-align-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
.k-align-
|
|
3581
|
-
|
|
3582
|
-
.k-align-
|
|
3583
|
-
|
|
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
|
|
3588
|
-
|
|
3589
|
-
.k-justify-content-
|
|
3590
|
-
|
|
3591
|
-
.k-justify-content-
|
|
3592
|
-
|
|
3593
|
-
.k-justify-content-
|
|
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
|
|
3598
|
-
|
|
3599
|
-
.k-justify-items-
|
|
3600
|
-
|
|
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
|
|
|
@@ -7914,8 +7962,19 @@ $kendo-button-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-but
|
|
|
7914
7962
|
/// @group button
|
|
7915
7963
|
$kendo-button-inner-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-button-padding-y * 2} ) !default;
|
|
7916
7964
|
|
|
7965
|
+
/// Horizontal padding of the arrow button.
|
|
7966
|
+
/// @group button
|
|
7917
7967
|
$kendo-button-arrow-padding-x: $kendo-button-padding-y !default;
|
|
7968
|
+
$kendo-button-arrow-padding-x-sm: $kendo-button-padding-y-sm !default;
|
|
7969
|
+
$kendo-button-arrow-padding-x-md: $kendo-button-padding-y-md !default;
|
|
7970
|
+
$kendo-button-arrow-padding-x-lg: $kendo-button-padding-y-lg !default;
|
|
7971
|
+
|
|
7972
|
+
/// Vertical padding of the arrow button.
|
|
7973
|
+
/// @group button
|
|
7918
7974
|
$kendo-button-arrow-padding-y: $kendo-button-padding-y !default;
|
|
7975
|
+
$kendo-button-arrow-padding-y-sm: $kendo-button-padding-y-sm !default;
|
|
7976
|
+
$kendo-button-arrow-padding-y-md: $kendo-button-padding-y-md !default;
|
|
7977
|
+
$kendo-button-arrow-padding-y-lg: $kendo-button-padding-y-lg !default;
|
|
7919
7978
|
|
|
7920
7979
|
/// Theme colors map for the button.
|
|
7921
7980
|
/// @group button
|
|
@@ -8078,6 +8137,7 @@ $kendo-button-transition: color .2s ease-in-out !default;
|
|
|
8078
8137
|
box-sizing: border-box;
|
|
8079
8138
|
border-width: $kendo-button-border-width;
|
|
8080
8139
|
border-style: solid;
|
|
8140
|
+
border-radius: $kendo-button-border-radius;
|
|
8081
8141
|
color: inherit;
|
|
8082
8142
|
background: none;
|
|
8083
8143
|
font-family: $kendo-button-font-family;
|
|
@@ -8292,6 +8352,18 @@ $kendo-button-transition: color .2s ease-in-out !default;
|
|
|
8292
8352
|
aspect-ratio: auto;
|
|
8293
8353
|
flex: none;
|
|
8294
8354
|
|
|
8355
|
+
&.k-button-sm {
|
|
8356
|
+
padding: $kendo-button-arrow-padding-y-sm $kendo-button-arrow-padding-x-sm;
|
|
8357
|
+
}
|
|
8358
|
+
|
|
8359
|
+
&.k-button-md {
|
|
8360
|
+
padding: $kendo-button-arrow-padding-y-md $kendo-button-arrow-padding-x-md;
|
|
8361
|
+
}
|
|
8362
|
+
|
|
8363
|
+
&.k-button-lg {
|
|
8364
|
+
padding: $kendo-button-arrow-padding-y-lg $kendo-button-arrow-padding-x-lg;
|
|
8365
|
+
}
|
|
8366
|
+
|
|
8295
8367
|
.k-button-icon {
|
|
8296
8368
|
min-width: 0;
|
|
8297
8369
|
}
|
|
@@ -8977,7 +9049,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
8977
9049
|
position: relative;
|
|
8978
9050
|
z-index: 1;
|
|
8979
9051
|
overflow: hidden;
|
|
8980
|
-
text-overflow:
|
|
9052
|
+
text-overflow: ellipsis;
|
|
8981
9053
|
-webkit-appearance: none;
|
|
8982
9054
|
|
|
8983
9055
|
// Hide clear icon
|
|
@@ -9016,7 +9088,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9016
9088
|
.k-input-value-text {
|
|
9017
9089
|
flex: 1;
|
|
9018
9090
|
overflow: hidden;
|
|
9019
|
-
text-overflow:
|
|
9091
|
+
text-overflow: ellipsis;
|
|
9020
9092
|
}
|
|
9021
9093
|
.k-input-value-text::before {
|
|
9022
9094
|
content: "\200b";
|
|
@@ -10993,6 +11065,8 @@ $kendo-chip-list-sizes: (
|
|
|
10993
11065
|
|
|
10994
11066
|
// Chip content
|
|
10995
11067
|
.k-chip-content {
|
|
11068
|
+
padding: .5em 0;
|
|
11069
|
+
margin: -.5em 0;
|
|
10996
11070
|
min-width: 0;
|
|
10997
11071
|
display: flex;
|
|
10998
11072
|
flex-flow: row nowrap;
|
|
@@ -11267,7 +11341,7 @@ $kendo-chip-list-sizes: (
|
|
|
11267
11341
|
// #endregion
|
|
11268
11342
|
// #region @import "_variables.scss"; -> packages/default/scss/color-preview/_variables.scss
|
|
11269
11343
|
// Color Preview
|
|
11270
|
-
$color-preview-border-radius: $border-radius !default;
|
|
11344
|
+
$color-preview-border-radius: $kendo-border-radius-md !default;
|
|
11271
11345
|
$color-preview-border-width: 1px !default;
|
|
11272
11346
|
$color-preview-bg: null !default;
|
|
11273
11347
|
$color-preview-text: null !default;
|
|
@@ -11429,7 +11503,7 @@ $loader-secondary-bg: #656565 !default;
|
|
|
11429
11503
|
$loader-container-panel-border-width: 1px !default;
|
|
11430
11504
|
$loader-container-panel-border-style: solid !default;
|
|
11431
11505
|
$loader-container-panel-border-color: $component-border !default;
|
|
11432
|
-
$loader-container-panel-border-radius: $border-radius !default;
|
|
11506
|
+
$loader-container-panel-border-radius: $kendo-border-radius-md !default;
|
|
11433
11507
|
$loader-container-panel-bg: $white !default;
|
|
11434
11508
|
|
|
11435
11509
|
$loader-container-padding-sm: map-get( $spacing, 4 ) !default;
|
|
@@ -11951,7 +12025,7 @@ $loader-container-font-size-lg: $font-size-lg !default;
|
|
|
11951
12025
|
// #region @import "_variables.scss"; -> packages/default/scss/skeleton/_variables.scss
|
|
11952
12026
|
// Skeleton
|
|
11953
12027
|
$skeleton-text-transform: scale( 1, .6 ) !default;
|
|
11954
|
-
$skeleton-text-border-radius: $border-radius !default;
|
|
12028
|
+
$skeleton-text-border-radius: $kendo-border-radius-md !default;
|
|
11955
12029
|
|
|
11956
12030
|
$skeleton-rect-border-radius: 0 !default;
|
|
11957
12031
|
|
|
@@ -12100,7 +12174,7 @@ $tooltip-padding-y: $padding-y !default;
|
|
|
12100
12174
|
$tooltip-padding-x: $padding-x !default;
|
|
12101
12175
|
$tooltip-max-width: null !default;
|
|
12102
12176
|
$tooltip-border-width: 0px !default;
|
|
12103
|
-
$tooltip-border-radius: $border-radius !default;
|
|
12177
|
+
$tooltip-border-radius: $kendo-border-radius-md !default;
|
|
12104
12178
|
|
|
12105
12179
|
$tooltip-font-family: $font-family !default;
|
|
12106
12180
|
$tooltip-font-size: $font-size !default;
|
|
@@ -13421,11 +13495,6 @@ $fieldset-legend-border: null !default;
|
|
|
13421
13495
|
display: inline-flex;
|
|
13422
13496
|
width: 100%;
|
|
13423
13497
|
}
|
|
13424
|
-
.k-daterangepicker {
|
|
13425
|
-
width: 100%;
|
|
13426
|
-
flex-flow: column nowrap;
|
|
13427
|
-
gap: 0;
|
|
13428
|
-
}
|
|
13429
13498
|
}
|
|
13430
13499
|
|
|
13431
13500
|
// Form Buttons Container
|
|
@@ -14317,7 +14386,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
14317
14386
|
|
|
14318
14387
|
// Base
|
|
14319
14388
|
.k-progressbar {
|
|
14320
|
-
@include border-radius( $border-radius );
|
|
14389
|
+
@include border-radius( $kendo-border-radius );
|
|
14321
14390
|
--kendo-progressbar-progress: 0;
|
|
14322
14391
|
border-width: $progressbar-border-width;
|
|
14323
14392
|
border-style: solid;
|
|
@@ -15618,7 +15687,7 @@ $slider-disabled-opacity: null !default;
|
|
|
15618
15687
|
|
|
15619
15688
|
.k-slider-track,
|
|
15620
15689
|
.k-slider-selection {
|
|
15621
|
-
@include border-radius( $border-radius );
|
|
15690
|
+
@include border-radius( $kendo-border-radius );
|
|
15622
15691
|
}
|
|
15623
15692
|
|
|
15624
15693
|
.k-slider-track {
|
|
@@ -15746,7 +15815,7 @@ $calendar-footer-padding-y: map-get( $spacing, 2 ) !default;
|
|
|
15746
15815
|
$calendar-cell-padding-x: .5em !default;
|
|
15747
15816
|
$calendar-cell-padding-y: $calendar-cell-padding-x !default;
|
|
15748
15817
|
$calendar-cell-line-height: $calendar-line-height !default;
|
|
15749
|
-
$calendar-cell-border-radius: $border-radius !default;
|
|
15818
|
+
$calendar-cell-border-radius: $kendo-border-radius-md !default;
|
|
15750
15819
|
|
|
15751
15820
|
$calendar-header-cell-padding-x: null !default;
|
|
15752
15821
|
$calendar-header-cell-padding-y: null !default;
|
|
@@ -16192,6 +16261,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
16192
16261
|
line-height: $calendar-navigation-item-height;
|
|
16193
16262
|
cursor: pointer;
|
|
16194
16263
|
padding: 0 1em;
|
|
16264
|
+
overflow: hidden;
|
|
16265
|
+
white-space: nowrap;
|
|
16266
|
+
text-overflow: clip;
|
|
16195
16267
|
}
|
|
16196
16268
|
}
|
|
16197
16269
|
|
|
@@ -17288,7 +17360,7 @@ $colorgradient-spacer: map-get( $spacing, 3 ) !default;
|
|
|
17288
17360
|
|
|
17289
17361
|
$colorgradient-width: 272px !default;
|
|
17290
17362
|
$colorgradient-border-width: 1px !default;
|
|
17291
|
-
$colorgradient-border-radius: $border-radius !default;
|
|
17363
|
+
$colorgradient-border-radius: $kendo-border-radius-md !default;
|
|
17292
17364
|
$colorgradient-padding-y: $colorgradient-spacer !default;
|
|
17293
17365
|
$colorgradient-padding-x: $colorgradient-padding-y !default;
|
|
17294
17366
|
$colorgradient-gap: $colorgradient-spacer !default;
|
|
@@ -17302,7 +17374,7 @@ $colorgradient-border: $component-border !default;
|
|
|
17302
17374
|
$colorgradient-focus-border: null !default;
|
|
17303
17375
|
$colorgradient-focus-shadow: 1px 1px 7px 1px rgba(0, 0, 0, .3) !default;
|
|
17304
17376
|
|
|
17305
|
-
$colorgradient-canvas-border-radius: $border-radius !default;
|
|
17377
|
+
$colorgradient-canvas-border-radius: $kendo-border-radius-md !default;
|
|
17306
17378
|
$colorgradient-canvas-gap: $colorgradient-spacer !default;
|
|
17307
17379
|
$colorgradient-canvas-rectangle-height: 180px !default;
|
|
17308
17380
|
|
|
@@ -17473,6 +17545,10 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 1.5 ) !default;
|
|
|
17473
17545
|
.k-numerictextbox {
|
|
17474
17546
|
width: $colorgradient-input-width;
|
|
17475
17547
|
}
|
|
17548
|
+
|
|
17549
|
+
.k-input-inner {
|
|
17550
|
+
text-overflow: clip;
|
|
17551
|
+
}
|
|
17476
17552
|
}
|
|
17477
17553
|
|
|
17478
17554
|
// Contrast
|
|
@@ -17650,7 +17726,7 @@ $coloreditor-spacer: map-get( $spacing, 3 ) !default;
|
|
|
17650
17726
|
|
|
17651
17727
|
$coloreditor-min-width: 272px !default;
|
|
17652
17728
|
$coloreditor-border-width: 1px !default;
|
|
17653
|
-
$coloreditor-border-radius: $border-radius !default;
|
|
17729
|
+
$coloreditor-border-radius: $kendo-border-radius-md !default;
|
|
17654
17730
|
$coloreditor-font-family: $font-family !default;
|
|
17655
17731
|
$coloreditor-font-size: $font-size !default;
|
|
17656
17732
|
$coloreditor-line-height: $line-height !default;
|
|
@@ -18721,7 +18797,7 @@ $kendo-treeview-item-padding-y: map-get( $spacing, 1 ) !default;
|
|
|
18721
18797
|
$kendo-treeview-item-border-width: 0px !default;
|
|
18722
18798
|
/// Border radius of treeview items.
|
|
18723
18799
|
/// @group treeview
|
|
18724
|
-
$kendo-treeview-item-border-radius: $border-radius !default;
|
|
18800
|
+
$kendo-treeview-item-border-radius: $kendo-border-radius-md !default;
|
|
18725
18801
|
|
|
18726
18802
|
|
|
18727
18803
|
/// The sizes of the treeview.
|
|
@@ -20944,7 +21020,7 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
20944
21020
|
$kendo-fab-border-width: 1px !default;
|
|
20945
21021
|
/// Border radius of the FAB.
|
|
20946
21022
|
/// @group floating-action-button
|
|
20947
|
-
$kendo-fab-border-radius: $border-radius !default;
|
|
21023
|
+
$kendo-fab-border-radius: $kendo-border-radius-md !default;
|
|
20948
21024
|
|
|
20949
21025
|
/// Font family of the FAB.
|
|
20950
21026
|
/// @group floating-action-button
|
|
@@ -22436,7 +22512,7 @@ $drawer-selected-hover-text: $selected-hover-text !default;
|
|
|
22436
22512
|
$notification-padding-x: 8px !default;
|
|
22437
22513
|
$notification-padding-y: 4px !default;
|
|
22438
22514
|
$notification-border-width: 1px !default;
|
|
22439
|
-
$notification-border-radius: $border-radius !default;
|
|
22515
|
+
$notification-border-radius: $kendo-border-radius-md !default;
|
|
22440
22516
|
|
|
22441
22517
|
$notification-shadow: $popup-shadow !default;
|
|
22442
22518
|
|
|
@@ -22454,6 +22530,7 @@ $notification-border: $component-border !default;
|
|
|
22454
22530
|
@function notification-theme( $colors ) {
|
|
22455
22531
|
$_theme: ();
|
|
22456
22532
|
|
|
22533
|
+
// sass-lint:disable-block indentation
|
|
22457
22534
|
@each $name, $color in $colors {
|
|
22458
22535
|
$_theme: map-merge(( $name: (
|
|
22459
22536
|
color: contrast-wcag( $color ),
|
|
@@ -22637,7 +22714,7 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
22637
22714
|
$card-padding-x: map-get( $spacing, lg ) !default;
|
|
22638
22715
|
$card-padding-y: map-get( $spacing, md ) !default;
|
|
22639
22716
|
$card-border-width: 1px !default;
|
|
22640
|
-
$card-border-radius: $border-radius-lg !default;
|
|
22717
|
+
$card-border-radius: $kendo-border-radius-lg !default;
|
|
22641
22718
|
$card-inner-border-radius: calc( #{$card-border-radius} - #{$card-border-width} ) !default;
|
|
22642
22719
|
$card-font-family: $font-family !default;
|
|
22643
22720
|
$card-font-size: $font-size !default;
|
|
@@ -23519,7 +23596,7 @@ $bottom-nav-item-padding-y: 0 !default;
|
|
|
23519
23596
|
$bottom-nav-item-min-width: 72px !default;
|
|
23520
23597
|
$bottom-nav-item-max-width: null !default;
|
|
23521
23598
|
$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;
|
|
23599
|
+
$bottom-nav-item-border-radius: $kendo-border-radius-md !default;
|
|
23523
23600
|
$bottom-nav-item-gap: 0 map-get( $spacing, 1 ) !default;
|
|
23524
23601
|
|
|
23525
23602
|
$bottom-nav-item-icon-margin-y: map-get( $spacing, 2 ) !default;
|
|
@@ -23753,7 +23830,7 @@ $breadcrumb-delimiter-icon-padding-y: 0px !default;
|
|
|
23753
23830
|
|
|
23754
23831
|
$breadcrumb-link-padding-x: $padding-x !default;
|
|
23755
23832
|
$breadcrumb-link-padding-y: $padding-y-lg !default;
|
|
23756
|
-
$breadcrumb-link-border-radius: $border-radius !default;
|
|
23833
|
+
$breadcrumb-link-border-radius: $kendo-border-radius-md !default;
|
|
23757
23834
|
|
|
23758
23835
|
$breadcrumb-icon-link-padding-x: $breadcrumb-link-padding-x !default;
|
|
23759
23836
|
$breadcrumb-icon-link-padding-y: $breadcrumb-icon-link-padding-x !default;
|
|
@@ -24289,6 +24366,11 @@ $pager-dropdown-width: 5em !default;
|
|
|
24289
24366
|
width: $pager-dropdown-width;
|
|
24290
24367
|
}
|
|
24291
24368
|
|
|
24369
|
+
.k-input-inner,
|
|
24370
|
+
.k-input-value-text {
|
|
24371
|
+
text-overflow: clip;
|
|
24372
|
+
}
|
|
24373
|
+
|
|
24292
24374
|
.k-rtl &,
|
|
24293
24375
|
[dir="rtl"] & {
|
|
24294
24376
|
.k-dropdown-list,
|
|
@@ -24709,6 +24791,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
24709
24791
|
display: flex;
|
|
24710
24792
|
align-items: center;
|
|
24711
24793
|
justify-content: center;
|
|
24794
|
+
flex: none;
|
|
24712
24795
|
position: relative;
|
|
24713
24796
|
z-index: 1;
|
|
24714
24797
|
overflow: visible;
|
|
@@ -24742,7 +24825,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
24742
24825
|
|
|
24743
24826
|
// Step label
|
|
24744
24827
|
.k-step-label {
|
|
24745
|
-
max-width: 10em;
|
|
24828
|
+
max-width: clamp(100%, 10em, 100%);
|
|
24746
24829
|
display: inline-flex;
|
|
24747
24830
|
flex-wrap: wrap;
|
|
24748
24831
|
align-items: center;
|
|
@@ -25162,7 +25245,7 @@ $tabstrip-item-padding-y: $nav-item-padding-y !default;
|
|
|
25162
25245
|
$tabstrip-item-border-width: 1px !default;
|
|
25163
25246
|
/// Border radius of tabs
|
|
25164
25247
|
/// @group tabstrip
|
|
25165
|
-
$tabstrip-item-border-radius: $border-radius !default;
|
|
25248
|
+
$tabstrip-item-border-radius: $kendo-border-radius-md !default;
|
|
25166
25249
|
/// Spacing between tabs
|
|
25167
25250
|
/// @group tabstrip
|
|
25168
25251
|
$tabstrip-item-gap: $nav-item-margin !default;
|
|
@@ -26931,7 +27014,7 @@ $tilelayout-card-border-width: $card-border-width !default;
|
|
|
26931
27014
|
$tilelayout-card-focus-shadow: $card-focus-shadow !default;
|
|
26932
27015
|
|
|
26933
27016
|
$tilelayout-hint-border-width: 1px !default;
|
|
26934
|
-
$tilelayout-hint-border-radius: $border-radius-lg !default;
|
|
27017
|
+
$tilelayout-hint-border-radius: $kendo-border-radius-lg !default;
|
|
26935
27018
|
|
|
26936
27019
|
$tilelayout-bg: $base-bg !default;
|
|
26937
27020
|
|
|
@@ -27767,7 +27850,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
27767
27850
|
|
|
27768
27851
|
$grid-hierarchy-col-width: ($icon-size * 2) !default;
|
|
27769
27852
|
|
|
27770
|
-
$grid-group-indicator-border-radius: $border-radius !default;
|
|
27853
|
+
$grid-group-indicator-border-radius: $kendo-border-radius-md !default;
|
|
27771
27854
|
$grid-group-indicator-gap: $table-cell-padding-y !default;
|
|
27772
27855
|
|
|
27773
27856
|
$grid-grouping-row-border-top: 1px !default;
|
|
@@ -29977,9 +30060,9 @@ $spreadsheet-insert-image-dialog-preview-width: 355px !default;
|
|
|
29977
30060
|
$spreadsheet-insert-image-dialog-preview-height: 230px !default;
|
|
29978
30061
|
$spreadsheet-insert-image-dialog-preview-img: "image-default.png" !default;
|
|
29979
30062
|
$spreadsheet-insert-image-dialog-preview-border: $component-border !default;
|
|
29980
|
-
$spreadsheet-insert-image-dialog-preview-border-radius: $border-radius !default;
|
|
30063
|
+
$spreadsheet-insert-image-dialog-preview-border-radius: $kendo-border-radius-md !default;
|
|
29981
30064
|
$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;
|
|
30065
|
+
$spreadsheet-insert-image-dialog-preview-overlay-border-radius: $kendo-border-radius-md !default;
|
|
29983
30066
|
$spreadsheet-insert-image-dialog-overlay-hovered-text: $component-bg !default;
|
|
29984
30067
|
|
|
29985
30068
|
$spreadsheet-drawing-handle-width: 6px !default;
|
|
@@ -29989,7 +30072,7 @@ $spreadsheet-drawing-handle-border-width: 1px !default;
|
|
|
29989
30072
|
$spreadsheet-drawing-handle-outline-color: $primary !default;
|
|
29990
30073
|
$spreadsheet-drawing-handle-border-color: $selected-bg !default;
|
|
29991
30074
|
$spreadsheet-drawing-handle-bg: $primary !default;
|
|
29992
|
-
$spreadsheet-drawing-handle-border-radius: $border-radius-lg !default;
|
|
30075
|
+
$spreadsheet-drawing-handle-border-radius: $kendo-border-radius-lg !default;
|
|
29993
30076
|
|
|
29994
30077
|
$spreadsheet-drawing-outline-style: solid !default;
|
|
29995
30078
|
$spreadsheet-drawing-outline-width: 2px !default;
|
|
@@ -30097,10 +30180,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
30097
30180
|
min-width: $form-line-height * 1em;
|
|
30098
30181
|
}
|
|
30099
30182
|
|
|
30100
|
-
.k-input,
|
|
30101
|
-
.k-picker {
|
|
30102
|
-
width: 5em;
|
|
30103
|
-
}
|
|
30104
30183
|
.k-color-picker {
|
|
30105
30184
|
width: min-content;
|
|
30106
30185
|
}
|
|
@@ -30575,7 +30654,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
30575
30654
|
box-sizing: border-box;
|
|
30576
30655
|
}
|
|
30577
30656
|
.k-spreadsheet-filter {
|
|
30578
|
-
@include border-radius( $border-radius );
|
|
30657
|
+
@include border-radius( $kendo-border-radius );
|
|
30579
30658
|
line-height: 1;
|
|
30580
30659
|
position: absolute;
|
|
30581
30660
|
cursor: pointer;
|
|
@@ -31319,7 +31398,7 @@ $pivotgrid-configurator-button-size: calc( #{$pivotgrid-line-height * 1em} + #{$
|
|
|
31319
31398
|
$pivotgrid-calculated-field-padding-x: $pivotgrid-spacer !default;
|
|
31320
31399
|
$pivotgrid-calculated-field-padding-y: $pivotgrid-spacer !default;
|
|
31321
31400
|
$pivotgrid-calculated-field-border-width: 1px !default;
|
|
31322
|
-
$pivotgrid-calculated-field-border-radius: $border-radius !default;
|
|
31401
|
+
$pivotgrid-calculated-field-border-radius: $kendo-border-radius-md !default;
|
|
31323
31402
|
$pivotgrid-calculated-field-gap: $pivotgrid-spacer !default;
|
|
31324
31403
|
|
|
31325
31404
|
$pivotgrid-calculated-field-bg: $component-bg !default;
|
|
@@ -33184,7 +33263,7 @@ $taskboard-columns-container-gap: $taskboard-spacer !default;
|
|
|
33184
33263
|
|
|
33185
33264
|
$taskboard-column-width: 320px !default;
|
|
33186
33265
|
$taskboard-column-border-width: 1px !default;
|
|
33187
|
-
$taskboard-column-border-radius: $border-radius !default;
|
|
33266
|
+
$taskboard-column-border-radius: $kendo-border-radius-md !default;
|
|
33188
33267
|
$taskboard-column-bg: $base-bg !default;
|
|
33189
33268
|
$taskboard-column-text: null !default;
|
|
33190
33269
|
$taskboard-column-border: transparent !default;
|
|
@@ -33226,7 +33305,7 @@ $taskboard-pane-actions-padding-x: $taskboard-spacer !default;
|
|
|
33226
33305
|
$taskboard-card-padding-y: $taskboard-spacer !default;
|
|
33227
33306
|
$taskboard-card-padding-x: $taskboard-card-padding-y !default;
|
|
33228
33307
|
$taskboard-card-border-width: $card-border-width !default;
|
|
33229
|
-
$taskboard-card-border-radius: $border-radius !default;
|
|
33308
|
+
$taskboard-card-border-radius: $kendo-border-radius-md !default;
|
|
33230
33309
|
$taskboard-card-shadow: $card-shadow !default;
|
|
33231
33310
|
$taskboard-card-bg: $card-bg !default;
|
|
33232
33311
|
$taskboard-card-text: $card-text !default;
|
|
@@ -33729,7 +33808,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
33729
33808
|
|
|
33730
33809
|
// Inline editor
|
|
33731
33810
|
.k-editor-inline {
|
|
33732
|
-
@include border-radius( $border-radius );
|
|
33811
|
+
@include border-radius( $kendo-border-radius-md );
|
|
33733
33812
|
padding: $padding-y-sm $padding-x-sm;
|
|
33734
33813
|
border: 1px solid transparent;
|
|
33735
33814
|
word-wrap: break-word;
|
|
@@ -34150,7 +34229,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
34150
34229
|
white-space: nowrap;
|
|
34151
34230
|
overflow: hidden;
|
|
34152
34231
|
cursor: pointer;
|
|
34153
|
-
@include border-radius( $border-radius );
|
|
34232
|
+
@include border-radius( $kendo-border-radius-md );
|
|
34154
34233
|
|
|
34155
34234
|
.k-i-file,
|
|
34156
34235
|
.k-i-folder {
|
|
@@ -34616,6 +34695,11 @@ $imageeditor-crop-overlay-bg: rgba(black, .3) !default;
|
|
|
34616
34695
|
box-sizing: border-box;
|
|
34617
34696
|
flex: none;
|
|
34618
34697
|
overflow-y: auto;
|
|
34698
|
+
|
|
34699
|
+
.k-input-inner,
|
|
34700
|
+
.k-input-value-text {
|
|
34701
|
+
text-overflow: clip;
|
|
34702
|
+
}
|
|
34619
34703
|
}
|
|
34620
34704
|
|
|
34621
34705
|
|
|
@@ -34897,6 +34981,11 @@ $gantt-advanced-bg-lighter: tint($gantt-advanced-bg, 5) !default;
|
|
|
34897
34981
|
$gantt-action-on-offset-text: #000000 !default;
|
|
34898
34982
|
$gantt-offset-resize-handler-top: 50% !default;
|
|
34899
34983
|
|
|
34984
|
+
$gantt-validation-tooltip-width: 200px !default;
|
|
34985
|
+
$gantt-validation-tooltip-border: #656565 !default;
|
|
34986
|
+
$gantt-validation-tooltip-valid-border: $success !default;
|
|
34987
|
+
$gantt-validation-tooltip-invalid-border: $error !default;
|
|
34988
|
+
|
|
34900
34989
|
// #endregion
|
|
34901
34990
|
// #region @import "_layout.scss"; -> packages/default/scss/gantt/_layout.scss
|
|
34902
34991
|
@include exports("gantt/layout") {
|
|
@@ -35407,7 +35496,7 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35407
35496
|
// Single task
|
|
35408
35497
|
.k-single-wrap {}
|
|
35409
35498
|
.k-task-single {
|
|
35410
|
-
@include border-radius( $border-radius );
|
|
35499
|
+
@include border-radius( $kendo-border-radius-md );
|
|
35411
35500
|
border-width: $gantt-task-border-width;
|
|
35412
35501
|
border-style: solid;
|
|
35413
35502
|
box-sizing: border-box;
|
|
@@ -35440,7 +35529,7 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35440
35529
|
}
|
|
35441
35530
|
}
|
|
35442
35531
|
.k-task-complete {
|
|
35443
|
-
@include border-radius( $border-radius );
|
|
35532
|
+
@include border-radius( $kendo-border-radius-md );
|
|
35444
35533
|
width: 20%;
|
|
35445
35534
|
position: absolute;
|
|
35446
35535
|
z-index: 1;
|
|
@@ -35510,7 +35599,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35510
35599
|
}
|
|
35511
35600
|
|
|
35512
35601
|
// Planned position
|
|
35513
|
-
|
|
35514
35602
|
.k-gantt-planned {
|
|
35515
35603
|
.k-gantt-dependencies,
|
|
35516
35604
|
.k-task-dot,
|
|
@@ -35541,7 +35629,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35541
35629
|
}
|
|
35542
35630
|
|
|
35543
35631
|
// Planned element
|
|
35544
|
-
|
|
35545
35632
|
.k-task-planned {
|
|
35546
35633
|
margin: 0 0 $gantt-planned-margin-y;
|
|
35547
35634
|
line-height: $gantt-planned-line-height;
|
|
@@ -35574,7 +35661,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35574
35661
|
}
|
|
35575
35662
|
|
|
35576
35663
|
// Planned Tooltip
|
|
35577
|
-
|
|
35578
35664
|
.k-planned-tooltip {
|
|
35579
35665
|
.k-task-content {
|
|
35580
35666
|
display: block;
|
|
@@ -35582,7 +35668,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35582
35668
|
}
|
|
35583
35669
|
|
|
35584
35670
|
// Delay offset
|
|
35585
|
-
|
|
35586
35671
|
.k-task-offset-wrap .k-task-content .k-resize-e {
|
|
35587
35672
|
display: none;
|
|
35588
35673
|
}
|
|
@@ -35613,6 +35698,36 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35613
35698
|
.k-task-offset:hover .k-resize-handle {
|
|
35614
35699
|
visibility: visible;
|
|
35615
35700
|
}
|
|
35701
|
+
|
|
35702
|
+
|
|
35703
|
+
// Dependency Validation Tooltip
|
|
35704
|
+
.k-gantt-tooltip-validation {
|
|
35705
|
+
max-width: $gantt-validation-tooltip-width;
|
|
35706
|
+
display: block;
|
|
35707
|
+
|
|
35708
|
+
&::before {
|
|
35709
|
+
content: "";
|
|
35710
|
+
width: 4px;
|
|
35711
|
+
height: 100%;
|
|
35712
|
+
position: absolute;
|
|
35713
|
+
top: 0;
|
|
35714
|
+
left: 0;
|
|
35715
|
+
}
|
|
35716
|
+
}
|
|
35717
|
+
.k-gantt-tooltip-validation-row {
|
|
35718
|
+
display: flex;
|
|
35719
|
+
flex-direction: row;
|
|
35720
|
+
justify-content: space-between;
|
|
35721
|
+
}
|
|
35722
|
+
.k-gantt-tooltip-validation-label {
|
|
35723
|
+
display: inline-flex;
|
|
35724
|
+
white-space: nowrap;
|
|
35725
|
+
overflow: hidden;
|
|
35726
|
+
text-overflow: ellipsis;
|
|
35727
|
+
}
|
|
35728
|
+
.k-gantt-tooltip-validation-value {
|
|
35729
|
+
font-weight: $font-weight-bold;
|
|
35730
|
+
}
|
|
35616
35731
|
}
|
|
35617
35732
|
|
|
35618
35733
|
@include exports("gantt/export") {
|
|
@@ -35658,7 +35773,8 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35658
35773
|
|
|
35659
35774
|
@include exports("gantt/rtl") {
|
|
35660
35775
|
|
|
35661
|
-
.k-rtl
|
|
35776
|
+
.k-rtl,
|
|
35777
|
+
[dir="rtl"] {
|
|
35662
35778
|
|
|
35663
35779
|
.k-gantt-rows,
|
|
35664
35780
|
.k-gantt-columns {
|
|
@@ -35737,6 +35853,11 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35737
35853
|
.k-gantt-timeline .k-milestone-wrap .k-task-start {
|
|
35738
35854
|
right: $gantt-rtl-milestone-dot-start-margin-x;
|
|
35739
35855
|
}
|
|
35856
|
+
|
|
35857
|
+
.k-gantt-tooltip-validation::before {
|
|
35858
|
+
left: auto;
|
|
35859
|
+
right: 0;
|
|
35860
|
+
}
|
|
35740
35861
|
}
|
|
35741
35862
|
}
|
|
35742
35863
|
|
|
@@ -35988,7 +36109,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35988
36109
|
}
|
|
35989
36110
|
|
|
35990
36111
|
// Tooltips
|
|
35991
|
-
|
|
35992
36112
|
.k-offset-tooltip-delayed {
|
|
35993
36113
|
@include fill(
|
|
35994
36114
|
$bg: $gantt-delayed-bg
|
|
@@ -36000,6 +36120,22 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
36000
36120
|
$bg: $gantt-planned-bg
|
|
36001
36121
|
);
|
|
36002
36122
|
}
|
|
36123
|
+
|
|
36124
|
+
.k-gantt-tooltip-validation {
|
|
36125
|
+
&::before {
|
|
36126
|
+
background-color: $gantt-validation-tooltip-border;
|
|
36127
|
+
}
|
|
36128
|
+
}
|
|
36129
|
+
.k-gantt-tooltip-valid {
|
|
36130
|
+
&::before {
|
|
36131
|
+
background-color: $gantt-validation-tooltip-valid-border;
|
|
36132
|
+
}
|
|
36133
|
+
}
|
|
36134
|
+
.k-gantt-tooltip-invalid {
|
|
36135
|
+
&::before {
|
|
36136
|
+
background-color: $gantt-validation-tooltip-invalid-border;
|
|
36137
|
+
}
|
|
36138
|
+
}
|
|
36003
36139
|
}
|
|
36004
36140
|
|
|
36005
36141
|
// #endregion
|
|
@@ -36061,7 +36197,7 @@ $scheduler-footer-border: $toolbar-border !default;
|
|
|
36061
36197
|
$scheduler-footer-gradient: $toolbar-gradient !default;
|
|
36062
36198
|
|
|
36063
36199
|
$scheduler-event-min-height: 25px !default;
|
|
36064
|
-
$scheduler-event-border-radius: $border-radius !default;
|
|
36200
|
+
$scheduler-event-border-radius: $kendo-border-radius-md !default;
|
|
36065
36201
|
$scheduler-event-line-height: calc( #{$scheduler-event-min-height} - (2 * #{$padding-y}) ) !default;
|
|
36066
36202
|
|
|
36067
36203
|
$scheduler-event-bg: tint( $selected-bg, 2 ) !default;
|
|
@@ -36128,7 +36264,7 @@ $scheduler-tooltip-events-gap: $padding-y !default;
|
|
|
36128
36264
|
|
|
36129
36265
|
$scheduler-tooltip-event-padding-x: $padding-x !default;
|
|
36130
36266
|
$scheduler-tooltip-event-padding-y: $padding-y !default;
|
|
36131
|
-
$scheduler-tooltip-event-border-radius: $border-radius !default;
|
|
36267
|
+
$scheduler-tooltip-event-border-radius: $kendo-border-radius-md !default;
|
|
36132
36268
|
$scheduler-tooltip-event-gap: $padding-x-sm !default;
|
|
36133
36269
|
|
|
36134
36270
|
$scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
@@ -36530,7 +36666,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
36530
36666
|
// Appointments
|
|
36531
36667
|
kendo-scheduler .k-event,
|
|
36532
36668
|
.k-event {
|
|
36533
|
-
@include border-radius( $border-radius );
|
|
36669
|
+
@include border-radius( $kendo-border-radius );
|
|
36534
36670
|
min-height: $scheduler-event-min-height;
|
|
36535
36671
|
box-sizing: border-box;
|
|
36536
36672
|
border-width: 0;
|
|
@@ -38555,7 +38691,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
38555
38691
|
display: inline-block;
|
|
38556
38692
|
text-align: center;
|
|
38557
38693
|
padding: $timeline-flag-padding-y $timeline-flag-padding-x;
|
|
38558
|
-
border-radius: $border-radius;
|
|
38694
|
+
border-radius: $kendo-border-radius;
|
|
38559
38695
|
line-height: $timeline-flag-line-height;
|
|
38560
38696
|
min-width: $timeline-flag-min-width;
|
|
38561
38697
|
max-width: $timeline-flag-max-width;
|
|
@@ -38619,7 +38755,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
38619
38755
|
}
|
|
38620
38756
|
|
|
38621
38757
|
&::-webkit-scrollbar-thumb {
|
|
38622
|
-
border-radius: $border-radius;
|
|
38758
|
+
border-radius: $kendo-border-radius;
|
|
38623
38759
|
}
|
|
38624
38760
|
}
|
|
38625
38761
|
}
|
|
@@ -38663,7 +38799,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
38663
38799
|
height: 100%;
|
|
38664
38800
|
width: $timeline-track-size;
|
|
38665
38801
|
transform: translateX(-50%);
|
|
38666
|
-
border-radius: $border-radius-lg;
|
|
38802
|
+
border-radius: $kendo-border-radius-lg;
|
|
38667
38803
|
}
|
|
38668
38804
|
|
|
38669
38805
|
.k-timeline-flag-wrap {
|
|
@@ -40008,7 +40144,7 @@ $treemap-line-height: $line-height !default;
|
|
|
40008
40144
|
}
|
|
40009
40145
|
|
|
40010
40146
|
.k-chart-tooltip {
|
|
40011
|
-
@include border-radius( $border-radius );
|
|
40147
|
+
@include border-radius( $kendo-border-radius-md );
|
|
40012
40148
|
font-size: $chart-tooltip-font-size;
|
|
40013
40149
|
line-height: $line-height;
|
|
40014
40150
|
padding: $tooltip-padding-y $tooltip-padding-x;
|
|
@@ -40116,7 +40252,7 @@ $treemap-line-height: $line-height !default;
|
|
|
40116
40252
|
}
|
|
40117
40253
|
|
|
40118
40254
|
.k-navigator-hint .k-scroll {
|
|
40119
|
-
@include border-radius( $border-radius );
|
|
40255
|
+
@include border-radius( $kendo-border-radius-md );
|
|
40120
40256
|
position: absolute;
|
|
40121
40257
|
height: 4px;
|
|
40122
40258
|
}
|
|
@@ -40343,7 +40479,7 @@ $treemap-line-height: $line-height !default;
|
|
|
40343
40479
|
base: $base-bg,
|
|
40344
40480
|
background: $chart-bg,
|
|
40345
40481
|
|
|
40346
|
-
border-radius: $border-radius,
|
|
40482
|
+
border-radius: $kendo-border-radius-md,
|
|
40347
40483
|
|
|
40348
40484
|
normal-background: $base-bg,
|
|
40349
40485
|
normal-text-color: $base-text,
|
|
@@ -40861,7 +40997,7 @@ $orgchart-node-container-gap: $orgchart-spacer !default;
|
|
|
40861
40997
|
$orgchart-node-group-padding-y: $orgchart-spacer !default;
|
|
40862
40998
|
$orgchart-node-group-padding-x: $orgchart-node-group-padding-y !default;
|
|
40863
40999
|
$orgchart-node-group-border-width: 1px !default;
|
|
40864
|
-
$orgchart-node-group-border-radius: $border-radius !default;
|
|
41000
|
+
$orgchart-node-group-border-radius: $kendo-border-radius-md !default;
|
|
40865
41001
|
$orgchart-node-group-bg: $base-bg !default;
|
|
40866
41002
|
$orgchart-node-group-text: $base-text !default;
|
|
40867
41003
|
$orgchart-node-group-border: $base-border !default;
|