@progress/kendo-theme-default 5.1.2-dev.4 → 5.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +492 -227
- package/dist/all.scss +301 -155
- 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/filemanager/_layout.scss +3 -0
- 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 +8 -4
- package/scss/list/_layout.scss +8 -0
- package/scss/listgroup/_variables.scss +1 -1
- package/scss/loader/_variables.scss +1 -1
- package/scss/notification/_theme.scss +7 -5
- package/scss/notification/_variables.scss +15 -13
- package/scss/orgchart/_variables.scss +1 -1
- package/scss/pager/_layout.scss +5 -0
- package/scss/pivotgrid/_layout.scss +1 -0
- package/scss/pivotgrid/_variables.scss +2 -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/textarea/_layout.scss +1 -3
- 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";
|
|
@@ -9082,7 +9154,9 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9082
9154
|
// Input with icon styles
|
|
9083
9155
|
.k-input-icon,
|
|
9084
9156
|
.k-input-validation-icon,
|
|
9085
|
-
.k-input-loading-icon
|
|
9157
|
+
.k-input-loading-icon,
|
|
9158
|
+
.k-input-prefix > .k-icon,
|
|
9159
|
+
.k-input-suffix > .k-icon {
|
|
9086
9160
|
flex: none;
|
|
9087
9161
|
align-self: center;
|
|
9088
9162
|
display: inline-flex;
|
|
@@ -9256,7 +9330,9 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9256
9330
|
.k-input-icon,
|
|
9257
9331
|
.k-input-validation-icon,
|
|
9258
9332
|
.k-input-loading-icon,
|
|
9259
|
-
.k-clear-value
|
|
9333
|
+
.k-clear-value,
|
|
9334
|
+
.k-input-prefix > .k-icon,
|
|
9335
|
+
.k-input-suffix > .k-icon {
|
|
9260
9336
|
width: $_icon-size;
|
|
9261
9337
|
height: $_icon-size;
|
|
9262
9338
|
}
|
|
@@ -10989,6 +11065,8 @@ $kendo-chip-list-sizes: (
|
|
|
10989
11065
|
|
|
10990
11066
|
// Chip content
|
|
10991
11067
|
.k-chip-content {
|
|
11068
|
+
padding: .5em 0;
|
|
11069
|
+
margin: -.5em 0;
|
|
10992
11070
|
min-width: 0;
|
|
10993
11071
|
display: flex;
|
|
10994
11072
|
flex-flow: row nowrap;
|
|
@@ -11263,7 +11341,7 @@ $kendo-chip-list-sizes: (
|
|
|
11263
11341
|
// #endregion
|
|
11264
11342
|
// #region @import "_variables.scss"; -> packages/default/scss/color-preview/_variables.scss
|
|
11265
11343
|
// Color Preview
|
|
11266
|
-
$color-preview-border-radius: $border-radius !default;
|
|
11344
|
+
$color-preview-border-radius: $kendo-border-radius-md !default;
|
|
11267
11345
|
$color-preview-border-width: 1px !default;
|
|
11268
11346
|
$color-preview-bg: null !default;
|
|
11269
11347
|
$color-preview-text: null !default;
|
|
@@ -11425,7 +11503,7 @@ $loader-secondary-bg: #656565 !default;
|
|
|
11425
11503
|
$loader-container-panel-border-width: 1px !default;
|
|
11426
11504
|
$loader-container-panel-border-style: solid !default;
|
|
11427
11505
|
$loader-container-panel-border-color: $component-border !default;
|
|
11428
|
-
$loader-container-panel-border-radius: $border-radius !default;
|
|
11506
|
+
$loader-container-panel-border-radius: $kendo-border-radius-md !default;
|
|
11429
11507
|
$loader-container-panel-bg: $white !default;
|
|
11430
11508
|
|
|
11431
11509
|
$loader-container-padding-sm: map-get( $spacing, 4 ) !default;
|
|
@@ -11947,7 +12025,7 @@ $loader-container-font-size-lg: $font-size-lg !default;
|
|
|
11947
12025
|
// #region @import "_variables.scss"; -> packages/default/scss/skeleton/_variables.scss
|
|
11948
12026
|
// Skeleton
|
|
11949
12027
|
$skeleton-text-transform: scale( 1, .6 ) !default;
|
|
11950
|
-
$skeleton-text-border-radius: $border-radius !default;
|
|
12028
|
+
$skeleton-text-border-radius: $kendo-border-radius-md !default;
|
|
11951
12029
|
|
|
11952
12030
|
$skeleton-rect-border-radius: 0 !default;
|
|
11953
12031
|
|
|
@@ -12096,7 +12174,7 @@ $tooltip-padding-y: $padding-y !default;
|
|
|
12096
12174
|
$tooltip-padding-x: $padding-x !default;
|
|
12097
12175
|
$tooltip-max-width: null !default;
|
|
12098
12176
|
$tooltip-border-width: 0px !default;
|
|
12099
|
-
$tooltip-border-radius: $border-radius !default;
|
|
12177
|
+
$tooltip-border-radius: $kendo-border-radius-md !default;
|
|
12100
12178
|
|
|
12101
12179
|
$tooltip-font-family: $font-family !default;
|
|
12102
12180
|
$tooltip-font-size: $font-size !default;
|
|
@@ -13417,11 +13495,6 @@ $fieldset-legend-border: null !default;
|
|
|
13417
13495
|
display: inline-flex;
|
|
13418
13496
|
width: 100%;
|
|
13419
13497
|
}
|
|
13420
|
-
.k-daterangepicker {
|
|
13421
|
-
width: 100%;
|
|
13422
|
-
flex-flow: column nowrap;
|
|
13423
|
-
gap: 0;
|
|
13424
|
-
}
|
|
13425
13498
|
}
|
|
13426
13499
|
|
|
13427
13500
|
// Form Buttons Container
|
|
@@ -14044,9 +14117,7 @@ $fieldset-legend-border: null !default;
|
|
|
14044
14117
|
@include exports( "textarea/layout" ) {
|
|
14045
14118
|
|
|
14046
14119
|
// Textarea
|
|
14047
|
-
.k-textarea {
|
|
14048
|
-
display: flex;
|
|
14049
|
-
}
|
|
14120
|
+
.k-textarea {}
|
|
14050
14121
|
|
|
14051
14122
|
}
|
|
14052
14123
|
|
|
@@ -14315,7 +14386,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
14315
14386
|
|
|
14316
14387
|
// Base
|
|
14317
14388
|
.k-progressbar {
|
|
14318
|
-
@include border-radius( $border-radius );
|
|
14389
|
+
@include border-radius( $kendo-border-radius );
|
|
14319
14390
|
--kendo-progressbar-progress: 0;
|
|
14320
14391
|
border-width: $progressbar-border-width;
|
|
14321
14392
|
border-style: solid;
|
|
@@ -15616,7 +15687,7 @@ $slider-disabled-opacity: null !default;
|
|
|
15616
15687
|
|
|
15617
15688
|
.k-slider-track,
|
|
15618
15689
|
.k-slider-selection {
|
|
15619
|
-
@include border-radius( $border-radius );
|
|
15690
|
+
@include border-radius( $kendo-border-radius );
|
|
15620
15691
|
}
|
|
15621
15692
|
|
|
15622
15693
|
.k-slider-track {
|
|
@@ -15744,7 +15815,7 @@ $calendar-footer-padding-y: map-get( $spacing, 2 ) !default;
|
|
|
15744
15815
|
$calendar-cell-padding-x: .5em !default;
|
|
15745
15816
|
$calendar-cell-padding-y: $calendar-cell-padding-x !default;
|
|
15746
15817
|
$calendar-cell-line-height: $calendar-line-height !default;
|
|
15747
|
-
$calendar-cell-border-radius: $border-radius !default;
|
|
15818
|
+
$calendar-cell-border-radius: $kendo-border-radius-md !default;
|
|
15748
15819
|
|
|
15749
15820
|
$calendar-header-cell-padding-x: null !default;
|
|
15750
15821
|
$calendar-header-cell-padding-y: null !default;
|
|
@@ -16190,6 +16261,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
16190
16261
|
line-height: $calendar-navigation-item-height;
|
|
16191
16262
|
cursor: pointer;
|
|
16192
16263
|
padding: 0 1em;
|
|
16264
|
+
overflow: hidden;
|
|
16265
|
+
white-space: nowrap;
|
|
16266
|
+
text-overflow: clip;
|
|
16193
16267
|
}
|
|
16194
16268
|
}
|
|
16195
16269
|
|
|
@@ -17286,7 +17360,7 @@ $colorgradient-spacer: map-get( $spacing, 3 ) !default;
|
|
|
17286
17360
|
|
|
17287
17361
|
$colorgradient-width: 272px !default;
|
|
17288
17362
|
$colorgradient-border-width: 1px !default;
|
|
17289
|
-
$colorgradient-border-radius: $border-radius !default;
|
|
17363
|
+
$colorgradient-border-radius: $kendo-border-radius-md !default;
|
|
17290
17364
|
$colorgradient-padding-y: $colorgradient-spacer !default;
|
|
17291
17365
|
$colorgradient-padding-x: $colorgradient-padding-y !default;
|
|
17292
17366
|
$colorgradient-gap: $colorgradient-spacer !default;
|
|
@@ -17300,7 +17374,7 @@ $colorgradient-border: $component-border !default;
|
|
|
17300
17374
|
$colorgradient-focus-border: null !default;
|
|
17301
17375
|
$colorgradient-focus-shadow: 1px 1px 7px 1px rgba(0, 0, 0, .3) !default;
|
|
17302
17376
|
|
|
17303
|
-
$colorgradient-canvas-border-radius: $border-radius !default;
|
|
17377
|
+
$colorgradient-canvas-border-radius: $kendo-border-radius-md !default;
|
|
17304
17378
|
$colorgradient-canvas-gap: $colorgradient-spacer !default;
|
|
17305
17379
|
$colorgradient-canvas-rectangle-height: 180px !default;
|
|
17306
17380
|
|
|
@@ -17471,6 +17545,10 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 1.5 ) !default;
|
|
|
17471
17545
|
.k-numerictextbox {
|
|
17472
17546
|
width: $colorgradient-input-width;
|
|
17473
17547
|
}
|
|
17548
|
+
|
|
17549
|
+
.k-input-inner {
|
|
17550
|
+
text-overflow: clip;
|
|
17551
|
+
}
|
|
17474
17552
|
}
|
|
17475
17553
|
|
|
17476
17554
|
// Contrast
|
|
@@ -17648,7 +17726,7 @@ $coloreditor-spacer: map-get( $spacing, 3 ) !default;
|
|
|
17648
17726
|
|
|
17649
17727
|
$coloreditor-min-width: 272px !default;
|
|
17650
17728
|
$coloreditor-border-width: 1px !default;
|
|
17651
|
-
$coloreditor-border-radius: $border-radius !default;
|
|
17729
|
+
$coloreditor-border-radius: $kendo-border-radius-md !default;
|
|
17652
17730
|
$coloreditor-font-family: $font-family !default;
|
|
17653
17731
|
$coloreditor-font-size: $font-size !default;
|
|
17654
17732
|
$coloreditor-line-height: $line-height !default;
|
|
@@ -18719,7 +18797,7 @@ $kendo-treeview-item-padding-y: map-get( $spacing, 1 ) !default;
|
|
|
18719
18797
|
$kendo-treeview-item-border-width: 0px !default;
|
|
18720
18798
|
/// Border radius of treeview items.
|
|
18721
18799
|
/// @group treeview
|
|
18722
|
-
$kendo-treeview-item-border-radius: $border-radius !default;
|
|
18800
|
+
$kendo-treeview-item-border-radius: $kendo-border-radius-md !default;
|
|
18723
18801
|
|
|
18724
18802
|
|
|
18725
18803
|
/// The sizes of the treeview.
|
|
@@ -20942,7 +21020,7 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
20942
21020
|
$kendo-fab-border-width: 1px !default;
|
|
20943
21021
|
/// Border radius of the FAB.
|
|
20944
21022
|
/// @group floating-action-button
|
|
20945
|
-
$kendo-fab-border-radius: $border-radius !default;
|
|
21023
|
+
$kendo-fab-border-radius: $kendo-border-radius-md !default;
|
|
20946
21024
|
|
|
20947
21025
|
/// Font family of the FAB.
|
|
20948
21026
|
/// @group floating-action-button
|
|
@@ -22434,7 +22512,7 @@ $drawer-selected-hover-text: $selected-hover-text !default;
|
|
|
22434
22512
|
$notification-padding-x: 8px !default;
|
|
22435
22513
|
$notification-padding-y: 4px !default;
|
|
22436
22514
|
$notification-border-width: 1px !default;
|
|
22437
|
-
$notification-border-radius: $border-radius !default;
|
|
22515
|
+
$notification-border-radius: $kendo-border-radius-md !default;
|
|
22438
22516
|
|
|
22439
22517
|
$notification-shadow: $popup-shadow !default;
|
|
22440
22518
|
|
|
@@ -22449,22 +22527,24 @@ $notification-bg: $component-bg !default;
|
|
|
22449
22527
|
$notification-text: $component-text !default;
|
|
22450
22528
|
$notification-border: $component-border !default;
|
|
22451
22529
|
|
|
22452
|
-
|
|
22530
|
+
@function notification-theme( $colors ) {
|
|
22531
|
+
$_theme: ();
|
|
22453
22532
|
|
|
22454
|
-
|
|
22455
|
-
|
|
22456
|
-
|
|
22457
|
-
|
|
22458
|
-
|
|
22459
|
-
|
|
22460
|
-
|
|
22461
|
-
|
|
22462
|
-
}
|
|
22533
|
+
// sass-lint:disable-block indentation
|
|
22534
|
+
@each $name, $color in $colors {
|
|
22535
|
+
$_theme: map-merge(( $name: (
|
|
22536
|
+
color: contrast-wcag( $color ),
|
|
22537
|
+
background-color: $color,
|
|
22538
|
+
border: $color,
|
|
22539
|
+
)), $_theme );
|
|
22540
|
+
}
|
|
22463
22541
|
|
|
22464
|
-
@
|
|
22465
|
-
$notification-themes: map-merge($notification-themes, ($theme: notification-theme($theme, $props)) );
|
|
22542
|
+
@return $_theme;
|
|
22466
22543
|
}
|
|
22467
22544
|
|
|
22545
|
+
$kendo-notification-theme-colors: $kendo-theme-colors !default;
|
|
22546
|
+
$kendo-notification-theme: notification-theme( $kendo-notification-theme-colors ) !default;
|
|
22547
|
+
|
|
22468
22548
|
// #endregion
|
|
22469
22549
|
// #region @import "_layout.scss"; -> packages/default/scss/notification/_layout.scss
|
|
22470
22550
|
@include exports("notification/layout") {
|
|
@@ -22573,11 +22653,13 @@ $notification-themes: () !default;
|
|
|
22573
22653
|
box-shadow: $notification-shadow;
|
|
22574
22654
|
}
|
|
22575
22655
|
|
|
22576
|
-
@each $
|
|
22577
|
-
.k-notification-#{$
|
|
22578
|
-
|
|
22579
|
-
|
|
22580
|
-
|
|
22656
|
+
@each $name, $props in $kendo-notification-theme {
|
|
22657
|
+
.k-notification-#{$name} {
|
|
22658
|
+
@include fill(
|
|
22659
|
+
map-get( $props, color ),
|
|
22660
|
+
map-get( $props, background-color ),
|
|
22661
|
+
map-get( $props, border )
|
|
22662
|
+
);
|
|
22581
22663
|
}
|
|
22582
22664
|
}
|
|
22583
22665
|
|
|
@@ -22632,7 +22714,7 @@ $notification-themes: () !default;
|
|
|
22632
22714
|
$card-padding-x: map-get( $spacing, lg ) !default;
|
|
22633
22715
|
$card-padding-y: map-get( $spacing, md ) !default;
|
|
22634
22716
|
$card-border-width: 1px !default;
|
|
22635
|
-
$card-border-radius: $border-radius-lg !default;
|
|
22717
|
+
$card-border-radius: $kendo-border-radius-lg !default;
|
|
22636
22718
|
$card-inner-border-radius: calc( #{$card-border-radius} - #{$card-border-width} ) !default;
|
|
22637
22719
|
$card-font-family: $font-family !default;
|
|
22638
22720
|
$card-font-size: $font-size !default;
|
|
@@ -23514,7 +23596,7 @@ $bottom-nav-item-padding-y: 0 !default;
|
|
|
23514
23596
|
$bottom-nav-item-min-width: 72px !default;
|
|
23515
23597
|
$bottom-nav-item-max-width: null !default;
|
|
23516
23598
|
$bottom-nav-item-min-height: calc( #{$icon-size * 2.5} + #{$padding-x * 2} - #{$bottom-nav-padding-x * 2} ) !default;
|
|
23517
|
-
$bottom-nav-item-border-radius: $border-radius !default;
|
|
23599
|
+
$bottom-nav-item-border-radius: $kendo-border-radius-md !default;
|
|
23518
23600
|
$bottom-nav-item-gap: 0 map-get( $spacing, 1 ) !default;
|
|
23519
23601
|
|
|
23520
23602
|
$bottom-nav-item-icon-margin-y: map-get( $spacing, 2 ) !default;
|
|
@@ -23748,7 +23830,7 @@ $breadcrumb-delimiter-icon-padding-y: 0px !default;
|
|
|
23748
23830
|
|
|
23749
23831
|
$breadcrumb-link-padding-x: $padding-x !default;
|
|
23750
23832
|
$breadcrumb-link-padding-y: $padding-y-lg !default;
|
|
23751
|
-
$breadcrumb-link-border-radius: $border-radius !default;
|
|
23833
|
+
$breadcrumb-link-border-radius: $kendo-border-radius-md !default;
|
|
23752
23834
|
|
|
23753
23835
|
$breadcrumb-icon-link-padding-x: $breadcrumb-link-padding-x !default;
|
|
23754
23836
|
$breadcrumb-icon-link-padding-y: $breadcrumb-icon-link-padding-x !default;
|
|
@@ -24284,6 +24366,11 @@ $pager-dropdown-width: 5em !default;
|
|
|
24284
24366
|
width: $pager-dropdown-width;
|
|
24285
24367
|
}
|
|
24286
24368
|
|
|
24369
|
+
.k-input-inner,
|
|
24370
|
+
.k-input-value-text {
|
|
24371
|
+
text-overflow: clip;
|
|
24372
|
+
}
|
|
24373
|
+
|
|
24287
24374
|
.k-rtl &,
|
|
24288
24375
|
[dir="rtl"] & {
|
|
24289
24376
|
.k-dropdown-list,
|
|
@@ -24704,6 +24791,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
24704
24791
|
display: flex;
|
|
24705
24792
|
align-items: center;
|
|
24706
24793
|
justify-content: center;
|
|
24794
|
+
flex: none;
|
|
24707
24795
|
position: relative;
|
|
24708
24796
|
z-index: 1;
|
|
24709
24797
|
overflow: visible;
|
|
@@ -24737,7 +24825,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
24737
24825
|
|
|
24738
24826
|
// Step label
|
|
24739
24827
|
.k-step-label {
|
|
24740
|
-
max-width: 10em;
|
|
24828
|
+
max-width: clamp(100%, 10em, 100%);
|
|
24741
24829
|
display: inline-flex;
|
|
24742
24830
|
flex-wrap: wrap;
|
|
24743
24831
|
align-items: center;
|
|
@@ -25157,7 +25245,7 @@ $tabstrip-item-padding-y: $nav-item-padding-y !default;
|
|
|
25157
25245
|
$tabstrip-item-border-width: 1px !default;
|
|
25158
25246
|
/// Border radius of tabs
|
|
25159
25247
|
/// @group tabstrip
|
|
25160
|
-
$tabstrip-item-border-radius: $border-radius !default;
|
|
25248
|
+
$tabstrip-item-border-radius: $kendo-border-radius-md !default;
|
|
25161
25249
|
/// Spacing between tabs
|
|
25162
25250
|
/// @group tabstrip
|
|
25163
25251
|
$tabstrip-item-gap: $nav-item-margin !default;
|
|
@@ -26926,7 +27014,7 @@ $tilelayout-card-border-width: $card-border-width !default;
|
|
|
26926
27014
|
$tilelayout-card-focus-shadow: $card-focus-shadow !default;
|
|
26927
27015
|
|
|
26928
27016
|
$tilelayout-hint-border-width: 1px !default;
|
|
26929
|
-
$tilelayout-hint-border-radius: $border-radius-lg !default;
|
|
27017
|
+
$tilelayout-hint-border-radius: $kendo-border-radius-lg !default;
|
|
26930
27018
|
|
|
26931
27019
|
$tilelayout-bg: $base-bg !default;
|
|
26932
27020
|
|
|
@@ -27762,7 +27850,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
27762
27850
|
|
|
27763
27851
|
$grid-hierarchy-col-width: ($icon-size * 2) !default;
|
|
27764
27852
|
|
|
27765
|
-
$grid-group-indicator-border-radius: $border-radius !default;
|
|
27853
|
+
$grid-group-indicator-border-radius: $kendo-border-radius-md !default;
|
|
27766
27854
|
$grid-group-indicator-gap: $table-cell-padding-y !default;
|
|
27767
27855
|
|
|
27768
27856
|
$grid-grouping-row-border-top: 1px !default;
|
|
@@ -29972,9 +30060,9 @@ $spreadsheet-insert-image-dialog-preview-width: 355px !default;
|
|
|
29972
30060
|
$spreadsheet-insert-image-dialog-preview-height: 230px !default;
|
|
29973
30061
|
$spreadsheet-insert-image-dialog-preview-img: "image-default.png" !default;
|
|
29974
30062
|
$spreadsheet-insert-image-dialog-preview-border: $component-border !default;
|
|
29975
|
-
$spreadsheet-insert-image-dialog-preview-border-radius: $border-radius !default;
|
|
30063
|
+
$spreadsheet-insert-image-dialog-preview-border-radius: $kendo-border-radius-md !default;
|
|
29976
30064
|
$spreadsheet-insert-image-dialog-preview-overlay-shadow: inset 0 0 0 2000px rgba(0, 0, 0, .5) !default;
|
|
29977
|
-
$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;
|
|
29978
30066
|
$spreadsheet-insert-image-dialog-overlay-hovered-text: $component-bg !default;
|
|
29979
30067
|
|
|
29980
30068
|
$spreadsheet-drawing-handle-width: 6px !default;
|
|
@@ -29984,7 +30072,7 @@ $spreadsheet-drawing-handle-border-width: 1px !default;
|
|
|
29984
30072
|
$spreadsheet-drawing-handle-outline-color: $primary !default;
|
|
29985
30073
|
$spreadsheet-drawing-handle-border-color: $selected-bg !default;
|
|
29986
30074
|
$spreadsheet-drawing-handle-bg: $primary !default;
|
|
29987
|
-
$spreadsheet-drawing-handle-border-radius: $border-radius-lg !default;
|
|
30075
|
+
$spreadsheet-drawing-handle-border-radius: $kendo-border-radius-lg !default;
|
|
29988
30076
|
|
|
29989
30077
|
$spreadsheet-drawing-outline-style: solid !default;
|
|
29990
30078
|
$spreadsheet-drawing-outline-width: 2px !default;
|
|
@@ -30092,10 +30180,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
30092
30180
|
min-width: $form-line-height * 1em;
|
|
30093
30181
|
}
|
|
30094
30182
|
|
|
30095
|
-
.k-input,
|
|
30096
|
-
.k-picker {
|
|
30097
|
-
width: 5em;
|
|
30098
|
-
}
|
|
30099
30183
|
.k-color-picker {
|
|
30100
30184
|
width: min-content;
|
|
30101
30185
|
}
|
|
@@ -30570,7 +30654,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
30570
30654
|
box-sizing: border-box;
|
|
30571
30655
|
}
|
|
30572
30656
|
.k-spreadsheet-filter {
|
|
30573
|
-
@include border-radius( $border-radius );
|
|
30657
|
+
@include border-radius( $kendo-border-radius );
|
|
30574
30658
|
line-height: 1;
|
|
30575
30659
|
position: absolute;
|
|
30576
30660
|
cursor: pointer;
|
|
@@ -31240,6 +31324,7 @@ $pivotgrid-font-family: $font-family !default;
|
|
|
31240
31324
|
$pivotgrid-font-size: $font-size !default;
|
|
31241
31325
|
$pivotgrid-line-height: $line-height !default;
|
|
31242
31326
|
$pivotgrid-border-width: 1px !default;
|
|
31327
|
+
$pivotgrid-icon-spacing: 8px !default;
|
|
31243
31328
|
|
|
31244
31329
|
$pivotgrid-row-header-width: 300px !default;
|
|
31245
31330
|
$pivotgrid-column-header-height: 75px !default;
|
|
@@ -31313,7 +31398,7 @@ $pivotgrid-configurator-button-size: calc( #{$pivotgrid-line-height * 1em} + #{$
|
|
|
31313
31398
|
$pivotgrid-calculated-field-padding-x: $pivotgrid-spacer !default;
|
|
31314
31399
|
$pivotgrid-calculated-field-padding-y: $pivotgrid-spacer !default;
|
|
31315
31400
|
$pivotgrid-calculated-field-border-width: 1px !default;
|
|
31316
|
-
$pivotgrid-calculated-field-border-radius: $border-radius !default;
|
|
31401
|
+
$pivotgrid-calculated-field-border-radius: $kendo-border-radius-md !default;
|
|
31317
31402
|
$pivotgrid-calculated-field-gap: $pivotgrid-spacer !default;
|
|
31318
31403
|
|
|
31319
31404
|
$pivotgrid-calculated-field-bg: $component-bg !default;
|
|
@@ -31484,6 +31569,7 @@ $pivotgrid-remove-text: null !default;
|
|
|
31484
31569
|
|
|
31485
31570
|
.k-pivotgrid-cell .k-icon {
|
|
31486
31571
|
cursor: pointer;
|
|
31572
|
+
padding-inline-end: $pivotgrid-icon-spacing;
|
|
31487
31573
|
}
|
|
31488
31574
|
|
|
31489
31575
|
.k-pivotgrid-total {
|
|
@@ -32970,6 +33056,9 @@ $filemanager-preview-icon-border: null !default;
|
|
|
32970
33056
|
flex-shrink: 0;
|
|
32971
33057
|
display: inline-flex;
|
|
32972
33058
|
position: relative;
|
|
33059
|
+
border-width: 0 1px;
|
|
33060
|
+
border-style: solid;
|
|
33061
|
+
border-color: inherit;
|
|
32973
33062
|
}
|
|
32974
33063
|
|
|
32975
33064
|
|
|
@@ -33174,7 +33263,7 @@ $taskboard-columns-container-gap: $taskboard-spacer !default;
|
|
|
33174
33263
|
|
|
33175
33264
|
$taskboard-column-width: 320px !default;
|
|
33176
33265
|
$taskboard-column-border-width: 1px !default;
|
|
33177
|
-
$taskboard-column-border-radius: $border-radius !default;
|
|
33266
|
+
$taskboard-column-border-radius: $kendo-border-radius-md !default;
|
|
33178
33267
|
$taskboard-column-bg: $base-bg !default;
|
|
33179
33268
|
$taskboard-column-text: null !default;
|
|
33180
33269
|
$taskboard-column-border: transparent !default;
|
|
@@ -33216,7 +33305,7 @@ $taskboard-pane-actions-padding-x: $taskboard-spacer !default;
|
|
|
33216
33305
|
$taskboard-card-padding-y: $taskboard-spacer !default;
|
|
33217
33306
|
$taskboard-card-padding-x: $taskboard-card-padding-y !default;
|
|
33218
33307
|
$taskboard-card-border-width: $card-border-width !default;
|
|
33219
|
-
$taskboard-card-border-radius: $border-radius !default;
|
|
33308
|
+
$taskboard-card-border-radius: $kendo-border-radius-md !default;
|
|
33220
33309
|
$taskboard-card-shadow: $card-shadow !default;
|
|
33221
33310
|
$taskboard-card-bg: $card-bg !default;
|
|
33222
33311
|
$taskboard-card-text: $card-text !default;
|
|
@@ -33719,7 +33808,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
33719
33808
|
|
|
33720
33809
|
// Inline editor
|
|
33721
33810
|
.k-editor-inline {
|
|
33722
|
-
@include border-radius( $border-radius );
|
|
33811
|
+
@include border-radius( $kendo-border-radius-md );
|
|
33723
33812
|
padding: $padding-y-sm $padding-x-sm;
|
|
33724
33813
|
border: 1px solid transparent;
|
|
33725
33814
|
word-wrap: break-word;
|
|
@@ -34140,7 +34229,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
34140
34229
|
white-space: nowrap;
|
|
34141
34230
|
overflow: hidden;
|
|
34142
34231
|
cursor: pointer;
|
|
34143
|
-
@include border-radius( $border-radius );
|
|
34232
|
+
@include border-radius( $kendo-border-radius-md );
|
|
34144
34233
|
|
|
34145
34234
|
.k-i-file,
|
|
34146
34235
|
.k-i-folder {
|
|
@@ -34606,6 +34695,11 @@ $imageeditor-crop-overlay-bg: rgba(black, .3) !default;
|
|
|
34606
34695
|
box-sizing: border-box;
|
|
34607
34696
|
flex: none;
|
|
34608
34697
|
overflow-y: auto;
|
|
34698
|
+
|
|
34699
|
+
.k-input-inner,
|
|
34700
|
+
.k-input-value-text {
|
|
34701
|
+
text-overflow: clip;
|
|
34702
|
+
}
|
|
34609
34703
|
}
|
|
34610
34704
|
|
|
34611
34705
|
|
|
@@ -34887,6 +34981,11 @@ $gantt-advanced-bg-lighter: tint($gantt-advanced-bg, 5) !default;
|
|
|
34887
34981
|
$gantt-action-on-offset-text: #000000 !default;
|
|
34888
34982
|
$gantt-offset-resize-handler-top: 50% !default;
|
|
34889
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
|
+
|
|
34890
34989
|
// #endregion
|
|
34891
34990
|
// #region @import "_layout.scss"; -> packages/default/scss/gantt/_layout.scss
|
|
34892
34991
|
@include exports("gantt/layout") {
|
|
@@ -35397,7 +35496,7 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35397
35496
|
// Single task
|
|
35398
35497
|
.k-single-wrap {}
|
|
35399
35498
|
.k-task-single {
|
|
35400
|
-
@include border-radius( $border-radius );
|
|
35499
|
+
@include border-radius( $kendo-border-radius-md );
|
|
35401
35500
|
border-width: $gantt-task-border-width;
|
|
35402
35501
|
border-style: solid;
|
|
35403
35502
|
box-sizing: border-box;
|
|
@@ -35430,7 +35529,7 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35430
35529
|
}
|
|
35431
35530
|
}
|
|
35432
35531
|
.k-task-complete {
|
|
35433
|
-
@include border-radius( $border-radius );
|
|
35532
|
+
@include border-radius( $kendo-border-radius-md );
|
|
35434
35533
|
width: 20%;
|
|
35435
35534
|
position: absolute;
|
|
35436
35535
|
z-index: 1;
|
|
@@ -35500,7 +35599,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35500
35599
|
}
|
|
35501
35600
|
|
|
35502
35601
|
// Planned position
|
|
35503
|
-
|
|
35504
35602
|
.k-gantt-planned {
|
|
35505
35603
|
.k-gantt-dependencies,
|
|
35506
35604
|
.k-task-dot,
|
|
@@ -35531,7 +35629,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35531
35629
|
}
|
|
35532
35630
|
|
|
35533
35631
|
// Planned element
|
|
35534
|
-
|
|
35535
35632
|
.k-task-planned {
|
|
35536
35633
|
margin: 0 0 $gantt-planned-margin-y;
|
|
35537
35634
|
line-height: $gantt-planned-line-height;
|
|
@@ -35564,7 +35661,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35564
35661
|
}
|
|
35565
35662
|
|
|
35566
35663
|
// Planned Tooltip
|
|
35567
|
-
|
|
35568
35664
|
.k-planned-tooltip {
|
|
35569
35665
|
.k-task-content {
|
|
35570
35666
|
display: block;
|
|
@@ -35572,7 +35668,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35572
35668
|
}
|
|
35573
35669
|
|
|
35574
35670
|
// Delay offset
|
|
35575
|
-
|
|
35576
35671
|
.k-task-offset-wrap .k-task-content .k-resize-e {
|
|
35577
35672
|
display: none;
|
|
35578
35673
|
}
|
|
@@ -35603,6 +35698,36 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35603
35698
|
.k-task-offset:hover .k-resize-handle {
|
|
35604
35699
|
visibility: visible;
|
|
35605
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
|
+
}
|
|
35606
35731
|
}
|
|
35607
35732
|
|
|
35608
35733
|
@include exports("gantt/export") {
|
|
@@ -35648,7 +35773,8 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35648
35773
|
|
|
35649
35774
|
@include exports("gantt/rtl") {
|
|
35650
35775
|
|
|
35651
|
-
.k-rtl
|
|
35776
|
+
.k-rtl,
|
|
35777
|
+
[dir="rtl"] {
|
|
35652
35778
|
|
|
35653
35779
|
.k-gantt-rows,
|
|
35654
35780
|
.k-gantt-columns {
|
|
@@ -35727,6 +35853,11 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35727
35853
|
.k-gantt-timeline .k-milestone-wrap .k-task-start {
|
|
35728
35854
|
right: $gantt-rtl-milestone-dot-start-margin-x;
|
|
35729
35855
|
}
|
|
35856
|
+
|
|
35857
|
+
.k-gantt-tooltip-validation::before {
|
|
35858
|
+
left: auto;
|
|
35859
|
+
right: 0;
|
|
35860
|
+
}
|
|
35730
35861
|
}
|
|
35731
35862
|
}
|
|
35732
35863
|
|
|
@@ -35978,7 +36109,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35978
36109
|
}
|
|
35979
36110
|
|
|
35980
36111
|
// Tooltips
|
|
35981
|
-
|
|
35982
36112
|
.k-offset-tooltip-delayed {
|
|
35983
36113
|
@include fill(
|
|
35984
36114
|
$bg: $gantt-delayed-bg
|
|
@@ -35990,6 +36120,22 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
35990
36120
|
$bg: $gantt-planned-bg
|
|
35991
36121
|
);
|
|
35992
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
|
+
}
|
|
35993
36139
|
}
|
|
35994
36140
|
|
|
35995
36141
|
// #endregion
|
|
@@ -36051,7 +36197,7 @@ $scheduler-footer-border: $toolbar-border !default;
|
|
|
36051
36197
|
$scheduler-footer-gradient: $toolbar-gradient !default;
|
|
36052
36198
|
|
|
36053
36199
|
$scheduler-event-min-height: 25px !default;
|
|
36054
|
-
$scheduler-event-border-radius: $border-radius !default;
|
|
36200
|
+
$scheduler-event-border-radius: $kendo-border-radius-md !default;
|
|
36055
36201
|
$scheduler-event-line-height: calc( #{$scheduler-event-min-height} - (2 * #{$padding-y}) ) !default;
|
|
36056
36202
|
|
|
36057
36203
|
$scheduler-event-bg: tint( $selected-bg, 2 ) !default;
|
|
@@ -36118,7 +36264,7 @@ $scheduler-tooltip-events-gap: $padding-y !default;
|
|
|
36118
36264
|
|
|
36119
36265
|
$scheduler-tooltip-event-padding-x: $padding-x !default;
|
|
36120
36266
|
$scheduler-tooltip-event-padding-y: $padding-y !default;
|
|
36121
|
-
$scheduler-tooltip-event-border-radius: $border-radius !default;
|
|
36267
|
+
$scheduler-tooltip-event-border-radius: $kendo-border-radius-md !default;
|
|
36122
36268
|
$scheduler-tooltip-event-gap: $padding-x-sm !default;
|
|
36123
36269
|
|
|
36124
36270
|
$scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
@@ -36520,7 +36666,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
36520
36666
|
// Appointments
|
|
36521
36667
|
kendo-scheduler .k-event,
|
|
36522
36668
|
.k-event {
|
|
36523
|
-
@include border-radius( $border-radius );
|
|
36669
|
+
@include border-radius( $kendo-border-radius );
|
|
36524
36670
|
min-height: $scheduler-event-min-height;
|
|
36525
36671
|
box-sizing: border-box;
|
|
36526
36672
|
border-width: 0;
|
|
@@ -38545,7 +38691,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
38545
38691
|
display: inline-block;
|
|
38546
38692
|
text-align: center;
|
|
38547
38693
|
padding: $timeline-flag-padding-y $timeline-flag-padding-x;
|
|
38548
|
-
border-radius: $border-radius;
|
|
38694
|
+
border-radius: $kendo-border-radius;
|
|
38549
38695
|
line-height: $timeline-flag-line-height;
|
|
38550
38696
|
min-width: $timeline-flag-min-width;
|
|
38551
38697
|
max-width: $timeline-flag-max-width;
|
|
@@ -38609,7 +38755,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
38609
38755
|
}
|
|
38610
38756
|
|
|
38611
38757
|
&::-webkit-scrollbar-thumb {
|
|
38612
|
-
border-radius: $border-radius;
|
|
38758
|
+
border-radius: $kendo-border-radius;
|
|
38613
38759
|
}
|
|
38614
38760
|
}
|
|
38615
38761
|
}
|
|
@@ -38653,7 +38799,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
38653
38799
|
height: 100%;
|
|
38654
38800
|
width: $timeline-track-size;
|
|
38655
38801
|
transform: translateX(-50%);
|
|
38656
|
-
border-radius: $border-radius-lg;
|
|
38802
|
+
border-radius: $kendo-border-radius-lg;
|
|
38657
38803
|
}
|
|
38658
38804
|
|
|
38659
38805
|
.k-timeline-flag-wrap {
|
|
@@ -39998,7 +40144,7 @@ $treemap-line-height: $line-height !default;
|
|
|
39998
40144
|
}
|
|
39999
40145
|
|
|
40000
40146
|
.k-chart-tooltip {
|
|
40001
|
-
@include border-radius( $border-radius );
|
|
40147
|
+
@include border-radius( $kendo-border-radius-md );
|
|
40002
40148
|
font-size: $chart-tooltip-font-size;
|
|
40003
40149
|
line-height: $line-height;
|
|
40004
40150
|
padding: $tooltip-padding-y $tooltip-padding-x;
|
|
@@ -40106,7 +40252,7 @@ $treemap-line-height: $line-height !default;
|
|
|
40106
40252
|
}
|
|
40107
40253
|
|
|
40108
40254
|
.k-navigator-hint .k-scroll {
|
|
40109
|
-
@include border-radius( $border-radius );
|
|
40255
|
+
@include border-radius( $kendo-border-radius-md );
|
|
40110
40256
|
position: absolute;
|
|
40111
40257
|
height: 4px;
|
|
40112
40258
|
}
|
|
@@ -40333,7 +40479,7 @@ $treemap-line-height: $line-height !default;
|
|
|
40333
40479
|
base: $base-bg,
|
|
40334
40480
|
background: $chart-bg,
|
|
40335
40481
|
|
|
40336
|
-
border-radius: $border-radius,
|
|
40482
|
+
border-radius: $kendo-border-radius-md,
|
|
40337
40483
|
|
|
40338
40484
|
normal-background: $base-bg,
|
|
40339
40485
|
normal-text-color: $base-text,
|
|
@@ -40851,7 +40997,7 @@ $orgchart-node-container-gap: $orgchart-spacer !default;
|
|
|
40851
40997
|
$orgchart-node-group-padding-y: $orgchart-spacer !default;
|
|
40852
40998
|
$orgchart-node-group-padding-x: $orgchart-node-group-padding-y !default;
|
|
40853
40999
|
$orgchart-node-group-border-width: 1px !default;
|
|
40854
|
-
$orgchart-node-group-border-radius: $border-radius !default;
|
|
41000
|
+
$orgchart-node-group-border-radius: $kendo-border-radius-md !default;
|
|
40855
41001
|
$orgchart-node-group-bg: $base-bg !default;
|
|
40856
41002
|
$orgchart-node-group-text: $base-text !default;
|
|
40857
41003
|
$orgchart-node-group-border: $base-border !default;
|