@progress/kendo-theme-material 5.1.2-dev.4 → 5.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +469 -204
- package/dist/all.scss +298 -152
- package/lib/swatches/material-aqua-dark.json +202 -41
- package/lib/swatches/material-arctic.json +202 -41
- package/lib/swatches/material-burnt-teal.json +202 -41
- package/lib/swatches/material-dataviz-v4.json +2 -1
- package/lib/swatches/material-eggplant.json +202 -41
- package/lib/swatches/material-lime-dark.json +202 -41
- package/lib/swatches/material-lime.json +202 -41
- package/lib/swatches/material-main-dark.json +202 -41
- package/lib/swatches/material-main.json +202 -41
- package/lib/swatches/material-nova.json +202 -41
- package/lib/swatches/material-pacific-dark.json +202 -41
- package/lib/swatches/material-pacific.json +202 -41
- package/lib/swatches/material-sky-dark.json +202 -41
- package/lib/swatches/material-sky.json +202 -41
- package/lib/swatches/material-smoke.json +202 -41
- package/package.json +4 -4
- package/scss/_variables.scss +4 -3
- package/scss/badge/_variables.scss +3 -3
- package/scss/breadcrumb/_variables.scss +1 -1
- package/scss/button/_variables.scss +11 -0
- 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 +15 -13
- package/scss/orgchart/_variables.scss +1 -1
- package/scss/pivotgrid/_variables.scss +2 -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
|
|
|
@@ -8904,8 +8952,19 @@ $kendo-button-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-but
|
|
|
8904
8952
|
/// @group button
|
|
8905
8953
|
$kendo-button-inner-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-button-padding-y * 2} ) !default;
|
|
8906
8954
|
|
|
8955
|
+
/// Horizontal padding of the arrow button.
|
|
8956
|
+
/// @group button
|
|
8907
8957
|
$kendo-button-arrow-padding-x: map-get( $spacing, 1 ) !default;
|
|
8958
|
+
$kendo-button-arrow-padding-x-sm: map-get( $spacing, 1 ) !default;
|
|
8959
|
+
$kendo-button-arrow-padding-x-md: map-get( $spacing, 1 ) !default;
|
|
8960
|
+
$kendo-button-arrow-padding-x-lg: map-get( $spacing, 1 ) !default;
|
|
8961
|
+
|
|
8962
|
+
/// Vertical padding of the arrow button.
|
|
8963
|
+
/// @group button
|
|
8908
8964
|
$kendo-button-arrow-padding-y: $kendo-button-padding-y !default;
|
|
8965
|
+
$kendo-button-arrow-padding-y-sm: $kendo-button-padding-y-sm !default;
|
|
8966
|
+
$kendo-button-arrow-padding-y-md: $kendo-button-padding-y-md !default;
|
|
8967
|
+
$kendo-button-arrow-padding-y-lg: $kendo-button-padding-y-lg !default;
|
|
8909
8968
|
|
|
8910
8969
|
/// Theme colors map for the button.
|
|
8911
8970
|
/// @group button
|
|
@@ -9069,6 +9128,7 @@ $kendo-button-transition: box-shadow 280ms cubic-bezier( .4, 0, .2, 1 ) !default
|
|
|
9069
9128
|
box-sizing: border-box;
|
|
9070
9129
|
border-width: $kendo-button-border-width;
|
|
9071
9130
|
border-style: solid;
|
|
9131
|
+
border-radius: $kendo-button-border-radius;
|
|
9072
9132
|
color: inherit;
|
|
9073
9133
|
background: none;
|
|
9074
9134
|
font-family: $kendo-button-font-family;
|
|
@@ -9283,6 +9343,18 @@ $kendo-button-transition: box-shadow 280ms cubic-bezier( .4, 0, .2, 1 ) !default
|
|
|
9283
9343
|
aspect-ratio: auto;
|
|
9284
9344
|
flex: none;
|
|
9285
9345
|
|
|
9346
|
+
&.k-button-sm {
|
|
9347
|
+
padding: $kendo-button-arrow-padding-y-sm $kendo-button-arrow-padding-x-sm;
|
|
9348
|
+
}
|
|
9349
|
+
|
|
9350
|
+
&.k-button-md {
|
|
9351
|
+
padding: $kendo-button-arrow-padding-y-md $kendo-button-arrow-padding-x-md;
|
|
9352
|
+
}
|
|
9353
|
+
|
|
9354
|
+
&.k-button-lg {
|
|
9355
|
+
padding: $kendo-button-arrow-padding-y-lg $kendo-button-arrow-padding-x-lg;
|
|
9356
|
+
}
|
|
9357
|
+
|
|
9286
9358
|
.k-button-icon {
|
|
9287
9359
|
min-width: 0;
|
|
9288
9360
|
}
|
|
@@ -10178,7 +10250,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
10178
10250
|
position: relative;
|
|
10179
10251
|
z-index: 1;
|
|
10180
10252
|
overflow: hidden;
|
|
10181
|
-
text-overflow:
|
|
10253
|
+
text-overflow: ellipsis;
|
|
10182
10254
|
-webkit-appearance: none;
|
|
10183
10255
|
|
|
10184
10256
|
// Hide clear icon
|
|
@@ -10217,7 +10289,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
10217
10289
|
.k-input-value-text {
|
|
10218
10290
|
flex: 1;
|
|
10219
10291
|
overflow: hidden;
|
|
10220
|
-
text-overflow:
|
|
10292
|
+
text-overflow: ellipsis;
|
|
10221
10293
|
}
|
|
10222
10294
|
.k-input-value-text::before {
|
|
10223
10295
|
content: "\200b";
|
|
@@ -10283,7 +10355,9 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
10283
10355
|
// Input with icon styles
|
|
10284
10356
|
.k-input-icon,
|
|
10285
10357
|
.k-input-validation-icon,
|
|
10286
|
-
.k-input-loading-icon
|
|
10358
|
+
.k-input-loading-icon,
|
|
10359
|
+
.k-input-prefix > .k-icon,
|
|
10360
|
+
.k-input-suffix > .k-icon {
|
|
10287
10361
|
flex: none;
|
|
10288
10362
|
align-self: center;
|
|
10289
10363
|
display: inline-flex;
|
|
@@ -10457,7 +10531,9 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
10457
10531
|
.k-input-icon,
|
|
10458
10532
|
.k-input-validation-icon,
|
|
10459
10533
|
.k-input-loading-icon,
|
|
10460
|
-
.k-clear-value
|
|
10534
|
+
.k-clear-value,
|
|
10535
|
+
.k-input-prefix > .k-icon,
|
|
10536
|
+
.k-input-suffix > .k-icon {
|
|
10461
10537
|
width: $_icon-size;
|
|
10462
10538
|
height: $_icon-size;
|
|
10463
10539
|
}
|
|
@@ -12322,6 +12398,8 @@ $kendo-chip-list-sizes: (
|
|
|
12322
12398
|
|
|
12323
12399
|
// Chip content
|
|
12324
12400
|
.k-chip-content {
|
|
12401
|
+
padding: .5em 0;
|
|
12402
|
+
margin: -.5em 0;
|
|
12325
12403
|
min-width: 0;
|
|
12326
12404
|
display: flex;
|
|
12327
12405
|
flex-flow: row nowrap;
|
|
@@ -12645,7 +12723,7 @@ $kendo-chip-list-sizes: (
|
|
|
12645
12723
|
// #endregion
|
|
12646
12724
|
// #region @import "_variables.scss"; -> packages/material/scss/color-preview/_variables.scss
|
|
12647
12725
|
// Color Preview
|
|
12648
|
-
$color-preview-border-radius: $border-radius !default;
|
|
12726
|
+
$color-preview-border-radius: $kendo-border-radius-md !default;
|
|
12649
12727
|
$color-preview-border-width: 1px !default;
|
|
12650
12728
|
$color-preview-bg: null !default;
|
|
12651
12729
|
$color-preview-text: null !default;
|
|
@@ -12813,7 +12891,7 @@ $loader-secondary-bg: #000000 !default;
|
|
|
12813
12891
|
$loader-container-panel-border-width: 1px !default;
|
|
12814
12892
|
$loader-container-panel-border-style: solid !default;
|
|
12815
12893
|
$loader-container-panel-border-color: $component-border !default;
|
|
12816
|
-
$loader-container-panel-border-radius: $border-radius !default;
|
|
12894
|
+
$loader-container-panel-border-radius: $kendo-border-radius-md !default;
|
|
12817
12895
|
$loader-container-panel-bg: $white !default;
|
|
12818
12896
|
|
|
12819
12897
|
$loader-container-padding-sm: map-get( $spacing, 4 ) !default;
|
|
@@ -13341,7 +13419,7 @@ $loader-container-font-size-lg: $font-size-lg !default;
|
|
|
13341
13419
|
// #region @import "_variables.scss"; -> packages/material/scss/skeleton/_variables.scss
|
|
13342
13420
|
// Skeleton
|
|
13343
13421
|
$skeleton-text-transform: scale( 1, .6 ) !default;
|
|
13344
|
-
$skeleton-text-border-radius: $border-radius !default;
|
|
13422
|
+
$skeleton-text-border-radius: $kendo-border-radius-md !default;
|
|
13345
13423
|
|
|
13346
13424
|
$skeleton-rect-border-radius: 0 !default;
|
|
13347
13425
|
|
|
@@ -13496,7 +13574,7 @@ $tooltip-padding-y: ($padding-y * .75) !default;
|
|
|
13496
13574
|
$tooltip-padding-x: ($padding-x / 2) !default;
|
|
13497
13575
|
$tooltip-max-width: null !default;
|
|
13498
13576
|
$tooltip-border-width: 0px !default;
|
|
13499
|
-
$tooltip-border-radius: $border-radius !default;
|
|
13577
|
+
$tooltip-border-radius: $kendo-border-radius-md !default;
|
|
13500
13578
|
|
|
13501
13579
|
$tooltip-font-family: $font-family !default;
|
|
13502
13580
|
$tooltip-font-size: $font-size-sm !default;
|
|
@@ -15018,11 +15096,6 @@ $fieldset-legend-border: null !default;
|
|
|
15018
15096
|
display: inline-flex;
|
|
15019
15097
|
width: 100%;
|
|
15020
15098
|
}
|
|
15021
|
-
.k-daterangepicker {
|
|
15022
|
-
width: 100%;
|
|
15023
|
-
flex-flow: column nowrap;
|
|
15024
|
-
gap: 0;
|
|
15025
|
-
}
|
|
15026
15099
|
}
|
|
15027
15100
|
|
|
15028
15101
|
// Form Buttons Container
|
|
@@ -15711,9 +15784,7 @@ $fieldset-legend-border: null !default;
|
|
|
15711
15784
|
@include exports( "textarea/layout" ) {
|
|
15712
15785
|
|
|
15713
15786
|
// Textarea
|
|
15714
|
-
.k-textarea {
|
|
15715
|
-
display: flex;
|
|
15716
|
-
}
|
|
15787
|
+
.k-textarea {}
|
|
15717
15788
|
|
|
15718
15789
|
}
|
|
15719
15790
|
|
|
@@ -16004,7 +16075,7 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16004
16075
|
|
|
16005
16076
|
// Base
|
|
16006
16077
|
.k-progressbar {
|
|
16007
|
-
@include border-radius( $border-radius );
|
|
16078
|
+
@include border-radius( $kendo-border-radius );
|
|
16008
16079
|
--kendo-progressbar-progress: 0;
|
|
16009
16080
|
border-width: $progressbar-border-width;
|
|
16010
16081
|
border-style: solid;
|
|
@@ -17498,7 +17569,7 @@ $slider-disabled-opacity: .65 !default;
|
|
|
17498
17569
|
|
|
17499
17570
|
.k-slider-track,
|
|
17500
17571
|
.k-slider-selection {
|
|
17501
|
-
@include border-radius( $border-radius );
|
|
17572
|
+
@include border-radius( $kendo-border-radius );
|
|
17502
17573
|
}
|
|
17503
17574
|
|
|
17504
17575
|
.k-slider-track {
|
|
@@ -18113,6 +18184,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18113
18184
|
line-height: $calendar-navigation-item-height;
|
|
18114
18185
|
cursor: pointer;
|
|
18115
18186
|
padding: 0 1em;
|
|
18187
|
+
overflow: hidden;
|
|
18188
|
+
white-space: nowrap;
|
|
18189
|
+
text-overflow: clip;
|
|
18116
18190
|
}
|
|
18117
18191
|
}
|
|
18118
18192
|
|
|
@@ -19311,7 +19385,7 @@ $colorgradient-spacer: map-get( $spacing, 3 ) !default;
|
|
|
19311
19385
|
|
|
19312
19386
|
$colorgradient-width: 294px !default;
|
|
19313
19387
|
$colorgradient-border-width: 1px !default;
|
|
19314
|
-
$colorgradient-border-radius: $border-radius !default;
|
|
19388
|
+
$colorgradient-border-radius: $kendo-border-radius-md !default;
|
|
19315
19389
|
$colorgradient-padding-y: $colorgradient-spacer !default;
|
|
19316
19390
|
$colorgradient-padding-x: $colorgradient-padding-y !default;
|
|
19317
19391
|
$colorgradient-gap: $colorgradient-spacer !default;
|
|
@@ -19325,7 +19399,7 @@ $colorgradient-border: $component-border !default;
|
|
|
19325
19399
|
$colorgradient-focus-border: $hovered-border !default;
|
|
19326
19400
|
$colorgradient-focus-shadow: $box-shadow-depth-2 !default;
|
|
19327
19401
|
|
|
19328
|
-
$colorgradient-canvas-border-radius: $border-radius !default;
|
|
19402
|
+
$colorgradient-canvas-border-radius: $kendo-border-radius-md !default;
|
|
19329
19403
|
$colorgradient-canvas-gap: $colorgradient-spacer !default;
|
|
19330
19404
|
$colorgradient-canvas-rectangle-height: 180px !default;
|
|
19331
19405
|
|
|
@@ -19497,6 +19571,10 @@ $colorgradient-contrast-spacer: map-get( $spacing, 2 ) !default;
|
|
|
19497
19571
|
.k-numerictextbox {
|
|
19498
19572
|
width: $colorgradient-input-width;
|
|
19499
19573
|
}
|
|
19574
|
+
|
|
19575
|
+
.k-input-inner {
|
|
19576
|
+
text-overflow: clip;
|
|
19577
|
+
}
|
|
19500
19578
|
}
|
|
19501
19579
|
|
|
19502
19580
|
// Contrast
|
|
@@ -19678,7 +19756,7 @@ $coloreditor-spacer: map-get( $spacing, 3 ) !default;
|
|
|
19678
19756
|
|
|
19679
19757
|
$coloreditor-min-width: 294px !default;
|
|
19680
19758
|
$coloreditor-border-width: 1px !default;
|
|
19681
|
-
$coloreditor-border-radius: $border-radius !default;
|
|
19759
|
+
$coloreditor-border-radius: $kendo-border-radius-md !default;
|
|
19682
19760
|
$coloreditor-font-family: $font-family !default;
|
|
19683
19761
|
$coloreditor-font-size: $font-size !default;
|
|
19684
19762
|
$coloreditor-line-height: $line-height !default;
|
|
@@ -23212,7 +23290,7 @@ $appbar-bottom-box-shadow: 0px -2px 3px rgba(0, 0, 0, .24) !default;
|
|
|
23212
23290
|
$kendo-fab-border-width: 0px !default;
|
|
23213
23291
|
/// Border radius of the FAB.
|
|
23214
23292
|
/// @group floating-action-button
|
|
23215
|
-
$kendo-fab-border-radius: $border-radius !default;
|
|
23293
|
+
$kendo-fab-border-radius: $kendo-border-radius-md !default;
|
|
23216
23294
|
|
|
23217
23295
|
/// Font family of the FAB.
|
|
23218
23296
|
/// @group floating-action-button
|
|
@@ -24825,22 +24903,24 @@ $notification-bg: $component-bg !default;
|
|
|
24825
24903
|
$notification-text: $component-text !default;
|
|
24826
24904
|
$notification-border: $component-border !default;
|
|
24827
24905
|
|
|
24828
|
-
|
|
24906
|
+
@function notification-theme( $colors ) {
|
|
24907
|
+
$_theme: ();
|
|
24829
24908
|
|
|
24830
|
-
|
|
24831
|
-
|
|
24832
|
-
|
|
24833
|
-
|
|
24834
|
-
|
|
24835
|
-
|
|
24836
|
-
|
|
24837
|
-
|
|
24838
|
-
}
|
|
24909
|
+
// sass-lint:disable-block indentation
|
|
24910
|
+
@each $name, $color in $colors {
|
|
24911
|
+
$_theme: map-merge(( $name: (
|
|
24912
|
+
color: contrast-wcag( $color ),
|
|
24913
|
+
background-color: $color,
|
|
24914
|
+
border: $color,
|
|
24915
|
+
)), $_theme );
|
|
24916
|
+
}
|
|
24839
24917
|
|
|
24840
|
-
@
|
|
24841
|
-
$notification-themes: map-merge($notification-themes, ($theme: notification-theme($theme, $props)) );
|
|
24918
|
+
@return $_theme;
|
|
24842
24919
|
}
|
|
24843
24920
|
|
|
24921
|
+
$kendo-notification-theme-colors: $kendo-theme-colors !default;
|
|
24922
|
+
$kendo-notification-theme: notification-theme( $kendo-notification-theme-colors ) !default;
|
|
24923
|
+
|
|
24844
24924
|
// #endregion
|
|
24845
24925
|
// #region @import "_layout.scss"; -> packages/material/scss/notification/_layout.scss
|
|
24846
24926
|
// #region @import "~@progress/kendo-theme-default/scss/notification/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/notification/_layout.scss
|
|
@@ -24953,11 +25033,13 @@ $notification-themes: () !default;
|
|
|
24953
25033
|
box-shadow: $notification-shadow;
|
|
24954
25034
|
}
|
|
24955
25035
|
|
|
24956
|
-
@each $
|
|
24957
|
-
.k-notification-#{$
|
|
24958
|
-
|
|
24959
|
-
|
|
24960
|
-
|
|
25036
|
+
@each $name, $props in $kendo-notification-theme {
|
|
25037
|
+
.k-notification-#{$name} {
|
|
25038
|
+
@include fill(
|
|
25039
|
+
map-get( $props, color ),
|
|
25040
|
+
map-get( $props, background-color ),
|
|
25041
|
+
map-get( $props, border )
|
|
25042
|
+
);
|
|
24961
25043
|
}
|
|
24962
25044
|
}
|
|
24963
25045
|
|
|
@@ -25017,7 +25099,7 @@ $notification-themes: () !default;
|
|
|
25017
25099
|
$card-padding-x: map-get( $spacing, lg ) !default;
|
|
25018
25100
|
$card-padding-y: map-get( $spacing, md ) !default;
|
|
25019
25101
|
$card-border-width: 0px !default;
|
|
25020
|
-
$card-border-radius: $border-radius !default;
|
|
25102
|
+
$card-border-radius: $kendo-border-radius-md !default;
|
|
25021
25103
|
$card-inner-border-radius: calc( #{$card-border-radius} - #{$card-border-width} ) !default;
|
|
25022
25104
|
$card-font-family: $font-family !default;
|
|
25023
25105
|
$card-font-size: $font-size !default;
|
|
@@ -26152,7 +26234,7 @@ $breadcrumb-delimiter-icon-padding-y: 0px !default;
|
|
|
26152
26234
|
|
|
26153
26235
|
$breadcrumb-link-padding-x: ( $padding-x * 1.25 ) / 2 !default;
|
|
26154
26236
|
$breadcrumb-link-padding-y: $padding-y !default;
|
|
26155
|
-
$breadcrumb-link-border-radius: $border-radius !default;
|
|
26237
|
+
$breadcrumb-link-border-radius: $kendo-border-radius-md !default;
|
|
26156
26238
|
|
|
26157
26239
|
$breadcrumb-icon-link-padding-x: $breadcrumb-link-padding-x !default;
|
|
26158
26240
|
$breadcrumb-icon-link-padding-y: $breadcrumb-icon-link-padding-x !default;
|
|
@@ -26695,6 +26777,11 @@ $pager-dropdown-width: 5em !default;
|
|
|
26695
26777
|
width: $pager-dropdown-width;
|
|
26696
26778
|
}
|
|
26697
26779
|
|
|
26780
|
+
.k-input-inner,
|
|
26781
|
+
.k-input-value-text {
|
|
26782
|
+
text-overflow: clip;
|
|
26783
|
+
}
|
|
26784
|
+
|
|
26698
26785
|
.k-rtl &,
|
|
26699
26786
|
[dir="rtl"] & {
|
|
26700
26787
|
.k-dropdown-list,
|
|
@@ -27155,6 +27242,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
27155
27242
|
display: flex;
|
|
27156
27243
|
align-items: center;
|
|
27157
27244
|
justify-content: center;
|
|
27245
|
+
flex: none;
|
|
27158
27246
|
position: relative;
|
|
27159
27247
|
z-index: 1;
|
|
27160
27248
|
overflow: visible;
|
|
@@ -27188,7 +27276,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
27188
27276
|
|
|
27189
27277
|
// Step label
|
|
27190
27278
|
.k-step-label {
|
|
27191
|
-
max-width: 10em;
|
|
27279
|
+
max-width: clamp(100%, 10em, 100%);
|
|
27192
27280
|
display: inline-flex;
|
|
27193
27281
|
flex-wrap: wrap;
|
|
27194
27282
|
align-items: center;
|
|
@@ -29461,7 +29549,7 @@ $tilelayout-card-border-width: 1px !default;
|
|
|
29461
29549
|
$tilelayout-card-focus-shadow: $card-focus-shadow !default;
|
|
29462
29550
|
|
|
29463
29551
|
$tilelayout-hint-border-width: 1px !default;
|
|
29464
|
-
$tilelayout-hint-border-radius: $border-radius !default;
|
|
29552
|
+
$tilelayout-hint-border-radius: $kendo-border-radius-md !default;
|
|
29465
29553
|
|
|
29466
29554
|
$tilelayout-bg: if( $dark-theme, $dark, $light) !default;
|
|
29467
29555
|
|
|
@@ -30322,7 +30410,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
30322
30410
|
|
|
30323
30411
|
$grid-hierarchy-col-width: ($icon-size * 2) !default;
|
|
30324
30412
|
|
|
30325
|
-
$grid-group-indicator-border-radius: $border-radius !default;
|
|
30413
|
+
$grid-group-indicator-border-radius: $kendo-border-radius-md !default;
|
|
30326
30414
|
$grid-group-indicator-gap: $table-cell-padding-y !default;
|
|
30327
30415
|
|
|
30328
30416
|
$grid-grouping-row-border-top: 1px !default;
|
|
@@ -32934,9 +33022,9 @@ $spreadsheet-insert-image-dialog-preview-width: 355px !default;
|
|
|
32934
33022
|
$spreadsheet-insert-image-dialog-preview-height: 230px !default;
|
|
32935
33023
|
$spreadsheet-insert-image-dialog-preview-img: "image-default.png" !default;
|
|
32936
33024
|
$spreadsheet-insert-image-dialog-preview-border: $component-border !default;
|
|
32937
|
-
$spreadsheet-insert-image-dialog-preview-border-radius: $border-radius !default;
|
|
33025
|
+
$spreadsheet-insert-image-dialog-preview-border-radius: $kendo-border-radius-md !default;
|
|
32938
33026
|
$spreadsheet-insert-image-dialog-preview-overlay-shadow: inset 0 0 0 2000px rgba(0, 0, 0, .5) !default;
|
|
32939
|
-
$spreadsheet-insert-image-dialog-preview-overlay-border-radius: $border-radius !default;
|
|
33027
|
+
$spreadsheet-insert-image-dialog-preview-overlay-border-radius: $kendo-border-radius-md !default;
|
|
32940
33028
|
$spreadsheet-insert-image-dialog-overlay-hovered-text: $component-bg !default;
|
|
32941
33029
|
|
|
32942
33030
|
$spreadsheet-drawing-handle-width: 6px !default;
|
|
@@ -32946,7 +33034,7 @@ $spreadsheet-drawing-handle-border-width: 1px !default;
|
|
|
32946
33034
|
$spreadsheet-drawing-handle-outline-color: $primary !default;
|
|
32947
33035
|
$spreadsheet-drawing-handle-border-color: $primary !default;
|
|
32948
33036
|
$spreadsheet-drawing-handle-bg: $primary !default;
|
|
32949
|
-
$spreadsheet-drawing-handle-border-radius: $border-radius-lg !default;
|
|
33037
|
+
$spreadsheet-drawing-handle-border-radius: $kendo-border-radius-lg !default;
|
|
32950
33038
|
|
|
32951
33039
|
$spreadsheet-drawing-outline-style: solid !default;
|
|
32952
33040
|
$spreadsheet-drawing-outline-width: 2px !default;
|
|
@@ -33055,10 +33143,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
33055
33143
|
min-width: $form-line-height * 1em;
|
|
33056
33144
|
}
|
|
33057
33145
|
|
|
33058
|
-
.k-input,
|
|
33059
|
-
.k-picker {
|
|
33060
|
-
width: 5em;
|
|
33061
|
-
}
|
|
33062
33146
|
.k-color-picker {
|
|
33063
33147
|
width: min-content;
|
|
33064
33148
|
}
|
|
@@ -33533,7 +33617,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
33533
33617
|
box-sizing: border-box;
|
|
33534
33618
|
}
|
|
33535
33619
|
.k-spreadsheet-filter {
|
|
33536
|
-
@include border-radius( $border-radius );
|
|
33620
|
+
@include border-radius( $kendo-border-radius );
|
|
33537
33621
|
line-height: 1;
|
|
33538
33622
|
position: absolute;
|
|
33539
33623
|
cursor: pointer;
|
|
@@ -34290,6 +34374,7 @@ $pivotgrid-font-family: $font-family !default;
|
|
|
34290
34374
|
$pivotgrid-font-size: $font-size !default;
|
|
34291
34375
|
$pivotgrid-line-height: $line-height !default;
|
|
34292
34376
|
$pivotgrid-border-width: 1px !default;
|
|
34377
|
+
$pivotgrid-icon-spacing: 8px !default;
|
|
34293
34378
|
|
|
34294
34379
|
$pivotgrid-row-header-width: 300px !default;
|
|
34295
34380
|
$pivotgrid-column-header-height: 75px !default;
|
|
@@ -34363,7 +34448,7 @@ $pivotgrid-configurator-button-size: calc( #{$pivotgrid-line-height * 1em} + #{$
|
|
|
34363
34448
|
$pivotgrid-calculated-field-padding-x: $pivotgrid-spacer !default;
|
|
34364
34449
|
$pivotgrid-calculated-field-padding-y: $pivotgrid-spacer !default;
|
|
34365
34450
|
$pivotgrid-calculated-field-border-width: 1px !default;
|
|
34366
|
-
$pivotgrid-calculated-field-border-radius: $border-radius !default;
|
|
34451
|
+
$pivotgrid-calculated-field-border-radius: $kendo-border-radius-md !default;
|
|
34367
34452
|
$pivotgrid-calculated-field-gap: $pivotgrid-spacer !default;
|
|
34368
34453
|
|
|
34369
34454
|
$pivotgrid-calculated-field-bg: $component-bg !default;
|
|
@@ -34534,6 +34619,7 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
|
|
|
34534
34619
|
|
|
34535
34620
|
.k-pivotgrid-cell .k-icon {
|
|
34536
34621
|
cursor: pointer;
|
|
34622
|
+
padding-inline-end: $pivotgrid-icon-spacing;
|
|
34537
34623
|
}
|
|
34538
34624
|
|
|
34539
34625
|
.k-pivotgrid-total {
|
|
@@ -36110,6 +36196,9 @@ $filemanager-preview-icon-border: null !default;
|
|
|
36110
36196
|
flex-shrink: 0;
|
|
36111
36197
|
display: inline-flex;
|
|
36112
36198
|
position: relative;
|
|
36199
|
+
border-width: 0 1px;
|
|
36200
|
+
border-style: solid;
|
|
36201
|
+
border-color: inherit;
|
|
36113
36202
|
}
|
|
36114
36203
|
|
|
36115
36204
|
|
|
@@ -36319,7 +36408,7 @@ $taskboard-columns-container-gap: $taskboard-spacer !default;
|
|
|
36319
36408
|
|
|
36320
36409
|
$taskboard-column-width: 320px !default;
|
|
36321
36410
|
$taskboard-column-border-width: 1px !default;
|
|
36322
|
-
$taskboard-column-border-radius: $border-radius !default;
|
|
36411
|
+
$taskboard-column-border-radius: $kendo-border-radius-md !default;
|
|
36323
36412
|
$taskboard-column-bg: if( $dark-theme, $dark, $light) !default;
|
|
36324
36413
|
$taskboard-column-text: null !default;
|
|
36325
36414
|
$taskboard-column-border: transparent !default;
|
|
@@ -36871,7 +36960,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
36871
36960
|
|
|
36872
36961
|
// Inline editor
|
|
36873
36962
|
.k-editor-inline {
|
|
36874
|
-
@include border-radius( $border-radius );
|
|
36963
|
+
@include border-radius( $kendo-border-radius-md );
|
|
36875
36964
|
padding: $padding-y-sm $padding-x-sm;
|
|
36876
36965
|
border: 1px solid transparent;
|
|
36877
36966
|
word-wrap: break-word;
|
|
@@ -37292,7 +37381,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
37292
37381
|
white-space: nowrap;
|
|
37293
37382
|
overflow: hidden;
|
|
37294
37383
|
cursor: pointer;
|
|
37295
|
-
@include border-radius( $border-radius );
|
|
37384
|
+
@include border-radius( $kendo-border-radius-md );
|
|
37296
37385
|
|
|
37297
37386
|
.k-i-file,
|
|
37298
37387
|
.k-i-folder {
|
|
@@ -37813,6 +37902,11 @@ $imageeditor-crop-overlay-bg: rgba(black, .3) !default;
|
|
|
37813
37902
|
box-sizing: border-box;
|
|
37814
37903
|
flex: none;
|
|
37815
37904
|
overflow-y: auto;
|
|
37905
|
+
|
|
37906
|
+
.k-input-inner,
|
|
37907
|
+
.k-input-value-text {
|
|
37908
|
+
text-overflow: clip;
|
|
37909
|
+
}
|
|
37816
37910
|
}
|
|
37817
37911
|
|
|
37818
37912
|
|
|
@@ -38099,6 +38193,11 @@ $gantt-advanced-bg-lighter: tint($gantt-advanced-bg, 5) !default;
|
|
|
38099
38193
|
$gantt-action-on-offset-text: #000000 !default;
|
|
38100
38194
|
$gantt-offset-resize-handler-top: 50% !default;
|
|
38101
38195
|
|
|
38196
|
+
$gantt-validation-tooltip-width: 200px !default;
|
|
38197
|
+
$gantt-validation-tooltip-border: #656565 !default;
|
|
38198
|
+
$gantt-validation-tooltip-valid-border: $success !default;
|
|
38199
|
+
$gantt-validation-tooltip-invalid-border: $error !default;
|
|
38200
|
+
|
|
38102
38201
|
// #endregion
|
|
38103
38202
|
// #region @import "_layout.scss"; -> packages/material/scss/gantt/_layout.scss
|
|
38104
38203
|
// #region @import "~@progress/kendo-theme-default/scss/gantt/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/gantt/_layout.scss
|
|
@@ -38610,7 +38709,7 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38610
38709
|
// Single task
|
|
38611
38710
|
.k-single-wrap {}
|
|
38612
38711
|
.k-task-single {
|
|
38613
|
-
@include border-radius( $border-radius );
|
|
38712
|
+
@include border-radius( $kendo-border-radius-md );
|
|
38614
38713
|
border-width: $gantt-task-border-width;
|
|
38615
38714
|
border-style: solid;
|
|
38616
38715
|
box-sizing: border-box;
|
|
@@ -38643,7 +38742,7 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38643
38742
|
}
|
|
38644
38743
|
}
|
|
38645
38744
|
.k-task-complete {
|
|
38646
|
-
@include border-radius( $border-radius );
|
|
38745
|
+
@include border-radius( $kendo-border-radius-md );
|
|
38647
38746
|
width: 20%;
|
|
38648
38747
|
position: absolute;
|
|
38649
38748
|
z-index: 1;
|
|
@@ -38713,7 +38812,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38713
38812
|
}
|
|
38714
38813
|
|
|
38715
38814
|
// Planned position
|
|
38716
|
-
|
|
38717
38815
|
.k-gantt-planned {
|
|
38718
38816
|
.k-gantt-dependencies,
|
|
38719
38817
|
.k-task-dot,
|
|
@@ -38744,7 +38842,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38744
38842
|
}
|
|
38745
38843
|
|
|
38746
38844
|
// Planned element
|
|
38747
|
-
|
|
38748
38845
|
.k-task-planned {
|
|
38749
38846
|
margin: 0 0 $gantt-planned-margin-y;
|
|
38750
38847
|
line-height: $gantt-planned-line-height;
|
|
@@ -38777,7 +38874,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38777
38874
|
}
|
|
38778
38875
|
|
|
38779
38876
|
// Planned Tooltip
|
|
38780
|
-
|
|
38781
38877
|
.k-planned-tooltip {
|
|
38782
38878
|
.k-task-content {
|
|
38783
38879
|
display: block;
|
|
@@ -38785,7 +38881,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38785
38881
|
}
|
|
38786
38882
|
|
|
38787
38883
|
// Delay offset
|
|
38788
|
-
|
|
38789
38884
|
.k-task-offset-wrap .k-task-content .k-resize-e {
|
|
38790
38885
|
display: none;
|
|
38791
38886
|
}
|
|
@@ -38816,6 +38911,36 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38816
38911
|
.k-task-offset:hover .k-resize-handle {
|
|
38817
38912
|
visibility: visible;
|
|
38818
38913
|
}
|
|
38914
|
+
|
|
38915
|
+
|
|
38916
|
+
// Dependency Validation Tooltip
|
|
38917
|
+
.k-gantt-tooltip-validation {
|
|
38918
|
+
max-width: $gantt-validation-tooltip-width;
|
|
38919
|
+
display: block;
|
|
38920
|
+
|
|
38921
|
+
&::before {
|
|
38922
|
+
content: "";
|
|
38923
|
+
width: 4px;
|
|
38924
|
+
height: 100%;
|
|
38925
|
+
position: absolute;
|
|
38926
|
+
top: 0;
|
|
38927
|
+
left: 0;
|
|
38928
|
+
}
|
|
38929
|
+
}
|
|
38930
|
+
.k-gantt-tooltip-validation-row {
|
|
38931
|
+
display: flex;
|
|
38932
|
+
flex-direction: row;
|
|
38933
|
+
justify-content: space-between;
|
|
38934
|
+
}
|
|
38935
|
+
.k-gantt-tooltip-validation-label {
|
|
38936
|
+
display: inline-flex;
|
|
38937
|
+
white-space: nowrap;
|
|
38938
|
+
overflow: hidden;
|
|
38939
|
+
text-overflow: ellipsis;
|
|
38940
|
+
}
|
|
38941
|
+
.k-gantt-tooltip-validation-value {
|
|
38942
|
+
font-weight: $font-weight-bold;
|
|
38943
|
+
}
|
|
38819
38944
|
}
|
|
38820
38945
|
|
|
38821
38946
|
@include exports("gantt/export") {
|
|
@@ -38861,7 +38986,8 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38861
38986
|
|
|
38862
38987
|
@include exports("gantt/rtl") {
|
|
38863
38988
|
|
|
38864
|
-
.k-rtl
|
|
38989
|
+
.k-rtl,
|
|
38990
|
+
[dir="rtl"] {
|
|
38865
38991
|
|
|
38866
38992
|
.k-gantt-rows,
|
|
38867
38993
|
.k-gantt-columns {
|
|
@@ -38940,6 +39066,11 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
38940
39066
|
.k-gantt-timeline .k-milestone-wrap .k-task-start {
|
|
38941
39067
|
right: $gantt-rtl-milestone-dot-start-margin-x;
|
|
38942
39068
|
}
|
|
39069
|
+
|
|
39070
|
+
.k-gantt-tooltip-validation::before {
|
|
39071
|
+
left: auto;
|
|
39072
|
+
right: 0;
|
|
39073
|
+
}
|
|
38943
39074
|
}
|
|
38944
39075
|
}
|
|
38945
39076
|
|
|
@@ -39208,7 +39339,6 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
39208
39339
|
}
|
|
39209
39340
|
|
|
39210
39341
|
// Tooltips
|
|
39211
|
-
|
|
39212
39342
|
.k-offset-tooltip-delayed {
|
|
39213
39343
|
@include fill(
|
|
39214
39344
|
$bg: $gantt-delayed-bg
|
|
@@ -39220,6 +39350,22 @@ $gantt-offset-resize-handler-top: 50% !default;
|
|
|
39220
39350
|
$bg: $gantt-planned-bg
|
|
39221
39351
|
);
|
|
39222
39352
|
}
|
|
39353
|
+
|
|
39354
|
+
.k-gantt-tooltip-validation {
|
|
39355
|
+
&::before {
|
|
39356
|
+
background-color: $gantt-validation-tooltip-border;
|
|
39357
|
+
}
|
|
39358
|
+
}
|
|
39359
|
+
.k-gantt-tooltip-valid {
|
|
39360
|
+
&::before {
|
|
39361
|
+
background-color: $gantt-validation-tooltip-valid-border;
|
|
39362
|
+
}
|
|
39363
|
+
}
|
|
39364
|
+
.k-gantt-tooltip-invalid {
|
|
39365
|
+
&::before {
|
|
39366
|
+
background-color: $gantt-validation-tooltip-invalid-border;
|
|
39367
|
+
}
|
|
39368
|
+
}
|
|
39223
39369
|
}
|
|
39224
39370
|
|
|
39225
39371
|
// #endregion
|
|
@@ -39305,7 +39451,7 @@ $scheduler-footer-border: null !default;
|
|
|
39305
39451
|
$scheduler-footer-gradient: null !default;
|
|
39306
39452
|
|
|
39307
39453
|
$scheduler-event-min-height: 25px !default;
|
|
39308
|
-
$scheduler-event-border-radius: $border-radius !default;
|
|
39454
|
+
$scheduler-event-border-radius: $kendo-border-radius-md !default;
|
|
39309
39455
|
$scheduler-event-line-height: calc( #{$scheduler-event-min-height} - (2 * #{$padding-y-sm}) ) !default;
|
|
39310
39456
|
|
|
39311
39457
|
$scheduler-event-bg: $primary !default;
|
|
@@ -39372,7 +39518,7 @@ $scheduler-tooltip-events-gap: $padding-y !default;
|
|
|
39372
39518
|
|
|
39373
39519
|
$scheduler-tooltip-event-padding-x: $padding-x-sm !default;
|
|
39374
39520
|
$scheduler-tooltip-event-padding-y: map-get( $spacing, 2 ) !default;
|
|
39375
|
-
$scheduler-tooltip-event-border-radius: $border-radius !default;
|
|
39521
|
+
$scheduler-tooltip-event-border-radius: $kendo-border-radius-md !default;
|
|
39376
39522
|
$scheduler-tooltip-event-gap: $padding-x-sm !default;
|
|
39377
39523
|
|
|
39378
39524
|
$scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
@@ -39775,7 +39921,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
39775
39921
|
// Appointments
|
|
39776
39922
|
kendo-scheduler .k-event,
|
|
39777
39923
|
.k-event {
|
|
39778
|
-
@include border-radius( $border-radius );
|
|
39924
|
+
@include border-radius( $kendo-border-radius );
|
|
39779
39925
|
min-height: $scheduler-event-min-height;
|
|
39780
39926
|
box-sizing: border-box;
|
|
39781
39927
|
border-width: 0;
|
|
@@ -42017,7 +42163,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
42017
42163
|
display: inline-block;
|
|
42018
42164
|
text-align: center;
|
|
42019
42165
|
padding: $timeline-flag-padding-y $timeline-flag-padding-x;
|
|
42020
|
-
border-radius: $border-radius;
|
|
42166
|
+
border-radius: $kendo-border-radius;
|
|
42021
42167
|
line-height: $timeline-flag-line-height;
|
|
42022
42168
|
min-width: $timeline-flag-min-width;
|
|
42023
42169
|
max-width: $timeline-flag-max-width;
|
|
@@ -42081,7 +42227,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
42081
42227
|
}
|
|
42082
42228
|
|
|
42083
42229
|
&::-webkit-scrollbar-thumb {
|
|
42084
|
-
border-radius: $border-radius;
|
|
42230
|
+
border-radius: $kendo-border-radius;
|
|
42085
42231
|
}
|
|
42086
42232
|
}
|
|
42087
42233
|
}
|
|
@@ -42125,7 +42271,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
42125
42271
|
height: 100%;
|
|
42126
42272
|
width: $timeline-track-size;
|
|
42127
42273
|
transform: translateX(-50%);
|
|
42128
|
-
border-radius: $border-radius-lg;
|
|
42274
|
+
border-radius: $kendo-border-radius-lg;
|
|
42129
42275
|
}
|
|
42130
42276
|
|
|
42131
42277
|
.k-timeline-flag-wrap {
|
|
@@ -43514,7 +43660,7 @@ $treemap-line-height: $line-height !default;
|
|
|
43514
43660
|
}
|
|
43515
43661
|
|
|
43516
43662
|
.k-chart-tooltip {
|
|
43517
|
-
@include border-radius( $border-radius );
|
|
43663
|
+
@include border-radius( $kendo-border-radius-md );
|
|
43518
43664
|
font-size: $chart-tooltip-font-size;
|
|
43519
43665
|
line-height: $line-height;
|
|
43520
43666
|
padding: $tooltip-padding-y $tooltip-padding-x;
|
|
@@ -43622,7 +43768,7 @@ $treemap-line-height: $line-height !default;
|
|
|
43622
43768
|
}
|
|
43623
43769
|
|
|
43624
43770
|
.k-navigator-hint .k-scroll {
|
|
43625
|
-
@include border-radius( $border-radius );
|
|
43771
|
+
@include border-radius( $kendo-border-radius-md );
|
|
43626
43772
|
position: absolute;
|
|
43627
43773
|
height: 4px;
|
|
43628
43774
|
}
|
|
@@ -43849,7 +43995,7 @@ $treemap-line-height: $line-height !default;
|
|
|
43849
43995
|
base: $base-bg,
|
|
43850
43996
|
background: $chart-bg,
|
|
43851
43997
|
|
|
43852
|
-
border-radius: $border-radius,
|
|
43998
|
+
border-radius: $kendo-border-radius-md,
|
|
43853
43999
|
|
|
43854
44000
|
normal-background: $base-bg,
|
|
43855
44001
|
normal-text-color: $base-text,
|
|
@@ -44378,7 +44524,7 @@ $orgchart-node-container-gap: $orgchart-spacer !default;
|
|
|
44378
44524
|
$orgchart-node-group-padding-y: $orgchart-spacer !default;
|
|
44379
44525
|
$orgchart-node-group-padding-x: $orgchart-node-group-padding-y !default;
|
|
44380
44526
|
$orgchart-node-group-border-width: 1px !default;
|
|
44381
|
-
$orgchart-node-group-border-radius: $border-radius !default;
|
|
44527
|
+
$orgchart-node-group-border-radius: $kendo-border-radius-md !default;
|
|
44382
44528
|
$orgchart-node-group-bg: if( $dark-theme, $dark, $light) !default;
|
|
44383
44529
|
$orgchart-node-group-text: $base-text !default;
|
|
44384
44530
|
$orgchart-node-group-border: $base-border !default;
|