@progress/kendo-theme-bootstrap 5.1.2-dev.6 → 5.1.2-dev.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +311 -82
- package/dist/all.scss +227 -125
- package/package.json +3 -3
- package/scss/_variables.scss +5 -4
- package/scss/badge/_variables.scss +2 -2
- package/scss/breadcrumb/_variables.scss +1 -1
- package/scss/calendar/_variables.scss +1 -1
- package/scss/color-preview/_variables.scss +1 -1
- package/scss/coloreditor/_variables.scss +1 -1
- package/scss/colorgradient/_variables.scss +2 -2
- package/scss/fab/_variables.scss +1 -1
- package/scss/gantt/_variables.scss +5 -0
- package/scss/grid/_layout.scss +1 -1
- package/scss/loader/_variables.scss +1 -1
- package/scss/menu/_layout.scss +1 -1
- package/scss/notification/_variables.scss +1 -0
- package/scss/orgchart/_variables.scss +1 -1
- package/scss/pivotgrid/_variables.scss +1 -1
- package/scss/popup/_variables.scss +1 -1
- package/scss/scheduler/_variables.scss +2 -2
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/spreadsheet/_variables.scss +3 -3
- package/scss/taskboard/_variables.scss +1 -1
- package/scss/utils/_border.scss +4 -4
- package/scss/window/_variables.scss +1 -1
package/dist/all.scss
CHANGED
|
@@ -3023,9 +3023,10 @@ $padding-x-lg: $padding-x * 1.5 !default;
|
|
|
3023
3023
|
$padding-y-lg: $padding-y * 1.5 !default;
|
|
3024
3024
|
|
|
3025
3025
|
/// Border radius for all components.
|
|
3026
|
-
$border-radius: $border-radius !default;
|
|
3027
|
-
$border-radius-sm: $border-radius
|
|
3028
|
-
$border-radius-
|
|
3026
|
+
$kendo-border-radius: $border-radius !default;
|
|
3027
|
+
$kendo-border-radius-sm: $kendo-border-radius / 2 !default;
|
|
3028
|
+
$kendo-border-radius-md: $kendo-border-radius !default;
|
|
3029
|
+
$kendo-border-radius-lg: $kendo-border-radius * 1.5 !default;
|
|
3029
3030
|
|
|
3030
3031
|
$panel-padding-x: $card-spacer-x !default;
|
|
3031
3032
|
$panel-padding-y: $card-spacer-y !default;
|
|
@@ -3319,7 +3320,7 @@ $invalid-shadow: 0 0 0 .25rem rgba($invalid-border, .25) !default;
|
|
|
3319
3320
|
$drag-clue-padding-x: $btn-padding-x !default;
|
|
3320
3321
|
$drag-clue-padding-y: $btn-padding-y !default;
|
|
3321
3322
|
$drag-clue-border-width: 1px !default;
|
|
3322
|
-
$drag-clue-border-radius: $border-radius !default;
|
|
3323
|
+
$drag-clue-border-radius: $kendo-border-radius-md !default;
|
|
3323
3324
|
$drag-clue-font-size: $font-size !default;
|
|
3324
3325
|
$drag-clue-font-family: $font-family !default;
|
|
3325
3326
|
$drag-clue-line-height: $line-height !default;
|
|
@@ -3723,7 +3724,7 @@ $display4-letter-spacing: null !default;
|
|
|
3723
3724
|
// Panels
|
|
3724
3725
|
.k-block,
|
|
3725
3726
|
.k-panel {
|
|
3726
|
-
@include border-radius( $border-radius );
|
|
3727
|
+
@include border-radius( $kendo-border-radius-md );
|
|
3727
3728
|
@include fill(
|
|
3728
3729
|
$panel-text,
|
|
3729
3730
|
$panel-bg,
|
|
@@ -3735,7 +3736,7 @@ $display4-letter-spacing: null !default;
|
|
|
3735
3736
|
box-sizing: border-box;
|
|
3736
3737
|
|
|
3737
3738
|
> .k-header {
|
|
3738
|
-
@include border-top-radius( $border-radius );
|
|
3739
|
+
@include border-top-radius( $kendo-border-radius-md );
|
|
3739
3740
|
@include fill(
|
|
3740
3741
|
$header-text,
|
|
3741
3742
|
$header-bg,
|
|
@@ -5328,11 +5329,11 @@ $display4-letter-spacing: null !default;
|
|
|
5328
5329
|
// Component
|
|
5329
5330
|
// #region @import "_border.scss"; -> packages/bootstrap/scss/utils/_border.scss
|
|
5330
5331
|
$utils-border-radius: (
|
|
5331
|
-
default:
|
|
5332
|
+
default: $kendo-border-radius-md,
|
|
5332
5333
|
0: 0,
|
|
5333
|
-
sm:
|
|
5334
|
-
md:
|
|
5335
|
-
lg:
|
|
5334
|
+
sm: $kendo-border-radius-sm,
|
|
5335
|
+
md: $kendo-border-radius-md,
|
|
5336
|
+
lg: $kendo-border-radius-lg,
|
|
5336
5337
|
full: 9999px
|
|
5337
5338
|
) !default;
|
|
5338
5339
|
|
|
@@ -5380,11 +5381,11 @@ $utils-border-radius: (
|
|
|
5380
5381
|
) !default;
|
|
5381
5382
|
|
|
5382
5383
|
$utils-border-radius: (
|
|
5383
|
-
default:
|
|
5384
|
+
default: $kendo-border-radius-md,
|
|
5384
5385
|
0: 0,
|
|
5385
|
-
sm:
|
|
5386
|
-
md:
|
|
5387
|
-
lg:
|
|
5386
|
+
sm: $kendo-border-radius-sm,
|
|
5387
|
+
md: $kendo-border-radius-md,
|
|
5388
|
+
lg: $kendo-border-radius-lg,
|
|
5388
5389
|
full: 9999px
|
|
5389
5390
|
) !default;
|
|
5390
5391
|
|
|
@@ -5508,48 +5509,48 @@ $utils-border-radius: (
|
|
|
5508
5509
|
/// @name k-d-flex
|
|
5509
5510
|
/// @description This is equivalent to `display: flex`. It defines a flex container and enables a flex context for all its direct children. Think of flex items as primarily laying out either in horizontal rows or vertical columns.
|
|
5510
5511
|
/// @group flex-layout
|
|
5511
|
-
.k-d-flex
|
|
5512
|
-
.\!k-d-flex
|
|
5512
|
+
.k-d-flex { display: flex; }
|
|
5513
|
+
.\!k-d-flex { display: flex !important; } // sass-lint:disable-line no-important class-name-format
|
|
5513
5514
|
/// @name k-d-inline-flex
|
|
5514
5515
|
/// @description This is equivalent to `display: inline-flex`. It defines a flex container and enables a flex context for all its direct children. Think of flex items as primarily laying out either in horizontal rows or vertical columns.
|
|
5515
5516
|
/// @group flex-layout
|
|
5516
|
-
.k-d-inline-flex
|
|
5517
|
-
.\!k-d-inline-flex
|
|
5517
|
+
.k-d-inline-flex { display: inline-flex; }
|
|
5518
|
+
.\!k-d-inline-flex { display: inline-flex !important; } // sass-lint:disable-line no-important class-name-format
|
|
5518
5519
|
/// @name k-d-flex-row
|
|
5519
5520
|
/// @description This is equivalent to `display: inline-flex` and `flex-direction: row`.
|
|
5520
5521
|
/// @group flex-layout
|
|
5521
|
-
.k-d-flex-row
|
|
5522
|
-
.\!k-d-flex-row
|
|
5522
|
+
.k-d-flex-row { @extend .k-d-flex, .k-flex-row; }
|
|
5523
|
+
.\!k-d-flex-row { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
|
|
5523
5524
|
/// @name k-d-flex-col
|
|
5524
5525
|
/// @description This is equivalent to `display: inline-flex` and `flex-direction: column`.
|
|
5525
5526
|
/// @group flex-layout
|
|
5526
|
-
.k-d-flex-col
|
|
5527
|
-
.\!k-d-flex-col
|
|
5527
|
+
.k-d-flex-col { @extend .k-d-flex, .k-flex-col; }
|
|
5528
|
+
.\!k-d-flex-col { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
|
|
5528
5529
|
/// @name k-flex-row
|
|
5529
5530
|
/// @description This is equivalent to `flex-direction: row`. This establishes the main-axis to be horizontal, thus defining the direction flex items are placed in the flex container: left to right in `ltr`; right to left in `rtl`.
|
|
5530
5531
|
/// @group flex-layout
|
|
5531
|
-
.k-flex-row
|
|
5532
|
-
.\!k-flex-row
|
|
5532
|
+
.k-flex-row { flex-direction: row; }
|
|
5533
|
+
.\!k-flex-row { flex-direction: row !important; } // sass-lint:disable-line no-important class-name-format
|
|
5533
5534
|
/// @name k-flex-row-reverse
|
|
5534
5535
|
/// @description This is equivalent to `flex-direction: row-reverse`. This establishes the main-axis to be horizontal, thus defining the direction flex items are placed in the flex container: right to left in `ltr`; left to right in `rtl`.
|
|
5535
5536
|
/// @group flex-layout
|
|
5536
|
-
.k-flex-row-reverse
|
|
5537
|
-
.\!k-flex-row-reverse
|
|
5537
|
+
.k-flex-row-reverse { flex-direction: row-reverse; }
|
|
5538
|
+
.\!k-flex-row-reverse { flex-direction: row-reverse !important; } // sass-lint:disable-line no-important class-name-format
|
|
5538
5539
|
/// @name k-flex-col
|
|
5539
5540
|
/// @description This is equivalent to `flex-direction: column`. This establishes the main-axis to be vertical, thus defining the direction flex items are placed in the flex container: top to bottom.
|
|
5540
5541
|
/// @group flex-layout
|
|
5541
|
-
.k-flex-col
|
|
5542
|
-
.\!k-flex-col
|
|
5542
|
+
.k-flex-col { flex-direction: column; }
|
|
5543
|
+
.\!k-flex-col { flex-direction: column !important; } // sass-lint:disable-line no-important class-name-format
|
|
5543
5544
|
/// @name k-flex-col-reverse
|
|
5544
5545
|
/// @description This is equivalent to `flex-direction: column-reverse`. This establishes the main-axis to be vertical, thus defining the direction flex items are placed in the flex container: bottom to top.
|
|
5545
5546
|
/// @group flex-layout
|
|
5546
|
-
.k-flex-col-reverse
|
|
5547
|
-
.\!k-flex-col-reverse
|
|
5547
|
+
.k-flex-col-reverse { flex-direction: column-reverse; }
|
|
5548
|
+
.\!k-flex-col-reverse { flex-direction: column-reverse !important; } // sass-lint:disable-line no-important class-name-format
|
|
5548
5549
|
|
|
5549
5550
|
|
|
5550
5551
|
// Aliases
|
|
5551
|
-
.k-flex-column
|
|
5552
|
-
.k-flex-column-reverse
|
|
5552
|
+
.k-flex-column { @extend .k-flex-col; }
|
|
5553
|
+
.k-flex-column-reverse { @extend .k-flex-col-reverse; }
|
|
5553
5554
|
|
|
5554
5555
|
|
|
5555
5556
|
// Flex wrap
|
|
@@ -5557,15 +5558,18 @@ $utils-border-radius: (
|
|
|
5557
5558
|
/// @name k-flex-wrap
|
|
5558
5559
|
/// @description This is equivalent to `flex-wrap: wrap`. It allows flex items to wrap as needed onto multiple lines, from top to bottom.
|
|
5559
5560
|
/// @group flex-layout
|
|
5560
|
-
.k-flex-wrap
|
|
5561
|
+
.k-flex-wrap { flex-wrap: wrap; }
|
|
5562
|
+
.\!k-flex-wrap { flex-wrap: wrap !important; } // sass-lint:disable-line no-important class-name-format
|
|
5561
5563
|
/// @name k-flex-nowrap
|
|
5562
5564
|
/// @description This is equivalent to `flex-wrap: nowrap`. All flex items will be on one line.
|
|
5563
5565
|
/// @group flex-layout
|
|
5564
|
-
.k-flex-nowrap
|
|
5566
|
+
.k-flex-nowrap { flex-wrap: nowrap; }
|
|
5567
|
+
.\!k-flex-nowrap { flex-wrap: nowrap !important; } // sass-lint:disable-line no-important class-name-format
|
|
5565
5568
|
/// @name k-flex-wrap-reverse
|
|
5566
5569
|
/// @description This is equivalent to `flex-wrap: wrap-reverse`. It allows flex items to wrap as needed onto multiple lines, from bottom to top.
|
|
5567
5570
|
/// @group flex-layout
|
|
5568
|
-
.k-flex-wrap-reverse
|
|
5571
|
+
.k-flex-wrap-reverse { flex-wrap: wrap-reverse; }
|
|
5572
|
+
.\!k-flex-wrap-reverse { flex-wrap: wrap-reverse !important; } // sass-lint:disable-line no-important class-name-format
|
|
5569
5573
|
|
|
5570
5574
|
|
|
5571
5575
|
// Flex, shrink, grow,
|
|
@@ -5573,80 +5577,116 @@ $utils-border-radius: (
|
|
|
5573
5577
|
/// @name k-flex-initial
|
|
5574
5578
|
/// @description This is the same as `flex: initial;` and the shorthand for the default value: `flex: 0 1 auto`. It sizes the item based on its `width`/`height` properties (or its content if not set). It makes the flex item inflexible when there is some free space left, but allows it to shrink to its minimum when there is not enough space. The alignment abilities or `auto` margins can be used to align flex items along the main axis.
|
|
5575
5579
|
/// @group flex-layout
|
|
5576
|
-
.k-flex-initial
|
|
5580
|
+
.k-flex-initial { flex: 0 1 auto; }
|
|
5581
|
+
.\!k-flex-initial { flex: 0 1 auto !important; } // sass-lint:disable-line no-important class-name-format
|
|
5577
5582
|
/// @name k-flex-1
|
|
5578
5583
|
/// @description This is equivalent to `flex: 1 1 0%`. It sizes the item not based on its `width`/`height` properties, but based on the available space. This is similar to `flex: 1 1 auto` execpt it is allowed to shrink beyond its initial size.
|
|
5579
5584
|
/// @group flex-layout
|
|
5580
|
-
.k-flex-1
|
|
5585
|
+
.k-flex-1 { flex: 1 1 0%; }
|
|
5586
|
+
.\!k-flex-1 { flex: 1 1 0% !important; } // sass-lint:disable-line no-important class-name-format
|
|
5581
5587
|
/// @name k-flex-auto
|
|
5582
5588
|
/// @description This is equivalent to `flex: 1 1 auto`. Beware, this is not the default value. It sizes the item based on its `width`/`height` properties, but makes it fully flexible so that they absorb any extra space along the main axis. If all items are either `flex: auto`, `flex: initial`, or `flex: none`, any remaining space after the items have been sized will be distributed evenly to the items with `flex: auto`.
|
|
5583
5589
|
/// @group flex-layout
|
|
5584
|
-
.k-flex-auto
|
|
5590
|
+
.k-flex-auto { flex: 1 1 auto; }
|
|
5591
|
+
.\!k-flex-auto { flex: 1 1 auto !important; } // sass-lint:disable-line no-important class-name-format
|
|
5585
5592
|
/// @name k-flex-none
|
|
5586
5593
|
/// @description This is equivalent to `flex: 0 0 auto`. It sizes the item according to its `width`/`height` properties, but makes it fully inflexible. This is similar to `flex: initial` except it is not allowed to shrink, even in an overflow situation.
|
|
5587
5594
|
/// @group flex-layout
|
|
5588
|
-
.k-flex-none
|
|
5595
|
+
.k-flex-none { flex: none; }
|
|
5596
|
+
.\!k-flex-none { flex: none !important; } // sass-lint:disable-line no-important class-name-format
|
|
5589
5597
|
/// @name k-flex-grow
|
|
5590
5598
|
/// @description This is equivalent to `flex-grow: 1`. It defines the ability for a flex item to grow if necessary. It accepts a unitless value that serves as a proportion. It dictates what amount of the available space inside the flex container the item should take up.
|
|
5591
5599
|
/// @group flex-layout
|
|
5592
|
-
.k-flex-grow
|
|
5600
|
+
.k-flex-grow { flex-grow: 1; }
|
|
5601
|
+
.\!k-flex-grow { flex-grow: 1 !important; } // sass-lint:disable-line no-important class-name-format
|
|
5593
5602
|
/// @name k-flex-grow-0
|
|
5594
5603
|
/// @description This is equivalent to `flex-grow: 0`. The item will not grow.
|
|
5595
5604
|
/// @group flex-layout
|
|
5596
|
-
.k-flex-grow-0
|
|
5605
|
+
.k-flex-grow-0 { flex-grow: 0; }
|
|
5606
|
+
.\!k-flex-grow-0 { flex-grow: 0 !important; } // sass-lint:disable-line no-important class-name-format
|
|
5597
5607
|
/// @name k-flex-shrink
|
|
5598
5608
|
/// @description This is equivalent to `flex-shrink: 1`. It determines how much the flex item will shrink relative to the rest of the flex items in the flex container when there isn't enough space on the row.
|
|
5599
5609
|
/// @group flex-layout
|
|
5600
|
-
.k-flex-shrink
|
|
5610
|
+
.k-flex-shrink { flex-shrink: 1; }
|
|
5611
|
+
.\!k-flex-shrink { flex-shrink: 1 !important; } // sass-lint:disable-line no-important class-name-format
|
|
5601
5612
|
/// @name k-flex-shrink-0
|
|
5602
5613
|
/// @description This is equivalent to `flex-shrink: 0`. The item will not shrink.
|
|
5603
5614
|
/// @group flex-layout
|
|
5604
|
-
.k-flex-shrink-0
|
|
5615
|
+
.k-flex-shrink-0 { flex-shrink: 0; }
|
|
5616
|
+
.\!k-flex-shrink-0 { flex-shrink: 0 !important; } // sass-lint:disable-line no-important class-name-format
|
|
5605
5617
|
/// @name k-flex-basis-auto
|
|
5606
5618
|
/// @description This is equivalent to `flex-basis: auto`. It specifies the initial size of the flex item, before any available space is distributed according to the flex factors. It sizes the element according to its size property.
|
|
5607
5619
|
/// @group flex-layout
|
|
5608
|
-
.k-flex-basis-auto
|
|
5620
|
+
.k-flex-basis-auto { flex-basis: auto; }
|
|
5621
|
+
.\!k-flex-basis-auto { flex-basis: auto !important; } // sass-lint:disable-line no-important class-name-format
|
|
5609
5622
|
/// @name k-flex-basis-0
|
|
5610
5623
|
/// @description This is equivalent to `flex-basis: 0`. It specifies the initial size of the flex item, before any available space is distributed according to the flex factors. It disregards the element' size property.
|
|
5611
5624
|
/// @group flex-layout
|
|
5612
|
-
.k-flex-basis-0
|
|
5625
|
+
.k-flex-basis-0 { flex-basis: 0%; }
|
|
5626
|
+
.\!k-flex-basis-0 { flex-basis: 0% !important; } // sass-lint:disable-line no-important class-name-format
|
|
5613
5627
|
|
|
5614
5628
|
|
|
5615
5629
|
// Flex align
|
|
5616
|
-
.k-align-items-start
|
|
5617
|
-
|
|
5618
|
-
.k-align-items-
|
|
5619
|
-
|
|
5620
|
-
.k-align-items-
|
|
5621
|
-
|
|
5622
|
-
.k-align-
|
|
5623
|
-
|
|
5624
|
-
.k-align-
|
|
5625
|
-
|
|
5626
|
-
|
|
5627
|
-
|
|
5628
|
-
|
|
5629
|
-
.k-align-
|
|
5630
|
-
|
|
5631
|
-
.k-align-
|
|
5632
|
-
|
|
5630
|
+
.k-align-items-start { align-items: flex-start; }
|
|
5631
|
+
.\!k-align-items-start { align-items: flex-start !important; } // sass-lint:disable-line no-important class-name-format
|
|
5632
|
+
.k-align-items-end { align-items: flex-end; }
|
|
5633
|
+
.\!k-align-items-end { align-items: flex-end !important; } // sass-lint:disable-line no-important class-name-format
|
|
5634
|
+
.k-align-items-center { align-items: center; }
|
|
5635
|
+
.\!k-align-items-center { align-items: center !important; } // sass-lint:disable-line no-important class-name-format
|
|
5636
|
+
.k-align-items-stretch { align-items: stretch; }
|
|
5637
|
+
.\!k-align-items-stretch { align-items: stretch !important; } // sass-lint:disable-line no-important class-name-format
|
|
5638
|
+
.k-align-items-baseline { align-items: baseline; }
|
|
5639
|
+
.\!k-align-items-baseline { align-items: baseline !important; } // sass-lint:disable-line no-important class-name-format
|
|
5640
|
+
|
|
5641
|
+
.k-align-content-start { align-content: flex-start; }
|
|
5642
|
+
.\!k-align-content-start { align-content: flex-start !important; } // sass-lint:disable-line no-important class-name-format
|
|
5643
|
+
.k-align-content-end { align-content: flex-end; }
|
|
5644
|
+
.\!k-align-content-end { align-content: flex-end !important; } // sass-lint:disable-line no-important class-name-format
|
|
5645
|
+
.k-align-content-center { align-content: center; }
|
|
5646
|
+
.\!k-align-content-center { align-content: center !important; } // sass-lint:disable-line no-important class-name-format
|
|
5647
|
+
.k-align-content-stretch { align-content: stretch; }
|
|
5648
|
+
.\!k-align-content-stretch { align-content: stretch !important; } // sass-lint:disable-line no-important class-name-format
|
|
5649
|
+
.k-align-content-baseline { align-content: baseline; }
|
|
5650
|
+
.\!k-align-content-baseline { align-content: baseline !important; } // sass-lint:disable-line no-important class-name-format
|
|
5651
|
+
|
|
5652
|
+
.k-align-self-start { align-self: flex-start; }
|
|
5653
|
+
.\!k-align-self-start { align-self: flex-start !important; } // sass-lint:disable-line no-important class-name-format
|
|
5654
|
+
.k-align-self-end { align-self: flex-end; }
|
|
5655
|
+
.\!k-align-self-end { align-self: flex-end !important; } // sass-lint:disable-line no-important class-name-format
|
|
5656
|
+
.k-align-self-center { align-self: center; }
|
|
5657
|
+
.\!k-align-self-center { align-self: center !important; } // sass-lint:disable-line no-important class-name-format
|
|
5658
|
+
.k-align-self-stretch { align-self: stretch; }
|
|
5659
|
+
.\!k-align-self-stretch { align-self: stretch !important; } // sass-lint:disable-line no-important class-name-format
|
|
5660
|
+
.k-align-self-baseline { align-self: baseline; }
|
|
5661
|
+
.\!k-align-self-baseline { align-self: baseline !important; } // sass-lint:disable-line no-important class-name-format
|
|
5633
5662
|
|
|
5634
5663
|
|
|
5635
5664
|
// Justify content
|
|
5636
|
-
.k-justify-content-start
|
|
5637
|
-
|
|
5638
|
-
.k-justify-content-
|
|
5639
|
-
|
|
5640
|
-
.k-justify-content-
|
|
5641
|
-
|
|
5642
|
-
.k-justify-content-
|
|
5665
|
+
.k-justify-content-start { justify-content: flex-start; }
|
|
5666
|
+
.\!k-justify-content-start { justify-content: flex-start !important; } // sass-lint:disable-line no-important class-name-format
|
|
5667
|
+
.k-justify-content-end { justify-content: flex-end; }
|
|
5668
|
+
.\!k-justify-content-end { justify-content: flex-end !important; } // sass-lint:disable-line no-important class-name-format
|
|
5669
|
+
.k-justify-content-center { justify-content: center; }
|
|
5670
|
+
.\!k-justify-content-center { justify-content: center !important; } // sass-lint:disable-line no-important class-name-format
|
|
5671
|
+
.k-justify-content-between { justify-content: space-between; }
|
|
5672
|
+
.\!k-justify-content-between { justify-content: space-between !important; } // sass-lint:disable-line no-important class-name-format
|
|
5673
|
+
.k-justify-content-around { justify-content: space-around; }
|
|
5674
|
+
.\!k-justify-content-around { justify-content: space-around !important; } // sass-lint:disable-line no-important class-name-format
|
|
5675
|
+
.k-justify-content-evenly { justify-content: space-evenly; }
|
|
5676
|
+
.\!k-justify-content-evenly { justify-content: space-evenly !important; } // sass-lint:disable-line no-important class-name-format
|
|
5677
|
+
.k-justify-content-stretch > * { flex: 1 0 0%; }
|
|
5678
|
+
.\!k-justify-content-stretch > * { flex: 1 0 0% !important; } // sass-lint:disable-line no-important class-name-format
|
|
5643
5679
|
|
|
5644
5680
|
|
|
5645
5681
|
// Justify items
|
|
5646
|
-
.k-justify-items-start
|
|
5647
|
-
|
|
5648
|
-
.k-justify-items-
|
|
5649
|
-
|
|
5682
|
+
.k-justify-items-start { justify-items: flex-start; }
|
|
5683
|
+
.\!k-justify-items-start { justify-items: flex-start !important; } // sass-lint:disable-line no-important class-name-format
|
|
5684
|
+
.k-justify-items-end { justify-items: flex-end; }
|
|
5685
|
+
.\!k-justify-items-end { justify-items: flex-end !important; } // sass-lint:disable-line no-important class-name-format
|
|
5686
|
+
.k-justify-items-center { justify-items: center; }
|
|
5687
|
+
.\!k-justify-items-center { justify-items: center !important; } // sass-lint:disable-line no-important class-name-format
|
|
5688
|
+
.k-justify-items-stretch { justify-items: stretch; }
|
|
5689
|
+
.\!k-justify-items-stretch { justify-items: stretch !important; } // sass-lint:disable-line no-important class-name-format
|
|
5650
5690
|
|
|
5651
5691
|
}
|
|
5652
5692
|
|
|
@@ -8920,6 +8960,14 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
8920
8960
|
right: 0;
|
|
8921
8961
|
}
|
|
8922
8962
|
}
|
|
8963
|
+
.k-list-item-text,
|
|
8964
|
+
.k-list-optionlabel {
|
|
8965
|
+
&::before {
|
|
8966
|
+
content: "\200b";
|
|
8967
|
+
width: 0px;
|
|
8968
|
+
overflow: hidden;
|
|
8969
|
+
}
|
|
8970
|
+
}
|
|
8923
8971
|
.k-list-optionlabel {
|
|
8924
8972
|
@extend .k-list-item;
|
|
8925
8973
|
}
|
|
@@ -9499,7 +9547,7 @@ $overlay-opacity: .5 !default;
|
|
|
9499
9547
|
$popup-padding-x: null !default;
|
|
9500
9548
|
$popup-padding-y: null !default;
|
|
9501
9549
|
$popup-border-width: 1px !default;
|
|
9502
|
-
$popup-border-radius: $border-radius !default;
|
|
9550
|
+
$popup-border-radius: $kendo-border-radius-md !default;
|
|
9503
9551
|
|
|
9504
9552
|
$popup-font-size: $font-size !default;
|
|
9505
9553
|
$popup-line-height: $line-height !default;
|
|
@@ -9536,7 +9584,7 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
|
|
|
9536
9584
|
}
|
|
9537
9585
|
}
|
|
9538
9586
|
.k-animation-container {
|
|
9539
|
-
@include border-bottom-radius-only( $border-radius );
|
|
9587
|
+
@include border-bottom-radius-only( $kendo-border-radius-md );
|
|
9540
9588
|
|
|
9541
9589
|
.k-popup {}
|
|
9542
9590
|
}
|
|
@@ -9603,7 +9651,7 @@ $popup-shadow: 0 2px 4px 0 rgba(0, 0, 0, .03), 0 4px 5px 0 rgba(0, 0, 0, .04) !d
|
|
|
9603
9651
|
}
|
|
9604
9652
|
|
|
9605
9653
|
.k-animation-container {
|
|
9606
|
-
@include border-bottom-radius-only( $border-radius );
|
|
9654
|
+
@include border-bottom-radius-only( $kendo-border-radius );
|
|
9607
9655
|
}
|
|
9608
9656
|
|
|
9609
9657
|
}
|
|
@@ -9751,14 +9799,14 @@ $badge-line-height: 1 !default;
|
|
|
9751
9799
|
$badge-padding-x-sm: ( $badge-padding-x / 2 ) !default;
|
|
9752
9800
|
$badge-padding-y-sm: ( $badge-padding-y / 2 ) !default;
|
|
9753
9801
|
$badge-border-width-sm: $badge-border-width !default;
|
|
9754
|
-
$badge-border-radius-sm: $border-radius-sm !default;
|
|
9802
|
+
$badge-border-radius-sm: $kendo-border-radius-sm !default;
|
|
9755
9803
|
$badge-font-size-sm: ( $badge-font-size * .8333333333 ) !default;
|
|
9756
9804
|
$badge-line-height-sm: 1 !default;
|
|
9757
9805
|
|
|
9758
9806
|
$badge-padding-x-lg: ( $badge-padding-x * 1.5 ) !default;
|
|
9759
9807
|
$badge-padding-y-lg: ( $badge-padding-y * 1.5 ) !default;
|
|
9760
9808
|
$badge-border-width-lg: $badge-border-width !default;
|
|
9761
|
-
$badge-border-radius-lg: $border-radius-lg !default;
|
|
9809
|
+
$badge-border-radius-lg: $kendo-border-radius-lg !default;
|
|
9762
9810
|
$badge-font-size-lg: ( $badge-font-size * 1.1666666666 ) !default;
|
|
9763
9811
|
$badge-line-height-lg: 1.25 !default;
|
|
9764
9812
|
|
|
@@ -10245,6 +10293,7 @@ $kendo-button-transition: $transition !default;
|
|
|
10245
10293
|
box-sizing: border-box;
|
|
10246
10294
|
border-width: $kendo-button-border-width;
|
|
10247
10295
|
border-style: solid;
|
|
10296
|
+
border-radius: $kendo-button-border-radius;
|
|
10248
10297
|
color: inherit;
|
|
10249
10298
|
background: none;
|
|
10250
10299
|
font-family: $kendo-button-font-family;
|
|
@@ -13206,6 +13255,8 @@ $kendo-chip-list-sizes: (
|
|
|
13206
13255
|
|
|
13207
13256
|
// Chip content
|
|
13208
13257
|
.k-chip-content {
|
|
13258
|
+
padding: .5em 0;
|
|
13259
|
+
margin: -.5em 0;
|
|
13209
13260
|
min-width: 0;
|
|
13210
13261
|
display: flex;
|
|
13211
13262
|
flex-flow: row nowrap;
|
|
@@ -13485,7 +13536,7 @@ $kendo-chip-list-sizes: (
|
|
|
13485
13536
|
// #endregion
|
|
13486
13537
|
// #region @import "_variables.scss"; -> packages/bootstrap/scss/color-preview/_variables.scss
|
|
13487
13538
|
// Color Preview
|
|
13488
|
-
$color-preview-border-radius: $border-radius !default;
|
|
13539
|
+
$color-preview-border-radius: $kendo-border-radius-md !default;
|
|
13489
13540
|
$color-preview-border-width: 1px !default;
|
|
13490
13541
|
$color-preview-bg: null !default;
|
|
13491
13542
|
$color-preview-text: null !default;
|
|
@@ -13654,7 +13705,7 @@ $loader-secondary-bg: #212529 !default;
|
|
|
13654
13705
|
$loader-container-panel-border-width: 1px !default;
|
|
13655
13706
|
$loader-container-panel-border-style: solid !default;
|
|
13656
13707
|
$loader-container-panel-border-color: $component-border !default;
|
|
13657
|
-
$loader-container-panel-border-radius: $border-radius !default;
|
|
13708
|
+
$loader-container-panel-border-radius: $kendo-border-radius-md !default;
|
|
13658
13709
|
$loader-container-panel-bg: $white !default;
|
|
13659
13710
|
|
|
13660
13711
|
$loader-container-padding-sm: map-get( $spacing, 4 ) !default;
|
|
@@ -14182,7 +14233,7 @@ $loader-container-font-size-lg: $font-size-lg !default;
|
|
|
14182
14233
|
// #region @import "_variables.scss"; -> packages/bootstrap/scss/skeleton/_variables.scss
|
|
14183
14234
|
// Skeleton
|
|
14184
14235
|
$skeleton-text-transform: scale( 1, .6 ) !default;
|
|
14185
|
-
$skeleton-text-border-radius: $border-radius !default;
|
|
14236
|
+
$skeleton-text-border-radius: $kendo-border-radius-md !default;
|
|
14186
14237
|
|
|
14187
14238
|
$skeleton-rect-border-radius: 0 !default;
|
|
14188
14239
|
|
|
@@ -14811,7 +14862,7 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
14811
14862
|
}
|
|
14812
14863
|
|
|
14813
14864
|
.k-context-menu {
|
|
14814
|
-
@include border-radius( $border-radius );
|
|
14865
|
+
@include border-radius( $kendo-border-radius-md );
|
|
14815
14866
|
}
|
|
14816
14867
|
|
|
14817
14868
|
.k-header {
|
|
@@ -15447,7 +15498,7 @@ $actions-gradient: null !default;
|
|
|
15447
15498
|
// #region @import "../window/_variables.scss"; -> packages/bootstrap/scss/window/_variables.scss
|
|
15448
15499
|
// Window
|
|
15449
15500
|
$window-border-width: 1px !default;
|
|
15450
|
-
$window-border-radius: $border-radius !default;
|
|
15501
|
+
$window-border-radius: $kendo-border-radius-md !default;
|
|
15451
15502
|
$window-font-family: $font-family !default;
|
|
15452
15503
|
$window-font-size: $font-size !default;
|
|
15453
15504
|
$window-line-height: $line-height !default;
|
|
@@ -15710,11 +15761,6 @@ $fieldset-legend-border: null !default;
|
|
|
15710
15761
|
display: inline-flex;
|
|
15711
15762
|
width: 100%;
|
|
15712
15763
|
}
|
|
15713
|
-
.k-daterangepicker {
|
|
15714
|
-
width: 100%;
|
|
15715
|
-
flex-flow: column nowrap;
|
|
15716
|
-
gap: 0;
|
|
15717
|
-
}
|
|
15718
15764
|
}
|
|
15719
15765
|
|
|
15720
15766
|
// Form Buttons Container
|
|
@@ -16693,7 +16739,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
16693
16739
|
|
|
16694
16740
|
// Base
|
|
16695
16741
|
.k-progressbar {
|
|
16696
|
-
@include border-radius( $border-radius );
|
|
16742
|
+
@include border-radius( $kendo-border-radius );
|
|
16697
16743
|
--kendo-progressbar-progress: 0;
|
|
16698
16744
|
border-width: $progressbar-border-width;
|
|
16699
16745
|
border-style: solid;
|
|
@@ -18015,7 +18061,7 @@ $slider-disabled-opacity: null !default;
|
|
|
18015
18061
|
|
|
18016
18062
|
.k-slider-track,
|
|
18017
18063
|
.k-slider-selection {
|
|
18018
|
-
@include border-radius( $border-radius );
|
|
18064
|
+
@include border-radius( $kendo-border-radius );
|
|
18019
18065
|
}
|
|
18020
18066
|
|
|
18021
18067
|
.k-slider-track {
|
|
@@ -18145,7 +18191,7 @@ $calendar-footer-padding-y: map-get( $spacing, 2 ) !default;
|
|
|
18145
18191
|
$calendar-cell-padding-x: map-get( $spacing, 2 ) !default;
|
|
18146
18192
|
$calendar-cell-padding-y: map-get( $spacing, 2 ) !default;
|
|
18147
18193
|
$calendar-cell-line-height: $calendar-line-height !default;
|
|
18148
|
-
$calendar-cell-border-radius: $border-radius !default;
|
|
18194
|
+
$calendar-cell-border-radius: $kendo-border-radius-md !default;
|
|
18149
18195
|
|
|
18150
18196
|
$calendar-header-cell-padding-x: null !default;
|
|
18151
18197
|
$calendar-header-cell-padding-y: null !default;
|
|
@@ -18592,6 +18638,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18592
18638
|
line-height: $calendar-navigation-item-height;
|
|
18593
18639
|
cursor: pointer;
|
|
18594
18640
|
padding: 0 1em;
|
|
18641
|
+
overflow: hidden;
|
|
18642
|
+
white-space: nowrap;
|
|
18643
|
+
text-overflow: clip;
|
|
18595
18644
|
}
|
|
18596
18645
|
}
|
|
18597
18646
|
|
|
@@ -19723,7 +19772,7 @@ $colorgradient-spacer: map-get( $spacing, 4 ) !default;
|
|
|
19723
19772
|
|
|
19724
19773
|
$colorgradient-width: 328px !default;
|
|
19725
19774
|
$colorgradient-border-width: 1px !default;
|
|
19726
|
-
$colorgradient-border-radius: $border-radius !default;
|
|
19775
|
+
$colorgradient-border-radius: $kendo-border-radius-md !default;
|
|
19727
19776
|
$colorgradient-padding-y: $colorgradient-spacer !default;
|
|
19728
19777
|
$colorgradient-padding-x: $colorgradient-padding-y !default;
|
|
19729
19778
|
$colorgradient-gap: $colorgradient-spacer !default;
|
|
@@ -19737,7 +19786,7 @@ $colorgradient-border: $component-border !default;
|
|
|
19737
19786
|
$colorgradient-focus-border: $hovered-border !default;
|
|
19738
19787
|
$colorgradient-focus-shadow: null !default;
|
|
19739
19788
|
|
|
19740
|
-
$colorgradient-canvas-border-radius: $border-radius !default;
|
|
19789
|
+
$colorgradient-canvas-border-radius: $kendo-border-radius-md !default;
|
|
19741
19790
|
$colorgradient-canvas-gap: map-get( $spacing, 3 ) !default;
|
|
19742
19791
|
$colorgradient-canvas-rectangle-height: 180px !default;
|
|
19743
19792
|
|
|
@@ -20090,7 +20139,7 @@ $coloreditor-spacer: map-get( $spacing, 4 ) !default;
|
|
|
20090
20139
|
|
|
20091
20140
|
$coloreditor-min-width: 328px !default;
|
|
20092
20141
|
$coloreditor-border-width: 1px !default;
|
|
20093
|
-
$coloreditor-border-radius: $border-radius !default;
|
|
20142
|
+
$coloreditor-border-radius: $kendo-border-radius-md !default;
|
|
20094
20143
|
$coloreditor-font-family: $font-family !default;
|
|
20095
20144
|
$coloreditor-font-size: $font-size !default;
|
|
20096
20145
|
$coloreditor-line-height: $line-height !default;
|
|
@@ -23524,7 +23573,7 @@ $appbar-bottom-box-shadow: 0px -1px 1px rgba(0, 0, 0, .16) !default;
|
|
|
23524
23573
|
$kendo-fab-border-width: 1px !default;
|
|
23525
23574
|
/// Border radius of the FAB.
|
|
23526
23575
|
/// @group floating-action-button
|
|
23527
|
-
$kendo-fab-border-radius: $border-radius / 2 !default;
|
|
23576
|
+
$kendo-fab-border-radius: $kendo-border-radius / 2 !default;
|
|
23528
23577
|
/// Font family of the FAB.
|
|
23529
23578
|
/// @group floating-action-button
|
|
23530
23579
|
$kendo-fab-font-family: $font-family !default;
|
|
@@ -25096,6 +25145,7 @@ $notification-border: $component-border !default;
|
|
|
25096
25145
|
@function notification-theme( $colors ) {
|
|
25097
25146
|
$_theme: ();
|
|
25098
25147
|
|
|
25148
|
+
// sass-lint:disable-block indentation
|
|
25099
25149
|
@each $name, $color in $colors {
|
|
25100
25150
|
$_theme: map-merge(( $name: (
|
|
25101
25151
|
color: shade( $color, 6 ),
|
|
@@ -26421,7 +26471,7 @@ $breadcrumb-delimiter-icon-padding-y: 0px !default;
|
|
|
26421
26471
|
|
|
26422
26472
|
$breadcrumb-link-padding-x: $padding-x-lg / 2 !default;
|
|
26423
26473
|
$breadcrumb-link-padding-y: $padding-y !default;
|
|
26424
|
-
$breadcrumb-link-border-radius: $border-radius !default;
|
|
26474
|
+
$breadcrumb-link-border-radius: $kendo-border-radius-md !default;
|
|
26425
26475
|
|
|
26426
26476
|
$breadcrumb-icon-link-padding-x: $breadcrumb-link-padding-x !default;
|
|
26427
26477
|
$breadcrumb-icon-link-padding-y: $breadcrumb-icon-link-padding-x !default;
|
|
@@ -27514,7 +27564,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
27514
27564
|
|
|
27515
27565
|
// Step label
|
|
27516
27566
|
.k-step-label {
|
|
27517
|
-
max-width: 10em;
|
|
27567
|
+
max-width: calc(min(100%, 10em));
|
|
27518
27568
|
display: inline-flex;
|
|
27519
27569
|
flex-wrap: wrap;
|
|
27520
27570
|
align-items: center;
|
|
@@ -30620,7 +30670,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30620
30670
|
|
|
30621
30671
|
$grid-hierarchy-col-width: ($icon-size * 2) !default;
|
|
30622
30672
|
|
|
30623
|
-
$grid-group-indicator-border-radius: $border-radius !default;
|
|
30673
|
+
$grid-group-indicator-border-radius: $kendo-border-radius-md !default;
|
|
30624
30674
|
$grid-group-indicator-gap: $table-cell-padding-y !default;
|
|
30625
30675
|
|
|
30626
30676
|
$grid-grouping-row-border-top: 1px !default;
|
|
@@ -32081,7 +32131,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32081
32131
|
|
|
32082
32132
|
// Grouping header
|
|
32083
32133
|
.k-grouping-header .k-group-indicator {
|
|
32084
|
-
@include border-radius( $border-radius );
|
|
32134
|
+
@include border-radius( $kendo-border-radius-md );
|
|
32085
32135
|
}
|
|
32086
32136
|
}
|
|
32087
32137
|
|
|
@@ -32838,9 +32888,9 @@ $spreadsheet-insert-image-dialog-preview-width: 355px !default;
|
|
|
32838
32888
|
$spreadsheet-insert-image-dialog-preview-height: 230px !default;
|
|
32839
32889
|
$spreadsheet-insert-image-dialog-preview-img: "image-default.png" !default;
|
|
32840
32890
|
$spreadsheet-insert-image-dialog-preview-border: $component-border !default;
|
|
32841
|
-
$spreadsheet-insert-image-dialog-preview-border-radius: $border-radius !default;
|
|
32891
|
+
$spreadsheet-insert-image-dialog-preview-border-radius: $kendo-border-radius-md !default;
|
|
32842
32892
|
$spreadsheet-insert-image-dialog-preview-overlay-shadow: inset 0 0 0 2000px rgba(0, 0, 0, .5) !default;
|
|
32843
|
-
$spreadsheet-insert-image-dialog-preview-overlay-border-radius: $border-radius !default;
|
|
32893
|
+
$spreadsheet-insert-image-dialog-preview-overlay-border-radius: $kendo-border-radius-md !default;
|
|
32844
32894
|
$spreadsheet-insert-image-dialog-overlay-hovered-text: $component-bg !default;
|
|
32845
32895
|
|
|
32846
32896
|
$spreadsheet-drawing-handle-width: 6px !default;
|
|
@@ -32850,7 +32900,7 @@ $spreadsheet-drawing-handle-border-width: 1px !default;
|
|
|
32850
32900
|
$spreadsheet-drawing-handle-outline-color: $primary !default;
|
|
32851
32901
|
$spreadsheet-drawing-handle-border-color: $selected-bg !default;
|
|
32852
32902
|
$spreadsheet-drawing-handle-bg: $primary !default;
|
|
32853
|
-
$spreadsheet-drawing-handle-border-radius: $border-radius-lg !default;
|
|
32903
|
+
$spreadsheet-drawing-handle-border-radius: $kendo-border-radius-lg !default;
|
|
32854
32904
|
|
|
32855
32905
|
$spreadsheet-drawing-outline-style: solid !default;
|
|
32856
32906
|
$spreadsheet-drawing-outline-width: 2px !default;
|
|
@@ -33437,7 +33487,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
33437
33487
|
box-sizing: border-box;
|
|
33438
33488
|
}
|
|
33439
33489
|
.k-spreadsheet-filter {
|
|
33440
|
-
@include border-radius( $border-radius );
|
|
33490
|
+
@include border-radius( $kendo-border-radius );
|
|
33441
33491
|
line-height: 1;
|
|
33442
33492
|
position: absolute;
|
|
33443
33493
|
cursor: pointer;
|
|
@@ -34192,7 +34242,7 @@ $pivotgrid-configurator-button-size: calc( #{$pivotgrid-line-height * 1em} + #{$
|
|
|
34192
34242
|
$pivotgrid-calculated-field-padding-x: $pivotgrid-spacer !default;
|
|
34193
34243
|
$pivotgrid-calculated-field-padding-y: $pivotgrid-spacer !default;
|
|
34194
34244
|
$pivotgrid-calculated-field-border-width: 1px !default;
|
|
34195
|
-
$pivotgrid-calculated-field-border-radius: $border-radius !default;
|
|
34245
|
+
$pivotgrid-calculated-field-border-radius: $kendo-border-radius-md !default;
|
|
34196
34246
|
$pivotgrid-calculated-field-gap: $pivotgrid-spacer !default;
|
|
34197
34247
|
|
|
34198
34248
|
$pivotgrid-calculated-field-bg: $component-bg !default;
|
|
@@ -36115,7 +36165,7 @@ $taskboard-columns-container-gap: $taskboard-spacer !default;
|
|
|
36115
36165
|
|
|
36116
36166
|
$taskboard-column-width: 320px !default;
|
|
36117
36167
|
$taskboard-column-border-width: 1px !default;
|
|
36118
|
-
$taskboard-column-border-radius: $border-radius-sm !default;
|
|
36168
|
+
$taskboard-column-border-radius: $kendo-border-radius-sm !default;
|
|
36119
36169
|
$taskboard-column-bg: if( $dark-theme, $gray-900, $gray-100 ) !default;
|
|
36120
36170
|
$taskboard-column-text: null !default;
|
|
36121
36171
|
$taskboard-column-border: transparent !default;
|
|
@@ -36667,7 +36717,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
36667
36717
|
|
|
36668
36718
|
// Inline editor
|
|
36669
36719
|
.k-editor-inline {
|
|
36670
|
-
@include border-radius( $border-radius );
|
|
36720
|
+
@include border-radius( $kendo-border-radius-md );
|
|
36671
36721
|
padding: $padding-y-sm $padding-x-sm;
|
|
36672
36722
|
border: 1px solid transparent;
|
|
36673
36723
|
word-wrap: break-word;
|
|
@@ -37088,7 +37138,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
37088
37138
|
white-space: nowrap;
|
|
37089
37139
|
overflow: hidden;
|
|
37090
37140
|
cursor: pointer;
|
|
37091
|
-
@include border-radius( $border-radius );
|
|
37141
|
+
@include border-radius( $kendo-border-radius-md );
|
|
37092
37142
|
|
|
37093
37143
|
.k-i-file,
|
|
37094
37144
|
.k-i-folder {
|
|
@@ -37846,6 +37896,11 @@ $gantt-advanced-bg-lighter: tint($gantt-advanced-bg, 5) !default;
|
|
|
37846
37896
|
$gantt-action-on-offset-text: #000000 !default;
|
|
37847
37897
|
$gantt-offset-resize-handler-top: 45% !default;
|
|
37848
37898
|
|
|
37899
|
+
$gantt-validation-tooltip-width: 200px !default;
|
|
37900
|
+
$gantt-validation-tooltip-border: #656565 !default;
|
|
37901
|
+
$gantt-validation-tooltip-valid-border: $success !default;
|
|
37902
|
+
$gantt-validation-tooltip-invalid-border: $error !default;
|
|
37903
|
+
|
|
37849
37904
|
// #endregion
|
|
37850
37905
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/gantt/_layout.scss
|
|
37851
37906
|
// #region @import "~@progress/kendo-theme-default/scss/gantt/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/gantt/_layout.scss
|
|
@@ -38357,7 +38412,7 @@ $gantt-offset-resize-handler-top: 45% !default;
|
|
|
38357
38412
|
// Single task
|
|
38358
38413
|
.k-single-wrap {}
|
|
38359
38414
|
.k-task-single {
|
|
38360
|
-
@include border-radius( $border-radius );
|
|
38415
|
+
@include border-radius( $kendo-border-radius-md );
|
|
38361
38416
|
border-width: $gantt-task-border-width;
|
|
38362
38417
|
border-style: solid;
|
|
38363
38418
|
box-sizing: border-box;
|
|
@@ -38390,7 +38445,7 @@ $gantt-offset-resize-handler-top: 45% !default;
|
|
|
38390
38445
|
}
|
|
38391
38446
|
}
|
|
38392
38447
|
.k-task-complete {
|
|
38393
|
-
@include border-radius( $border-radius );
|
|
38448
|
+
@include border-radius( $kendo-border-radius-md );
|
|
38394
38449
|
width: 20%;
|
|
38395
38450
|
position: absolute;
|
|
38396
38451
|
z-index: 1;
|
|
@@ -38460,7 +38515,6 @@ $gantt-offset-resize-handler-top: 45% !default;
|
|
|
38460
38515
|
}
|
|
38461
38516
|
|
|
38462
38517
|
// Planned position
|
|
38463
|
-
|
|
38464
38518
|
.k-gantt-planned {
|
|
38465
38519
|
.k-gantt-dependencies,
|
|
38466
38520
|
.k-task-dot,
|
|
@@ -38491,7 +38545,6 @@ $gantt-offset-resize-handler-top: 45% !default;
|
|
|
38491
38545
|
}
|
|
38492
38546
|
|
|
38493
38547
|
// Planned element
|
|
38494
|
-
|
|
38495
38548
|
.k-task-planned {
|
|
38496
38549
|
margin: 0 0 $gantt-planned-margin-y;
|
|
38497
38550
|
line-height: $gantt-planned-line-height;
|
|
@@ -38524,7 +38577,6 @@ $gantt-offset-resize-handler-top: 45% !default;
|
|
|
38524
38577
|
}
|
|
38525
38578
|
|
|
38526
38579
|
// Planned Tooltip
|
|
38527
|
-
|
|
38528
38580
|
.k-planned-tooltip {
|
|
38529
38581
|
.k-task-content {
|
|
38530
38582
|
display: block;
|
|
@@ -38532,7 +38584,6 @@ $gantt-offset-resize-handler-top: 45% !default;
|
|
|
38532
38584
|
}
|
|
38533
38585
|
|
|
38534
38586
|
// Delay offset
|
|
38535
|
-
|
|
38536
38587
|
.k-task-offset-wrap .k-task-content .k-resize-e {
|
|
38537
38588
|
display: none;
|
|
38538
38589
|
}
|
|
@@ -38563,6 +38614,36 @@ $gantt-offset-resize-handler-top: 45% !default;
|
|
|
38563
38614
|
.k-task-offset:hover .k-resize-handle {
|
|
38564
38615
|
visibility: visible;
|
|
38565
38616
|
}
|
|
38617
|
+
|
|
38618
|
+
|
|
38619
|
+
// Dependency Validation Tooltip
|
|
38620
|
+
.k-gantt-tooltip-validation {
|
|
38621
|
+
max-width: $gantt-validation-tooltip-width;
|
|
38622
|
+
display: block;
|
|
38623
|
+
|
|
38624
|
+
&::before {
|
|
38625
|
+
content: '';
|
|
38626
|
+
width: 4px;
|
|
38627
|
+
height: 100%;
|
|
38628
|
+
position: absolute;
|
|
38629
|
+
top: 0;
|
|
38630
|
+
left: 0;
|
|
38631
|
+
}
|
|
38632
|
+
}
|
|
38633
|
+
.k-gantt-tooltip-validation-row {
|
|
38634
|
+
display: flex;
|
|
38635
|
+
flex-direction: row;
|
|
38636
|
+
justify-content: space-between;
|
|
38637
|
+
}
|
|
38638
|
+
.k-gantt-tooltip-validation-label {
|
|
38639
|
+
display: inline-flex;
|
|
38640
|
+
white-space: nowrap;
|
|
38641
|
+
overflow: hidden;
|
|
38642
|
+
text-overflow: ellipsis;
|
|
38643
|
+
}
|
|
38644
|
+
.k-gantt-tooltip-validation-value {
|
|
38645
|
+
font-weight: $font-weight-bold;
|
|
38646
|
+
}
|
|
38566
38647
|
}
|
|
38567
38648
|
|
|
38568
38649
|
@include exports("gantt/export") {
|
|
@@ -38608,7 +38689,8 @@ $gantt-offset-resize-handler-top: 45% !default;
|
|
|
38608
38689
|
|
|
38609
38690
|
@include exports("gantt/rtl") {
|
|
38610
38691
|
|
|
38611
|
-
.k-rtl
|
|
38692
|
+
.k-rtl,
|
|
38693
|
+
[dir="rtl"] {
|
|
38612
38694
|
|
|
38613
38695
|
.k-gantt-rows,
|
|
38614
38696
|
.k-gantt-columns {
|
|
@@ -38687,6 +38769,11 @@ $gantt-offset-resize-handler-top: 45% !default;
|
|
|
38687
38769
|
.k-gantt-timeline .k-milestone-wrap .k-task-start {
|
|
38688
38770
|
right: $gantt-rtl-milestone-dot-start-margin-x;
|
|
38689
38771
|
}
|
|
38772
|
+
|
|
38773
|
+
.k-gantt-tooltip-validation::before {
|
|
38774
|
+
left: auto;
|
|
38775
|
+
right: 0;
|
|
38776
|
+
}
|
|
38690
38777
|
}
|
|
38691
38778
|
}
|
|
38692
38779
|
|
|
@@ -38941,7 +39028,6 @@ $gantt-offset-resize-handler-top: 45% !default;
|
|
|
38941
39028
|
}
|
|
38942
39029
|
|
|
38943
39030
|
// Tooltips
|
|
38944
|
-
|
|
38945
39031
|
.k-offset-tooltip-delayed {
|
|
38946
39032
|
@include fill(
|
|
38947
39033
|
$bg: $gantt-delayed-bg
|
|
@@ -38953,6 +39039,22 @@ $gantt-offset-resize-handler-top: 45% !default;
|
|
|
38953
39039
|
$bg: $gantt-planned-bg
|
|
38954
39040
|
);
|
|
38955
39041
|
}
|
|
39042
|
+
|
|
39043
|
+
.k-gantt-tooltip-validation {
|
|
39044
|
+
&::before {
|
|
39045
|
+
background-color: $gantt-validation-tooltip-border;
|
|
39046
|
+
}
|
|
39047
|
+
}
|
|
39048
|
+
.k-gantt-tooltip-valid {
|
|
39049
|
+
&::before {
|
|
39050
|
+
background-color: $gantt-validation-tooltip-valid-border;
|
|
39051
|
+
}
|
|
39052
|
+
}
|
|
39053
|
+
.k-gantt-tooltip-invalid {
|
|
39054
|
+
&::before {
|
|
39055
|
+
background-color: $gantt-validation-tooltip-invalid-border;
|
|
39056
|
+
}
|
|
39057
|
+
}
|
|
38956
39058
|
}
|
|
38957
39059
|
|
|
38958
39060
|
// #endregion
|
|
@@ -39016,7 +39118,7 @@ $scheduler-footer-border: $toolbar-border !default;
|
|
|
39016
39118
|
$scheduler-footer-gradient: $toolbar-gradient !default;
|
|
39017
39119
|
|
|
39018
39120
|
$scheduler-event-min-height: 25px !default;
|
|
39019
|
-
$scheduler-event-border-radius: $border-radius !default;
|
|
39121
|
+
$scheduler-event-border-radius: $kendo-border-radius-md !default;
|
|
39020
39122
|
$scheduler-event-line-height: calc( #{$scheduler-event-min-height} - (2 * #{$padding-y-sm}) ) !default;
|
|
39021
39123
|
|
|
39022
39124
|
$scheduler-event-bg: tint( $selected-bg, 2 ) !default;
|
|
@@ -39083,7 +39185,7 @@ $scheduler-tooltip-events-gap: $padding-y !default;
|
|
|
39083
39185
|
|
|
39084
39186
|
$scheduler-tooltip-event-padding-x: $padding-x-sm !default;
|
|
39085
39187
|
$scheduler-tooltip-event-padding-y: $padding-y-sm !default;
|
|
39086
|
-
$scheduler-tooltip-event-border-radius: $border-radius !default;
|
|
39188
|
+
$scheduler-tooltip-event-border-radius: $kendo-border-radius-md !default;
|
|
39087
39189
|
$scheduler-tooltip-event-gap: $padding-x-sm !default;
|
|
39088
39190
|
|
|
39089
39191
|
$scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
@@ -39486,7 +39588,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
39486
39588
|
// Appointments
|
|
39487
39589
|
kendo-scheduler .k-event,
|
|
39488
39590
|
.k-event {
|
|
39489
|
-
@include border-radius( $border-radius );
|
|
39591
|
+
@include border-radius( $kendo-border-radius );
|
|
39490
39592
|
min-height: $scheduler-event-min-height;
|
|
39491
39593
|
box-sizing: border-box;
|
|
39492
39594
|
border-width: 0;
|
|
@@ -41559,7 +41661,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
41559
41661
|
display: inline-block;
|
|
41560
41662
|
text-align: center;
|
|
41561
41663
|
padding: $timeline-flag-padding-y $timeline-flag-padding-x;
|
|
41562
|
-
border-radius: $border-radius;
|
|
41664
|
+
border-radius: $kendo-border-radius;
|
|
41563
41665
|
line-height: $timeline-flag-line-height;
|
|
41564
41666
|
min-width: $timeline-flag-min-width;
|
|
41565
41667
|
max-width: $timeline-flag-max-width;
|
|
@@ -41623,7 +41725,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
41623
41725
|
}
|
|
41624
41726
|
|
|
41625
41727
|
&::-webkit-scrollbar-thumb {
|
|
41626
|
-
border-radius: $border-radius;
|
|
41728
|
+
border-radius: $kendo-border-radius;
|
|
41627
41729
|
}
|
|
41628
41730
|
}
|
|
41629
41731
|
}
|
|
@@ -41667,7 +41769,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
41667
41769
|
height: 100%;
|
|
41668
41770
|
width: $timeline-track-size;
|
|
41669
41771
|
transform: translateX(-50%);
|
|
41670
|
-
border-radius: $border-radius-lg;
|
|
41772
|
+
border-radius: $kendo-border-radius-lg;
|
|
41671
41773
|
}
|
|
41672
41774
|
|
|
41673
41775
|
.k-timeline-flag-wrap {
|
|
@@ -43037,7 +43139,7 @@ $treemap-line-height: $line-height !default;
|
|
|
43037
43139
|
}
|
|
43038
43140
|
|
|
43039
43141
|
.k-chart-tooltip {
|
|
43040
|
-
@include border-radius( $border-radius );
|
|
43142
|
+
@include border-radius( $kendo-border-radius-md );
|
|
43041
43143
|
font-size: $chart-tooltip-font-size;
|
|
43042
43144
|
line-height: $line-height;
|
|
43043
43145
|
padding: $tooltip-padding-y $tooltip-padding-x;
|
|
@@ -43145,7 +43247,7 @@ $treemap-line-height: $line-height !default;
|
|
|
43145
43247
|
}
|
|
43146
43248
|
|
|
43147
43249
|
.k-navigator-hint .k-scroll {
|
|
43148
|
-
@include border-radius( $border-radius );
|
|
43250
|
+
@include border-radius( $kendo-border-radius-md );
|
|
43149
43251
|
position: absolute;
|
|
43150
43252
|
height: 4px;
|
|
43151
43253
|
}
|
|
@@ -43372,7 +43474,7 @@ $treemap-line-height: $line-height !default;
|
|
|
43372
43474
|
base: $base-bg,
|
|
43373
43475
|
background: $chart-bg,
|
|
43374
43476
|
|
|
43375
|
-
border-radius: $border-radius,
|
|
43477
|
+
border-radius: $kendo-border-radius-md,
|
|
43376
43478
|
|
|
43377
43479
|
normal-background: $base-bg,
|
|
43378
43480
|
normal-text-color: $base-text,
|
|
@@ -43901,7 +44003,7 @@ $orgchart-node-container-gap: $orgchart-spacer !default;
|
|
|
43901
44003
|
$orgchart-node-group-padding-y: $orgchart-spacer !default;
|
|
43902
44004
|
$orgchart-node-group-padding-x: $orgchart-node-group-padding-y !default;
|
|
43903
44005
|
$orgchart-node-group-border-width: 1px !default;
|
|
43904
|
-
$orgchart-node-group-border-radius: $border-radius !default;
|
|
44006
|
+
$orgchart-node-group-border-radius: $kendo-border-radius-md !default;
|
|
43905
44007
|
$orgchart-node-group-bg: $base-bg !default;
|
|
43906
44008
|
$orgchart-node-group-text: $base-text !default;
|
|
43907
44009
|
$orgchart-node-group-border: $base-border !default;
|