@progress/kendo-theme-material 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 +386 -157
- package/dist/all.scss +226 -124
- package/package.json +3 -3
- package/scss/_variables.scss +4 -3
- package/scss/badge/_variables.scss +3 -3
- package/scss/breadcrumb/_variables.scss +1 -1
- package/scss/card/_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/listgroup/_variables.scss +1 -1
- package/scss/loader/_variables.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/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/tilelayout/_variables.scss +1 -1
- package/scss/tooltip/_variables.scss +1 -1
- package/scss/utils/_border.scss +4 -4
package/dist/all.scss
CHANGED
|
@@ -1864,9 +1864,10 @@ $padding-x-lg: $padding-x * 1.5 !default;
|
|
|
1864
1864
|
$padding-y-lg: $padding-y * 1.5 !default;
|
|
1865
1865
|
|
|
1866
1866
|
/// Border radius for all components.
|
|
1867
|
-
$border-radius:
|
|
1868
|
-
$border-radius-sm: $border-radius / 2 !default;
|
|
1869
|
-
$border-radius-
|
|
1867
|
+
$kendo-border-radius: map-get( $spacing, 1 ) !default;
|
|
1868
|
+
$kendo-border-radius-sm: $kendo-border-radius / 2 !default;
|
|
1869
|
+
$kendo-border-radius-md: $kendo-border-radius !default;
|
|
1870
|
+
$kendo-border-radius-lg: $kendo-border-radius * 1.5 !default;
|
|
1870
1871
|
|
|
1871
1872
|
$panel-padding-x: $padding-x !default;
|
|
1872
1873
|
$panel-padding-y: $padding-y !default;
|
|
@@ -2564,7 +2565,7 @@ $display4-letter-spacing: null !default;
|
|
|
2564
2565
|
// Panels
|
|
2565
2566
|
.k-block,
|
|
2566
2567
|
.k-panel {
|
|
2567
|
-
@include border-radius( $border-radius );
|
|
2568
|
+
@include border-radius( $kendo-border-radius-md );
|
|
2568
2569
|
@include fill(
|
|
2569
2570
|
$panel-text,
|
|
2570
2571
|
$panel-bg,
|
|
@@ -2576,7 +2577,7 @@ $display4-letter-spacing: null !default;
|
|
|
2576
2577
|
box-sizing: border-box;
|
|
2577
2578
|
|
|
2578
2579
|
> .k-header {
|
|
2579
|
-
@include border-top-radius( $border-radius );
|
|
2580
|
+
@include border-top-radius( $kendo-border-radius-md );
|
|
2580
2581
|
@include fill(
|
|
2581
2582
|
$header-text,
|
|
2582
2583
|
$header-bg,
|
|
@@ -4148,11 +4149,11 @@ $display4-letter-spacing: null !default;
|
|
|
4148
4149
|
// Component
|
|
4149
4150
|
// #region @import "_border.scss"; -> packages/material/scss/utils/_border.scss
|
|
4150
4151
|
$utils-border-radius: (
|
|
4151
|
-
default:
|
|
4152
|
+
default: $kendo-border-radius-md,
|
|
4152
4153
|
0: 0,
|
|
4153
|
-
sm:
|
|
4154
|
-
md:
|
|
4155
|
-
lg:
|
|
4154
|
+
sm: $kendo-border-radius-sm,
|
|
4155
|
+
md: $kendo-border-radius-md,
|
|
4156
|
+
lg: $kendo-border-radius-lg,
|
|
4156
4157
|
full: 9999px
|
|
4157
4158
|
) !default;
|
|
4158
4159
|
|
|
@@ -4200,11 +4201,11 @@ $utils-border-radius: (
|
|
|
4200
4201
|
) !default;
|
|
4201
4202
|
|
|
4202
4203
|
$utils-border-radius: (
|
|
4203
|
-
default:
|
|
4204
|
+
default: $kendo-border-radius-md,
|
|
4204
4205
|
0: 0,
|
|
4205
|
-
sm:
|
|
4206
|
-
md:
|
|
4207
|
-
lg:
|
|
4206
|
+
sm: $kendo-border-radius-sm,
|
|
4207
|
+
md: $kendo-border-radius-md,
|
|
4208
|
+
lg: $kendo-border-radius-lg,
|
|
4208
4209
|
full: 9999px
|
|
4209
4210
|
) !default;
|
|
4210
4211
|
|
|
@@ -4328,48 +4329,48 @@ $utils-border-radius: (
|
|
|
4328
4329
|
/// @name k-d-flex
|
|
4329
4330
|
/// @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.
|
|
4330
4331
|
/// @group flex-layout
|
|
4331
|
-
.k-d-flex
|
|
4332
|
-
.\!k-d-flex
|
|
4332
|
+
.k-d-flex { display: flex; }
|
|
4333
|
+
.\!k-d-flex { display: flex !important; } // sass-lint:disable-line no-important class-name-format
|
|
4333
4334
|
/// @name k-d-inline-flex
|
|
4334
4335
|
/// @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.
|
|
4335
4336
|
/// @group flex-layout
|
|
4336
|
-
.k-d-inline-flex
|
|
4337
|
-
.\!k-d-inline-flex
|
|
4337
|
+
.k-d-inline-flex { display: inline-flex; }
|
|
4338
|
+
.\!k-d-inline-flex { display: inline-flex !important; } // sass-lint:disable-line no-important class-name-format
|
|
4338
4339
|
/// @name k-d-flex-row
|
|
4339
4340
|
/// @description This is equivalent to `display: inline-flex` and `flex-direction: row`.
|
|
4340
4341
|
/// @group flex-layout
|
|
4341
|
-
.k-d-flex-row
|
|
4342
|
-
.\!k-d-flex-row
|
|
4342
|
+
.k-d-flex-row { @extend .k-d-flex, .k-flex-row; }
|
|
4343
|
+
.\!k-d-flex-row { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
|
|
4343
4344
|
/// @name k-d-flex-col
|
|
4344
4345
|
/// @description This is equivalent to `display: inline-flex` and `flex-direction: column`.
|
|
4345
4346
|
/// @group flex-layout
|
|
4346
|
-
.k-d-flex-col
|
|
4347
|
-
.\!k-d-flex-col
|
|
4347
|
+
.k-d-flex-col { @extend .k-d-flex, .k-flex-col; }
|
|
4348
|
+
.\!k-d-flex-col { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
|
|
4348
4349
|
/// @name k-flex-row
|
|
4349
4350
|
/// @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`.
|
|
4350
4351
|
/// @group flex-layout
|
|
4351
|
-
.k-flex-row
|
|
4352
|
-
.\!k-flex-row
|
|
4352
|
+
.k-flex-row { flex-direction: row; }
|
|
4353
|
+
.\!k-flex-row { flex-direction: row !important; } // sass-lint:disable-line no-important class-name-format
|
|
4353
4354
|
/// @name k-flex-row-reverse
|
|
4354
4355
|
/// @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`.
|
|
4355
4356
|
/// @group flex-layout
|
|
4356
|
-
.k-flex-row-reverse
|
|
4357
|
-
.\!k-flex-row-reverse
|
|
4357
|
+
.k-flex-row-reverse { flex-direction: row-reverse; }
|
|
4358
|
+
.\!k-flex-row-reverse { flex-direction: row-reverse !important; } // sass-lint:disable-line no-important class-name-format
|
|
4358
4359
|
/// @name k-flex-col
|
|
4359
4360
|
/// @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.
|
|
4360
4361
|
/// @group flex-layout
|
|
4361
|
-
.k-flex-col
|
|
4362
|
-
.\!k-flex-col
|
|
4362
|
+
.k-flex-col { flex-direction: column; }
|
|
4363
|
+
.\!k-flex-col { flex-direction: column !important; } // sass-lint:disable-line no-important class-name-format
|
|
4363
4364
|
/// @name k-flex-col-reverse
|
|
4364
4365
|
/// @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.
|
|
4365
4366
|
/// @group flex-layout
|
|
4366
|
-
.k-flex-col-reverse
|
|
4367
|
-
.\!k-flex-col-reverse
|
|
4367
|
+
.k-flex-col-reverse { flex-direction: column-reverse; }
|
|
4368
|
+
.\!k-flex-col-reverse { flex-direction: column-reverse !important; } // sass-lint:disable-line no-important class-name-format
|
|
4368
4369
|
|
|
4369
4370
|
|
|
4370
4371
|
// Aliases
|
|
4371
|
-
.k-flex-column
|
|
4372
|
-
.k-flex-column-reverse
|
|
4372
|
+
.k-flex-column { @extend .k-flex-col; }
|
|
4373
|
+
.k-flex-column-reverse { @extend .k-flex-col-reverse; }
|
|
4373
4374
|
|
|
4374
4375
|
|
|
4375
4376
|
// Flex wrap
|
|
@@ -4377,15 +4378,18 @@ $utils-border-radius: (
|
|
|
4377
4378
|
/// @name k-flex-wrap
|
|
4378
4379
|
/// @description This is equivalent to `flex-wrap: wrap`. It allows flex items to wrap as needed onto multiple lines, from top to bottom.
|
|
4379
4380
|
/// @group flex-layout
|
|
4380
|
-
.k-flex-wrap
|
|
4381
|
+
.k-flex-wrap { flex-wrap: wrap; }
|
|
4382
|
+
.\!k-flex-wrap { flex-wrap: wrap !important; } // sass-lint:disable-line no-important class-name-format
|
|
4381
4383
|
/// @name k-flex-nowrap
|
|
4382
4384
|
/// @description This is equivalent to `flex-wrap: nowrap`. All flex items will be on one line.
|
|
4383
4385
|
/// @group flex-layout
|
|
4384
|
-
.k-flex-nowrap
|
|
4386
|
+
.k-flex-nowrap { flex-wrap: nowrap; }
|
|
4387
|
+
.\!k-flex-nowrap { flex-wrap: nowrap !important; } // sass-lint:disable-line no-important class-name-format
|
|
4385
4388
|
/// @name k-flex-wrap-reverse
|
|
4386
4389
|
/// @description This is equivalent to `flex-wrap: wrap-reverse`. It allows flex items to wrap as needed onto multiple lines, from bottom to top.
|
|
4387
4390
|
/// @group flex-layout
|
|
4388
|
-
.k-flex-wrap-reverse
|
|
4391
|
+
.k-flex-wrap-reverse { flex-wrap: wrap-reverse; }
|
|
4392
|
+
.\!k-flex-wrap-reverse { flex-wrap: wrap-reverse !important; } // sass-lint:disable-line no-important class-name-format
|
|
4389
4393
|
|
|
4390
4394
|
|
|
4391
4395
|
// Flex, shrink, grow,
|
|
@@ -4393,80 +4397,116 @@ $utils-border-radius: (
|
|
|
4393
4397
|
/// @name k-flex-initial
|
|
4394
4398
|
/// @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.
|
|
4395
4399
|
/// @group flex-layout
|
|
4396
|
-
.k-flex-initial
|
|
4400
|
+
.k-flex-initial { flex: 0 1 auto; }
|
|
4401
|
+
.\!k-flex-initial { flex: 0 1 auto !important; } // sass-lint:disable-line no-important class-name-format
|
|
4397
4402
|
/// @name k-flex-1
|
|
4398
4403
|
/// @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.
|
|
4399
4404
|
/// @group flex-layout
|
|
4400
|
-
.k-flex-1
|
|
4405
|
+
.k-flex-1 { flex: 1 1 0%; }
|
|
4406
|
+
.\!k-flex-1 { flex: 1 1 0% !important; } // sass-lint:disable-line no-important class-name-format
|
|
4401
4407
|
/// @name k-flex-auto
|
|
4402
4408
|
/// @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`.
|
|
4403
4409
|
/// @group flex-layout
|
|
4404
|
-
.k-flex-auto
|
|
4410
|
+
.k-flex-auto { flex: 1 1 auto; }
|
|
4411
|
+
.\!k-flex-auto { flex: 1 1 auto !important; } // sass-lint:disable-line no-important class-name-format
|
|
4405
4412
|
/// @name k-flex-none
|
|
4406
4413
|
/// @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.
|
|
4407
4414
|
/// @group flex-layout
|
|
4408
|
-
.k-flex-none
|
|
4415
|
+
.k-flex-none { flex: none; }
|
|
4416
|
+
.\!k-flex-none { flex: none !important; } // sass-lint:disable-line no-important class-name-format
|
|
4409
4417
|
/// @name k-flex-grow
|
|
4410
4418
|
/// @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.
|
|
4411
4419
|
/// @group flex-layout
|
|
4412
|
-
.k-flex-grow
|
|
4420
|
+
.k-flex-grow { flex-grow: 1; }
|
|
4421
|
+
.\!k-flex-grow { flex-grow: 1 !important; } // sass-lint:disable-line no-important class-name-format
|
|
4413
4422
|
/// @name k-flex-grow-0
|
|
4414
4423
|
/// @description This is equivalent to `flex-grow: 0`. The item will not grow.
|
|
4415
4424
|
/// @group flex-layout
|
|
4416
|
-
.k-flex-grow-0
|
|
4425
|
+
.k-flex-grow-0 { flex-grow: 0; }
|
|
4426
|
+
.\!k-flex-grow-0 { flex-grow: 0 !important; } // sass-lint:disable-line no-important class-name-format
|
|
4417
4427
|
/// @name k-flex-shrink
|
|
4418
4428
|
/// @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.
|
|
4419
4429
|
/// @group flex-layout
|
|
4420
|
-
.k-flex-shrink
|
|
4430
|
+
.k-flex-shrink { flex-shrink: 1; }
|
|
4431
|
+
.\!k-flex-shrink { flex-shrink: 1 !important; } // sass-lint:disable-line no-important class-name-format
|
|
4421
4432
|
/// @name k-flex-shrink-0
|
|
4422
4433
|
/// @description This is equivalent to `flex-shrink: 0`. The item will not shrink.
|
|
4423
4434
|
/// @group flex-layout
|
|
4424
|
-
.k-flex-shrink-0
|
|
4435
|
+
.k-flex-shrink-0 { flex-shrink: 0; }
|
|
4436
|
+
.\!k-flex-shrink-0 { flex-shrink: 0 !important; } // sass-lint:disable-line no-important class-name-format
|
|
4425
4437
|
/// @name k-flex-basis-auto
|
|
4426
4438
|
/// @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.
|
|
4427
4439
|
/// @group flex-layout
|
|
4428
|
-
.k-flex-basis-auto
|
|
4440
|
+
.k-flex-basis-auto { flex-basis: auto; }
|
|
4441
|
+
.\!k-flex-basis-auto { flex-basis: auto !important; } // sass-lint:disable-line no-important class-name-format
|
|
4429
4442
|
/// @name k-flex-basis-0
|
|
4430
4443
|
/// @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.
|
|
4431
4444
|
/// @group flex-layout
|
|
4432
|
-
.k-flex-basis-0
|
|
4445
|
+
.k-flex-basis-0 { flex-basis: 0%; }
|
|
4446
|
+
.\!k-flex-basis-0 { flex-basis: 0% !important; } // sass-lint:disable-line no-important class-name-format
|
|
4433
4447
|
|
|
4434
4448
|
|
|
4435
4449
|
// Flex align
|
|
4436
|
-
.k-align-items-start
|
|
4437
|
-
|
|
4438
|
-
.k-align-items-
|
|
4439
|
-
|
|
4440
|
-
.k-align-items-
|
|
4441
|
-
|
|
4442
|
-
.k-align-
|
|
4443
|
-
|
|
4444
|
-
.k-align-
|
|
4445
|
-
|
|
4446
|
-
|
|
4447
|
-
|
|
4448
|
-
|
|
4449
|
-
.k-align-
|
|
4450
|
-
|
|
4451
|
-
.k-align-
|
|
4452
|
-
|
|
4450
|
+
.k-align-items-start { align-items: flex-start; }
|
|
4451
|
+
.\!k-align-items-start { align-items: flex-start !important; } // sass-lint:disable-line no-important class-name-format
|
|
4452
|
+
.k-align-items-end { align-items: flex-end; }
|
|
4453
|
+
.\!k-align-items-end { align-items: flex-end !important; } // sass-lint:disable-line no-important class-name-format
|
|
4454
|
+
.k-align-items-center { align-items: center; }
|
|
4455
|
+
.\!k-align-items-center { align-items: center !important; } // sass-lint:disable-line no-important class-name-format
|
|
4456
|
+
.k-align-items-stretch { align-items: stretch; }
|
|
4457
|
+
.\!k-align-items-stretch { align-items: stretch !important; } // sass-lint:disable-line no-important class-name-format
|
|
4458
|
+
.k-align-items-baseline { align-items: baseline; }
|
|
4459
|
+
.\!k-align-items-baseline { align-items: baseline !important; } // sass-lint:disable-line no-important class-name-format
|
|
4460
|
+
|
|
4461
|
+
.k-align-content-start { align-content: flex-start; }
|
|
4462
|
+
.\!k-align-content-start { align-content: flex-start !important; } // sass-lint:disable-line no-important class-name-format
|
|
4463
|
+
.k-align-content-end { align-content: flex-end; }
|
|
4464
|
+
.\!k-align-content-end { align-content: flex-end !important; } // sass-lint:disable-line no-important class-name-format
|
|
4465
|
+
.k-align-content-center { align-content: center; }
|
|
4466
|
+
.\!k-align-content-center { align-content: center !important; } // sass-lint:disable-line no-important class-name-format
|
|
4467
|
+
.k-align-content-stretch { align-content: stretch; }
|
|
4468
|
+
.\!k-align-content-stretch { align-content: stretch !important; } // sass-lint:disable-line no-important class-name-format
|
|
4469
|
+
.k-align-content-baseline { align-content: baseline; }
|
|
4470
|
+
.\!k-align-content-baseline { align-content: baseline !important; } // sass-lint:disable-line no-important class-name-format
|
|
4471
|
+
|
|
4472
|
+
.k-align-self-start { align-self: flex-start; }
|
|
4473
|
+
.\!k-align-self-start { align-self: flex-start !important; } // sass-lint:disable-line no-important class-name-format
|
|
4474
|
+
.k-align-self-end { align-self: flex-end; }
|
|
4475
|
+
.\!k-align-self-end { align-self: flex-end !important; } // sass-lint:disable-line no-important class-name-format
|
|
4476
|
+
.k-align-self-center { align-self: center; }
|
|
4477
|
+
.\!k-align-self-center { align-self: center !important; } // sass-lint:disable-line no-important class-name-format
|
|
4478
|
+
.k-align-self-stretch { align-self: stretch; }
|
|
4479
|
+
.\!k-align-self-stretch { align-self: stretch !important; } // sass-lint:disable-line no-important class-name-format
|
|
4480
|
+
.k-align-self-baseline { align-self: baseline; }
|
|
4481
|
+
.\!k-align-self-baseline { align-self: baseline !important; } // sass-lint:disable-line no-important class-name-format
|
|
4453
4482
|
|
|
4454
4483
|
|
|
4455
4484
|
// Justify content
|
|
4456
|
-
.k-justify-content-start
|
|
4457
|
-
|
|
4458
|
-
.k-justify-content-
|
|
4459
|
-
|
|
4460
|
-
.k-justify-content-
|
|
4461
|
-
|
|
4462
|
-
.k-justify-content-
|
|
4485
|
+
.k-justify-content-start { justify-content: flex-start; }
|
|
4486
|
+
.\!k-justify-content-start { justify-content: flex-start !important; } // sass-lint:disable-line no-important class-name-format
|
|
4487
|
+
.k-justify-content-end { justify-content: flex-end; }
|
|
4488
|
+
.\!k-justify-content-end { justify-content: flex-end !important; } // sass-lint:disable-line no-important class-name-format
|
|
4489
|
+
.k-justify-content-center { justify-content: center; }
|
|
4490
|
+
.\!k-justify-content-center { justify-content: center !important; } // sass-lint:disable-line no-important class-name-format
|
|
4491
|
+
.k-justify-content-between { justify-content: space-between; }
|
|
4492
|
+
.\!k-justify-content-between { justify-content: space-between !important; } // sass-lint:disable-line no-important class-name-format
|
|
4493
|
+
.k-justify-content-around { justify-content: space-around; }
|
|
4494
|
+
.\!k-justify-content-around { justify-content: space-around !important; } // sass-lint:disable-line no-important class-name-format
|
|
4495
|
+
.k-justify-content-evenly { justify-content: space-evenly; }
|
|
4496
|
+
.\!k-justify-content-evenly { justify-content: space-evenly !important; } // sass-lint:disable-line no-important class-name-format
|
|
4497
|
+
.k-justify-content-stretch > * { flex: 1 0 0%; }
|
|
4498
|
+
.\!k-justify-content-stretch > * { flex: 1 0 0% !important; } // sass-lint:disable-line no-important class-name-format
|
|
4463
4499
|
|
|
4464
4500
|
|
|
4465
4501
|
// Justify items
|
|
4466
|
-
.k-justify-items-start
|
|
4467
|
-
|
|
4468
|
-
.k-justify-items-
|
|
4469
|
-
|
|
4502
|
+
.k-justify-items-start { justify-items: flex-start; }
|
|
4503
|
+
.\!k-justify-items-start { justify-items: flex-start !important; } // sass-lint:disable-line no-important class-name-format
|
|
4504
|
+
.k-justify-items-end { justify-items: flex-end; }
|
|
4505
|
+
.\!k-justify-items-end { justify-items: flex-end !important; } // sass-lint:disable-line no-important class-name-format
|
|
4506
|
+
.k-justify-items-center { justify-items: center; }
|
|
4507
|
+
.\!k-justify-items-center { justify-items: center !important; } // sass-lint:disable-line no-important class-name-format
|
|
4508
|
+
.k-justify-items-stretch { justify-items: stretch; }
|
|
4509
|
+
.\!k-justify-items-stretch { justify-items: stretch !important; } // sass-lint:disable-line no-important class-name-format
|
|
4470
4510
|
|
|
4471
4511
|
}
|
|
4472
4512
|
|
|
@@ -7757,6 +7797,14 @@ $kendo-checkbox-ripple-opacity: .2 !default;
|
|
|
7757
7797
|
right: 0;
|
|
7758
7798
|
}
|
|
7759
7799
|
}
|
|
7800
|
+
.k-list-item-text,
|
|
7801
|
+
.k-list-optionlabel {
|
|
7802
|
+
&::before {
|
|
7803
|
+
content: "\200b";
|
|
7804
|
+
width: 0px;
|
|
7805
|
+
overflow: hidden;
|
|
7806
|
+
}
|
|
7807
|
+
}
|
|
7760
7808
|
.k-list-optionlabel {
|
|
7761
7809
|
@extend .k-list-item;
|
|
7762
7810
|
}
|
|
@@ -8019,7 +8067,7 @@ $kendo-checkbox-ripple-opacity: .2 !default;
|
|
|
8019
8067
|
// #region @import "_variables.scss"; -> packages/material/scss/listgroup/_variables.scss
|
|
8020
8068
|
// Listgroup
|
|
8021
8069
|
$listgroup-border-width: 1px !default;
|
|
8022
|
-
$listgroup-border-radius: $border-radius !default;
|
|
8070
|
+
$listgroup-border-radius: $kendo-border-radius-md !default;
|
|
8023
8071
|
|
|
8024
8072
|
$listgroup-font-size: $font-size !default;
|
|
8025
8073
|
$listgroup-line-height: (20 / 14) !default;
|
|
@@ -8373,7 +8421,7 @@ $popup-shadow: 0 2px 4px -1px rgba( $elevation, .2 ), 0 4px 5px 0 rgba( $elevati
|
|
|
8373
8421
|
}
|
|
8374
8422
|
}
|
|
8375
8423
|
.k-animation-container {
|
|
8376
|
-
@include border-bottom-radius-only( $border-radius );
|
|
8424
|
+
@include border-bottom-radius-only( $kendo-border-radius-md );
|
|
8377
8425
|
|
|
8378
8426
|
.k-popup {}
|
|
8379
8427
|
}
|
|
@@ -8431,7 +8479,7 @@ $popup-shadow: 0 2px 4px -1px rgba( $elevation, .2 ), 0 4px 5px 0 rgba( $elevati
|
|
|
8431
8479
|
}
|
|
8432
8480
|
|
|
8433
8481
|
.k-animation-container {
|
|
8434
|
-
@include border-bottom-radius-only( $border-radius );
|
|
8482
|
+
@include border-bottom-radius-only( $kendo-border-radius );
|
|
8435
8483
|
}
|
|
8436
8484
|
|
|
8437
8485
|
}
|
|
@@ -8572,21 +8620,21 @@ $popup-shadow: 0 2px 4px -1px rgba( $elevation, .2 ), 0 4px 5px 0 rgba( $elevati
|
|
|
8572
8620
|
$badge-padding-x: $padding-y !default;
|
|
8573
8621
|
$badge-padding-y: $badge-padding-x !default;
|
|
8574
8622
|
$badge-border-width: 1px !default;
|
|
8575
|
-
$badge-border-radius: $border-radius !default;
|
|
8623
|
+
$badge-border-radius: $kendo-border-radius-md !default;
|
|
8576
8624
|
$badge-font-size: $font-size-sm !default;
|
|
8577
8625
|
$badge-line-height: 1 !default;
|
|
8578
8626
|
|
|
8579
8627
|
$badge-padding-x-sm: ( $badge-padding-x / 2 ) !default;
|
|
8580
8628
|
$badge-padding-y-sm: ( $badge-padding-y / 2 ) !default;
|
|
8581
8629
|
$badge-border-width-sm: $badge-border-width !default;
|
|
8582
|
-
$badge-border-radius-sm: $border-radius-sm !default;
|
|
8630
|
+
$badge-border-radius-sm: $kendo-border-radius-sm !default;
|
|
8583
8631
|
$badge-font-size-sm: $font-size-xs !default;
|
|
8584
8632
|
$badge-line-height-sm: 1 !default;
|
|
8585
8633
|
|
|
8586
8634
|
$badge-padding-x-lg: ( $badge-padding-x * 1.5 ) !default;
|
|
8587
8635
|
$badge-padding-y-lg: ( $badge-padding-y * 1.5 ) !default;
|
|
8588
8636
|
$badge-border-width-lg: $badge-border-width !default;
|
|
8589
|
-
$badge-border-radius-lg: $border-radius-lg !default;
|
|
8637
|
+
$badge-border-radius-lg: $kendo-border-radius-lg !default;
|
|
8590
8638
|
$badge-font-size-lg: $font-size !default;
|
|
8591
8639
|
$badge-line-height-lg: 1 !default;
|
|
8592
8640
|
|
|
@@ -9069,6 +9117,7 @@ $kendo-button-transition: box-shadow 280ms cubic-bezier( .4, 0, .2, 1 ) !default
|
|
|
9069
9117
|
box-sizing: border-box;
|
|
9070
9118
|
border-width: $kendo-button-border-width;
|
|
9071
9119
|
border-style: solid;
|
|
9120
|
+
border-radius: $kendo-button-border-radius;
|
|
9072
9121
|
color: inherit;
|
|
9073
9122
|
background: none;
|
|
9074
9123
|
font-family: $kendo-button-font-family;
|
|
@@ -12326,6 +12375,8 @@ $kendo-chip-list-sizes: (
|
|
|
12326
12375
|
|
|
12327
12376
|
// Chip content
|
|
12328
12377
|
.k-chip-content {
|
|
12378
|
+
padding: .5em 0;
|
|
12379
|
+
margin: -.5em 0;
|
|
12329
12380
|
min-width: 0;
|
|
12330
12381
|
display: flex;
|
|
12331
12382
|
flex-flow: row nowrap;
|
|
@@ -12649,7 +12700,7 @@ $kendo-chip-list-sizes: (
|
|
|
12649
12700
|
// #endregion
|
|
12650
12701
|
// #region @import "_variables.scss"; -> packages/material/scss/color-preview/_variables.scss
|
|
12651
12702
|
// Color Preview
|
|
12652
|
-
$color-preview-border-radius: $border-radius !default;
|
|
12703
|
+
$color-preview-border-radius: $kendo-border-radius-md !default;
|
|
12653
12704
|
$color-preview-border-width: 1px !default;
|
|
12654
12705
|
$color-preview-bg: null !default;
|
|
12655
12706
|
$color-preview-text: null !default;
|
|
@@ -12817,7 +12868,7 @@ $loader-secondary-bg: #000000 !default;
|
|
|
12817
12868
|
$loader-container-panel-border-width: 1px !default;
|
|
12818
12869
|
$loader-container-panel-border-style: solid !default;
|
|
12819
12870
|
$loader-container-panel-border-color: $component-border !default;
|
|
12820
|
-
$loader-container-panel-border-radius: $border-radius !default;
|
|
12871
|
+
$loader-container-panel-border-radius: $kendo-border-radius-md !default;
|
|
12821
12872
|
$loader-container-panel-bg: $white !default;
|
|
12822
12873
|
|
|
12823
12874
|
$loader-container-padding-sm: map-get( $spacing, 4 ) !default;
|
|
@@ -13345,7 +13396,7 @@ $loader-container-font-size-lg: $font-size-lg !default;
|
|
|
13345
13396
|
// #region @import "_variables.scss"; -> packages/material/scss/skeleton/_variables.scss
|
|
13346
13397
|
// Skeleton
|
|
13347
13398
|
$skeleton-text-transform: scale( 1, .6 ) !default;
|
|
13348
|
-
$skeleton-text-border-radius: $border-radius !default;
|
|
13399
|
+
$skeleton-text-border-radius: $kendo-border-radius-md !default;
|
|
13349
13400
|
|
|
13350
13401
|
$skeleton-rect-border-radius: 0 !default;
|
|
13351
13402
|
|
|
@@ -13500,7 +13551,7 @@ $tooltip-padding-y: ($padding-y * .75) !default;
|
|
|
13500
13551
|
$tooltip-padding-x: ($padding-x / 2) !default;
|
|
13501
13552
|
$tooltip-max-width: null !default;
|
|
13502
13553
|
$tooltip-border-width: 0px !default;
|
|
13503
|
-
$tooltip-border-radius: $border-radius !default;
|
|
13554
|
+
$tooltip-border-radius: $kendo-border-radius-md !default;
|
|
13504
13555
|
|
|
13505
13556
|
$tooltip-font-family: $font-family !default;
|
|
13506
13557
|
$tooltip-font-size: $font-size-sm !default;
|
|
@@ -15022,11 +15073,6 @@ $fieldset-legend-border: null !default;
|
|
|
15022
15073
|
display: inline-flex;
|
|
15023
15074
|
width: 100%;
|
|
15024
15075
|
}
|
|
15025
|
-
.k-daterangepicker {
|
|
15026
|
-
width: 100%;
|
|
15027
|
-
flex-flow: column nowrap;
|
|
15028
|
-
gap: 0;
|
|
15029
|
-
}
|
|
15030
15076
|
}
|
|
15031
15077
|
|
|
15032
15078
|
// Form Buttons Container
|
|
@@ -16006,7 +16052,7 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16006
16052
|
|
|
16007
16053
|
// Base
|
|
16008
16054
|
.k-progressbar {
|
|
16009
|
-
@include border-radius( $border-radius );
|
|
16055
|
+
@include border-radius( $kendo-border-radius );
|
|
16010
16056
|
--kendo-progressbar-progress: 0;
|
|
16011
16057
|
border-width: $progressbar-border-width;
|
|
16012
16058
|
border-style: solid;
|
|
@@ -17500,7 +17546,7 @@ $slider-disabled-opacity: .65 !default;
|
|
|
17500
17546
|
|
|
17501
17547
|
.k-slider-track,
|
|
17502
17548
|
.k-slider-selection {
|
|
17503
|
-
@include border-radius( $border-radius );
|
|
17549
|
+
@include border-radius( $kendo-border-radius );
|
|
17504
17550
|
}
|
|
17505
17551
|
|
|
17506
17552
|
.k-slider-track {
|
|
@@ -18115,6 +18161,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18115
18161
|
line-height: $calendar-navigation-item-height;
|
|
18116
18162
|
cursor: pointer;
|
|
18117
18163
|
padding: 0 1em;
|
|
18164
|
+
overflow: hidden;
|
|
18165
|
+
white-space: nowrap;
|
|
18166
|
+
text-overflow: clip;
|
|
18118
18167
|
}
|
|
18119
18168
|
}
|
|
18120
18169
|
|
|
@@ -19313,7 +19362,7 @@ $colorgradient-spacer: map-get( $spacing, 3 ) !default;
|
|
|
19313
19362
|
|
|
19314
19363
|
$colorgradient-width: 294px !default;
|
|
19315
19364
|
$colorgradient-border-width: 1px !default;
|
|
19316
|
-
$colorgradient-border-radius: $border-radius !default;
|
|
19365
|
+
$colorgradient-border-radius: $kendo-border-radius-md !default;
|
|
19317
19366
|
$colorgradient-padding-y: $colorgradient-spacer !default;
|
|
19318
19367
|
$colorgradient-padding-x: $colorgradient-padding-y !default;
|
|
19319
19368
|
$colorgradient-gap: $colorgradient-spacer !default;
|
|
@@ -19327,7 +19376,7 @@ $colorgradient-border: $component-border !default;
|
|
|
19327
19376
|
$colorgradient-focus-border: $hovered-border !default;
|
|
19328
19377
|
$colorgradient-focus-shadow: $box-shadow-depth-2 !default;
|
|
19329
19378
|
|
|
19330
|
-
$colorgradient-canvas-border-radius: $border-radius !default;
|
|
19379
|
+
$colorgradient-canvas-border-radius: $kendo-border-radius-md !default;
|
|
19331
19380
|
$colorgradient-canvas-gap: $colorgradient-spacer !default;
|
|
19332
19381
|
$colorgradient-canvas-rectangle-height: 180px !default;
|
|
19333
19382
|
|
|
@@ -19680,7 +19729,7 @@ $coloreditor-spacer: map-get( $spacing, 3 ) !default;
|
|
|
19680
19729
|
|
|
19681
19730
|
$coloreditor-min-width: 294px !default;
|
|
19682
19731
|
$coloreditor-border-width: 1px !default;
|
|
19683
|
-
$coloreditor-border-radius: $border-radius !default;
|
|
19732
|
+
$coloreditor-border-radius: $kendo-border-radius-md !default;
|
|
19684
19733
|
$coloreditor-font-family: $font-family !default;
|
|
19685
19734
|
$coloreditor-font-size: $font-size !default;
|
|
19686
19735
|
$coloreditor-line-height: $line-height !default;
|
|
@@ -23214,7 +23263,7 @@ $appbar-bottom-box-shadow: 0px -2px 3px rgba(0, 0, 0, .24) !default;
|
|
|
23214
23263
|
$kendo-fab-border-width: 0px !default;
|
|
23215
23264
|
/// Border radius of the FAB.
|
|
23216
23265
|
/// @group floating-action-button
|
|
23217
|
-
$kendo-fab-border-radius: $border-radius !default;
|
|
23266
|
+
$kendo-fab-border-radius: $kendo-border-radius-md !default;
|
|
23218
23267
|
|
|
23219
23268
|
/// Font family of the FAB.
|
|
23220
23269
|
/// @group floating-action-button
|
|
@@ -24830,6 +24879,7 @@ $notification-border: $component-border !default;
|
|
|
24830
24879
|
@function notification-theme( $colors ) {
|
|
24831
24880
|
$_theme: ();
|
|
24832
24881
|
|
|
24882
|
+
// sass-lint:disable-block indentation
|
|
24833
24883
|
@each $name, $color in $colors {
|
|
24834
24884
|
$_theme: map-merge(( $name: (
|
|
24835
24885
|
color: contrast-wcag( $color ),
|
|
@@ -25022,7 +25072,7 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
25022
25072
|
$card-padding-x: map-get( $spacing, lg ) !default;
|
|
25023
25073
|
$card-padding-y: map-get( $spacing, md ) !default;
|
|
25024
25074
|
$card-border-width: 0px !default;
|
|
25025
|
-
$card-border-radius: $border-radius !default;
|
|
25075
|
+
$card-border-radius: $kendo-border-radius-md !default;
|
|
25026
25076
|
$card-inner-border-radius: calc( #{$card-border-radius} - #{$card-border-width} ) !default;
|
|
25027
25077
|
$card-font-family: $font-family !default;
|
|
25028
25078
|
$card-font-size: $font-size !default;
|
|
@@ -26157,7 +26207,7 @@ $breadcrumb-delimiter-icon-padding-y: 0px !default;
|
|
|
26157
26207
|
|
|
26158
26208
|
$breadcrumb-link-padding-x: ( $padding-x * 1.25 ) / 2 !default;
|
|
26159
26209
|
$breadcrumb-link-padding-y: $padding-y !default;
|
|
26160
|
-
$breadcrumb-link-border-radius: $border-radius !default;
|
|
26210
|
+
$breadcrumb-link-border-radius: $kendo-border-radius-md !default;
|
|
26161
26211
|
|
|
26162
26212
|
$breadcrumb-icon-link-padding-x: $breadcrumb-link-padding-x !default;
|
|
26163
26213
|
$breadcrumb-icon-link-padding-y: $breadcrumb-icon-link-padding-x !default;
|
|
@@ -27193,7 +27243,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
27193
27243
|
|
|
27194
27244
|
// Step label
|
|
27195
27245
|
.k-step-label {
|
|
27196
|
-
max-width: 10em;
|
|
27246
|
+
max-width: calc(min(100%, 10em));
|
|
27197
27247
|
display: inline-flex;
|
|
27198
27248
|
flex-wrap: wrap;
|
|
27199
27249
|
align-items: center;
|
|
@@ -29466,7 +29516,7 @@ $tilelayout-card-border-width: 1px !default;
|
|
|
29466
29516
|
$tilelayout-card-focus-shadow: $card-focus-shadow !default;
|
|
29467
29517
|
|
|
29468
29518
|
$tilelayout-hint-border-width: 1px !default;
|
|
29469
|
-
$tilelayout-hint-border-radius: $border-radius !default;
|
|
29519
|
+
$tilelayout-hint-border-radius: $kendo-border-radius-md !default;
|
|
29470
29520
|
|
|
29471
29521
|
$tilelayout-bg: if( $dark-theme, $dark, $light) !default;
|
|
29472
29522
|
|
|
@@ -30327,7 +30377,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
30327
30377
|
|
|
30328
30378
|
$grid-hierarchy-col-width: ($icon-size * 2) !default;
|
|
30329
30379
|
|
|
30330
|
-
$grid-group-indicator-border-radius: $border-radius !default;
|
|
30380
|
+
$grid-group-indicator-border-radius: $kendo-border-radius-md !default;
|
|
30331
30381
|
$grid-group-indicator-gap: $table-cell-padding-y !default;
|
|
30332
30382
|
|
|
30333
30383
|
$grid-grouping-row-border-top: 1px !default;
|
|
@@ -32939,9 +32989,9 @@ $spreadsheet-insert-image-dialog-preview-width: 355px !default;
|
|
|
32939
32989
|
$spreadsheet-insert-image-dialog-preview-height: 230px !default;
|
|
32940
32990
|
$spreadsheet-insert-image-dialog-preview-img: "image-default.png" !default;
|
|
32941
32991
|
$spreadsheet-insert-image-dialog-preview-border: $component-border !default;
|
|
32942
|
-
$spreadsheet-insert-image-dialog-preview-border-radius: $border-radius !default;
|
|
32992
|
+
$spreadsheet-insert-image-dialog-preview-border-radius: $kendo-border-radius-md !default;
|
|
32943
32993
|
$spreadsheet-insert-image-dialog-preview-overlay-shadow: inset 0 0 0 2000px rgba(0, 0, 0, .5) !default;
|
|
32944
|
-
$spreadsheet-insert-image-dialog-preview-overlay-border-radius: $border-radius !default;
|
|
32994
|
+
$spreadsheet-insert-image-dialog-preview-overlay-border-radius: $kendo-border-radius-md !default;
|
|
32945
32995
|
$spreadsheet-insert-image-dialog-overlay-hovered-text: $component-bg !default;
|
|
32946
32996
|
|
|
32947
32997
|
$spreadsheet-drawing-handle-width: 6px !default;
|
|
@@ -32951,7 +33001,7 @@ $spreadsheet-drawing-handle-border-width: 1px !default;
|
|
|
32951
33001
|
$spreadsheet-drawing-handle-outline-color: $primary !default;
|
|
32952
33002
|
$spreadsheet-drawing-handle-border-color: $primary !default;
|
|
32953
33003
|
$spreadsheet-drawing-handle-bg: $primary !default;
|
|
32954
|
-
$spreadsheet-drawing-handle-border-radius: $border-radius-lg !default;
|
|
33004
|
+
$spreadsheet-drawing-handle-border-radius: $kendo-border-radius-lg !default;
|
|
32955
33005
|
|
|
32956
33006
|
$spreadsheet-drawing-outline-style: solid !default;
|
|
32957
33007
|
$spreadsheet-drawing-outline-width: 2px !default;
|
|
@@ -33538,7 +33588,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
33538
33588
|
box-sizing: border-box;
|
|
33539
33589
|
}
|
|
33540
33590
|
.k-spreadsheet-filter {
|
|
33541
|
-
@include border-radius( $border-radius );
|
|
33591
|
+
@include border-radius( $kendo-border-radius );
|
|
33542
33592
|
line-height: 1;
|
|
33543
33593
|
position: absolute;
|
|
33544
33594
|
cursor: pointer;
|
|
@@ -34369,7 +34419,7 @@ $pivotgrid-configurator-button-size: calc( #{$pivotgrid-line-height * 1em} + #{$
|
|
|
34369
34419
|
$pivotgrid-calculated-field-padding-x: $pivotgrid-spacer !default;
|
|
34370
34420
|
$pivotgrid-calculated-field-padding-y: $pivotgrid-spacer !default;
|
|
34371
34421
|
$pivotgrid-calculated-field-border-width: 1px !default;
|
|
34372
|
-
$pivotgrid-calculated-field-border-radius: $border-radius !default;
|
|
34422
|
+
$pivotgrid-calculated-field-border-radius: $kendo-border-radius-md !default;
|
|
34373
34423
|
$pivotgrid-calculated-field-gap: $pivotgrid-spacer !default;
|
|
34374
34424
|
|
|
34375
34425
|
$pivotgrid-calculated-field-bg: $component-bg !default;
|
|
@@ -36329,7 +36379,7 @@ $taskboard-columns-container-gap: $taskboard-spacer !default;
|
|
|
36329
36379
|
|
|
36330
36380
|
$taskboard-column-width: 320px !default;
|
|
36331
36381
|
$taskboard-column-border-width: 1px !default;
|
|
36332
|
-
$taskboard-column-border-radius: $border-radius !default;
|
|
36382
|
+
$taskboard-column-border-radius: $kendo-border-radius-md !default;
|
|
36333
36383
|
$taskboard-column-bg: if( $dark-theme, $dark, $light) !default;
|
|
36334
36384
|
$taskboard-column-text: null !default;
|
|
36335
36385
|
$taskboard-column-border: transparent !default;
|
|
@@ -36881,7 +36931,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
36881
36931
|
|
|
36882
36932
|
// Inline editor
|
|
36883
36933
|
.k-editor-inline {
|
|
36884
|
-
@include border-radius( $border-radius );
|
|
36934
|
+
@include border-radius( $kendo-border-radius-md );
|
|
36885
36935
|
padding: $padding-y-sm $padding-x-sm;
|
|
36886
36936
|
border: 1px solid transparent;
|
|
36887
36937
|
word-wrap: break-word;
|
|
@@ -37302,7 +37352,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
37302
37352
|
white-space: nowrap;
|
|
37303
37353
|
overflow: hidden;
|
|
37304
37354
|
cursor: pointer;
|
|
37305
|
-
@include border-radius( $border-radius );
|
|
37355
|
+
@include border-radius( $kendo-border-radius-md );
|
|
37306
37356
|
|
|
37307
37357
|
.k-i-file,
|
|
37308
37358
|
.k-i-folder {
|
|
@@ -38109,6 +38159,11 @@ $gantt-advanced-bg-lighter: tint($gantt-advanced-bg, 5) !default;
|
|
|
38109
38159
|
$gantt-action-on-offset-text: #000000 !default;
|
|
38110
38160
|
$gantt-offset-resize-handler-top: 50% !default;
|
|
38111
38161
|
|
|
38162
|
+
$gantt-validation-tooltip-width: 200px !default;
|
|
38163
|
+
$gantt-validation-tooltip-border: #656565 !default;
|
|
38164
|
+
$gantt-validation-tooltip-valid-border: $success !default;
|
|
38165
|
+
$gantt-validation-tooltip-invalid-border: $error !default;
|
|
38166
|
+
|
|
38112
38167
|
// #endregion
|
|
38113
38168
|
// #region @import "_layout.scss"; -> packages/material/scss/gantt/_layout.scss
|
|
38114
38169
|
// #region @import "~@progress/kendo-theme-default/scss/gantt/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/gantt/_layout.scss
|
|
@@ -38620,7 +38675,7 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38620
38675
|
// Single task
|
|
38621
38676
|
.k-single-wrap {}
|
|
38622
38677
|
.k-task-single {
|
|
38623
|
-
@include border-radius( $border-radius );
|
|
38678
|
+
@include border-radius( $kendo-border-radius-md );
|
|
38624
38679
|
border-width: $gantt-task-border-width;
|
|
38625
38680
|
border-style: solid;
|
|
38626
38681
|
box-sizing: border-box;
|
|
@@ -38653,7 +38708,7 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38653
38708
|
}
|
|
38654
38709
|
}
|
|
38655
38710
|
.k-task-complete {
|
|
38656
|
-
@include border-radius( $border-radius );
|
|
38711
|
+
@include border-radius( $kendo-border-radius-md );
|
|
38657
38712
|
width: 20%;
|
|
38658
38713
|
position: absolute;
|
|
38659
38714
|
z-index: 1;
|
|
@@ -38723,7 +38778,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38723
38778
|
}
|
|
38724
38779
|
|
|
38725
38780
|
// Planned position
|
|
38726
|
-
|
|
38727
38781
|
.k-gantt-planned {
|
|
38728
38782
|
.k-gantt-dependencies,
|
|
38729
38783
|
.k-task-dot,
|
|
@@ -38754,7 +38808,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38754
38808
|
}
|
|
38755
38809
|
|
|
38756
38810
|
// Planned element
|
|
38757
|
-
|
|
38758
38811
|
.k-task-planned {
|
|
38759
38812
|
margin: 0 0 $gantt-planned-margin-y;
|
|
38760
38813
|
line-height: $gantt-planned-line-height;
|
|
@@ -38787,7 +38840,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38787
38840
|
}
|
|
38788
38841
|
|
|
38789
38842
|
// Planned Tooltip
|
|
38790
|
-
|
|
38791
38843
|
.k-planned-tooltip {
|
|
38792
38844
|
.k-task-content {
|
|
38793
38845
|
display: block;
|
|
@@ -38795,7 +38847,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38795
38847
|
}
|
|
38796
38848
|
|
|
38797
38849
|
// Delay offset
|
|
38798
|
-
|
|
38799
38850
|
.k-task-offset-wrap .k-task-content .k-resize-e {
|
|
38800
38851
|
display: none;
|
|
38801
38852
|
}
|
|
@@ -38826,6 +38877,36 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38826
38877
|
.k-task-offset:hover .k-resize-handle {
|
|
38827
38878
|
visibility: visible;
|
|
38828
38879
|
}
|
|
38880
|
+
|
|
38881
|
+
|
|
38882
|
+
// Dependency Validation Tooltip
|
|
38883
|
+
.k-gantt-tooltip-validation {
|
|
38884
|
+
max-width: $gantt-validation-tooltip-width;
|
|
38885
|
+
display: block;
|
|
38886
|
+
|
|
38887
|
+
&::before {
|
|
38888
|
+
content: '';
|
|
38889
|
+
width: 4px;
|
|
38890
|
+
height: 100%;
|
|
38891
|
+
position: absolute;
|
|
38892
|
+
top: 0;
|
|
38893
|
+
left: 0;
|
|
38894
|
+
}
|
|
38895
|
+
}
|
|
38896
|
+
.k-gantt-tooltip-validation-row {
|
|
38897
|
+
display: flex;
|
|
38898
|
+
flex-direction: row;
|
|
38899
|
+
justify-content: space-between;
|
|
38900
|
+
}
|
|
38901
|
+
.k-gantt-tooltip-validation-label {
|
|
38902
|
+
display: inline-flex;
|
|
38903
|
+
white-space: nowrap;
|
|
38904
|
+
overflow: hidden;
|
|
38905
|
+
text-overflow: ellipsis;
|
|
38906
|
+
}
|
|
38907
|
+
.k-gantt-tooltip-validation-value {
|
|
38908
|
+
font-weight: $font-weight-bold;
|
|
38909
|
+
}
|
|
38829
38910
|
}
|
|
38830
38911
|
|
|
38831
38912
|
@include exports("gantt/export") {
|
|
@@ -38871,7 +38952,8 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38871
38952
|
|
|
38872
38953
|
@include exports("gantt/rtl") {
|
|
38873
38954
|
|
|
38874
|
-
.k-rtl
|
|
38955
|
+
.k-rtl,
|
|
38956
|
+
[dir="rtl"] {
|
|
38875
38957
|
|
|
38876
38958
|
.k-gantt-rows,
|
|
38877
38959
|
.k-gantt-columns {
|
|
@@ -38950,6 +39032,11 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38950
39032
|
.k-gantt-timeline .k-milestone-wrap .k-task-start {
|
|
38951
39033
|
right: $gantt-rtl-milestone-dot-start-margin-x;
|
|
38952
39034
|
}
|
|
39035
|
+
|
|
39036
|
+
.k-gantt-tooltip-validation::before {
|
|
39037
|
+
left: auto;
|
|
39038
|
+
right: 0;
|
|
39039
|
+
}
|
|
38953
39040
|
}
|
|
38954
39041
|
}
|
|
38955
39042
|
|
|
@@ -39218,7 +39305,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
39218
39305
|
}
|
|
39219
39306
|
|
|
39220
39307
|
// Tooltips
|
|
39221
|
-
|
|
39222
39308
|
.k-offset-tooltip-delayed {
|
|
39223
39309
|
@include fill(
|
|
39224
39310
|
$bg: $gantt-delayed-bg
|
|
@@ -39230,6 +39316,22 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
39230
39316
|
$bg: $gantt-planned-bg
|
|
39231
39317
|
);
|
|
39232
39318
|
}
|
|
39319
|
+
|
|
39320
|
+
.k-gantt-tooltip-validation {
|
|
39321
|
+
&::before {
|
|
39322
|
+
background-color: $gantt-validation-tooltip-border;
|
|
39323
|
+
}
|
|
39324
|
+
}
|
|
39325
|
+
.k-gantt-tooltip-valid {
|
|
39326
|
+
&::before {
|
|
39327
|
+
background-color: $gantt-validation-tooltip-valid-border;
|
|
39328
|
+
}
|
|
39329
|
+
}
|
|
39330
|
+
.k-gantt-tooltip-invalid {
|
|
39331
|
+
&::before {
|
|
39332
|
+
background-color: $gantt-validation-tooltip-invalid-border;
|
|
39333
|
+
}
|
|
39334
|
+
}
|
|
39233
39335
|
}
|
|
39234
39336
|
|
|
39235
39337
|
// #endregion
|
|
@@ -39315,7 +39417,7 @@ $scheduler-footer-border: null !default;
|
|
|
39315
39417
|
$scheduler-footer-gradient: null !default;
|
|
39316
39418
|
|
|
39317
39419
|
$scheduler-event-min-height: 25px !default;
|
|
39318
|
-
$scheduler-event-border-radius: $border-radius !default;
|
|
39420
|
+
$scheduler-event-border-radius: $kendo-border-radius-md !default;
|
|
39319
39421
|
$scheduler-event-line-height: calc( #{$scheduler-event-min-height} - (2 * #{$padding-y-sm}) ) !default;
|
|
39320
39422
|
|
|
39321
39423
|
$scheduler-event-bg: $primary !default;
|
|
@@ -39382,7 +39484,7 @@ $scheduler-tooltip-events-gap: $padding-y !default;
|
|
|
39382
39484
|
|
|
39383
39485
|
$scheduler-tooltip-event-padding-x: $padding-x-sm !default;
|
|
39384
39486
|
$scheduler-tooltip-event-padding-y: map-get( $spacing, 2 ) !default;
|
|
39385
|
-
$scheduler-tooltip-event-border-radius: $border-radius !default;
|
|
39487
|
+
$scheduler-tooltip-event-border-radius: $kendo-border-radius-md !default;
|
|
39386
39488
|
$scheduler-tooltip-event-gap: $padding-x-sm !default;
|
|
39387
39489
|
|
|
39388
39490
|
$scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
@@ -39785,7 +39887,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
39785
39887
|
// Appointments
|
|
39786
39888
|
kendo-scheduler .k-event,
|
|
39787
39889
|
.k-event {
|
|
39788
|
-
@include border-radius( $border-radius );
|
|
39890
|
+
@include border-radius( $kendo-border-radius );
|
|
39789
39891
|
min-height: $scheduler-event-min-height;
|
|
39790
39892
|
box-sizing: border-box;
|
|
39791
39893
|
border-width: 0;
|
|
@@ -42027,7 +42129,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
42027
42129
|
display: inline-block;
|
|
42028
42130
|
text-align: center;
|
|
42029
42131
|
padding: $timeline-flag-padding-y $timeline-flag-padding-x;
|
|
42030
|
-
border-radius: $border-radius;
|
|
42132
|
+
border-radius: $kendo-border-radius;
|
|
42031
42133
|
line-height: $timeline-flag-line-height;
|
|
42032
42134
|
min-width: $timeline-flag-min-width;
|
|
42033
42135
|
max-width: $timeline-flag-max-width;
|
|
@@ -42091,7 +42193,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
42091
42193
|
}
|
|
42092
42194
|
|
|
42093
42195
|
&::-webkit-scrollbar-thumb {
|
|
42094
|
-
border-radius: $border-radius;
|
|
42196
|
+
border-radius: $kendo-border-radius;
|
|
42095
42197
|
}
|
|
42096
42198
|
}
|
|
42097
42199
|
}
|
|
@@ -42135,7 +42237,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
42135
42237
|
height: 100%;
|
|
42136
42238
|
width: $timeline-track-size;
|
|
42137
42239
|
transform: translateX(-50%);
|
|
42138
|
-
border-radius: $border-radius-lg;
|
|
42240
|
+
border-radius: $kendo-border-radius-lg;
|
|
42139
42241
|
}
|
|
42140
42242
|
|
|
42141
42243
|
.k-timeline-flag-wrap {
|
|
@@ -43524,7 +43626,7 @@ $treemap-line-height: $line-height !default;
|
|
|
43524
43626
|
}
|
|
43525
43627
|
|
|
43526
43628
|
.k-chart-tooltip {
|
|
43527
|
-
@include border-radius( $border-radius );
|
|
43629
|
+
@include border-radius( $kendo-border-radius-md );
|
|
43528
43630
|
font-size: $chart-tooltip-font-size;
|
|
43529
43631
|
line-height: $line-height;
|
|
43530
43632
|
padding: $tooltip-padding-y $tooltip-padding-x;
|
|
@@ -43632,7 +43734,7 @@ $treemap-line-height: $line-height !default;
|
|
|
43632
43734
|
}
|
|
43633
43735
|
|
|
43634
43736
|
.k-navigator-hint .k-scroll {
|
|
43635
|
-
@include border-radius( $border-radius );
|
|
43737
|
+
@include border-radius( $kendo-border-radius-md );
|
|
43636
43738
|
position: absolute;
|
|
43637
43739
|
height: 4px;
|
|
43638
43740
|
}
|
|
@@ -43859,7 +43961,7 @@ $treemap-line-height: $line-height !default;
|
|
|
43859
43961
|
base: $base-bg,
|
|
43860
43962
|
background: $chart-bg,
|
|
43861
43963
|
|
|
43862
|
-
border-radius: $border-radius,
|
|
43964
|
+
border-radius: $kendo-border-radius-md,
|
|
43863
43965
|
|
|
43864
43966
|
normal-background: $base-bg,
|
|
43865
43967
|
normal-text-color: $base-text,
|
|
@@ -44388,7 +44490,7 @@ $orgchart-node-container-gap: $orgchart-spacer !default;
|
|
|
44388
44490
|
$orgchart-node-group-padding-y: $orgchart-spacer !default;
|
|
44389
44491
|
$orgchart-node-group-padding-x: $orgchart-node-group-padding-y !default;
|
|
44390
44492
|
$orgchart-node-group-border-width: 1px !default;
|
|
44391
|
-
$orgchart-node-group-border-radius: $border-radius !default;
|
|
44493
|
+
$orgchart-node-group-border-radius: $kendo-border-radius-md !default;
|
|
44392
44494
|
$orgchart-node-group-bg: if( $dark-theme, $dark, $light) !default;
|
|
44393
44495
|
$orgchart-node-group-text: $base-text !default;
|
|
44394
44496
|
$orgchart-node-group-border: $base-border !default;
|