@progress/kendo-theme-material 7.2.1-dev.6 → 7.2.1-dev.8
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 +0 -48
- package/dist/all.scss +74 -188
- package/dist/meta/sassdoc-data.json +416 -524
- package/dist/meta/sassdoc-raw-data.json +208 -258
- package/dist/meta/variables.json +0 -8
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +5 -5
- package/scss/checkbox/_variables.scss +1 -1
- package/scss/dataviz/_variables.scss +11 -11
- package/scss/dock-manager/_variables.scss +1 -1
- package/scss/fab/_theme.scss +2 -2
- package/scss/gantt/_variables.scss +1 -1
- package/scss/grid/_variables.scss +5 -5
- package/scss/input/_variables.scss +4 -11
- package/scss/map/_variables.scss +1 -1
- package/scss/mediaplayer/_variables.scss +1 -1
- package/scss/orgchart/_variables.scss +1 -1
- package/scss/pivotgrid/_variables.scss +2 -2
- package/scss/scheduler/_theme.scss +2 -2
- package/scss/signature/_variables.scss +1 -1
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/slider/_variables.scss +1 -1
- package/scss/spreadsheet/_variables.scss +4 -4
- package/scss/stepper/_variables.scss +3 -3
- package/scss/switch/_variables.scss +2 -2
- package/scss/table/_variables.scss +2 -2
- package/scss/treeview/_variables.scss +1 -1
package/dist/all.scss
CHANGED
|
@@ -4764,7 +4764,7 @@ $kendo-palettes: (
|
|
|
4764
4764
|
color-on-subtle: k-color( #{$color}-on-subtle ),
|
|
4765
4765
|
on-color: k-color( on-#{$color} ),
|
|
4766
4766
|
color-on-surface: k-color( #{$color}-on-surface ),
|
|
4767
|
-
on-color-disabled:
|
|
4767
|
+
on-color-disabled: color-mix(in srgb, k-color( on-#{$color} ) 46%, transparent)
|
|
4768
4768
|
);
|
|
4769
4769
|
|
|
4770
4770
|
@return if( k-map-has-key( $map, $name ), k-map-get( $map, $name ), $name );
|
|
@@ -5027,15 +5027,11 @@ $_default-colors: (
|
|
|
5027
5027
|
$kendo-colors: $_default-colors !default;
|
|
5028
5028
|
$kendo-colors: k-map-merge($_default-colors, $kendo-colors);
|
|
5029
5029
|
|
|
5030
|
-
@function k-color($key
|
|
5030
|
+
@function k-color($key) {
|
|
5031
5031
|
$_color: k-map-get($kendo-colors, $key);
|
|
5032
5032
|
|
|
5033
5033
|
@if ($_color) {
|
|
5034
|
-
@
|
|
5035
|
-
@return var(--kendo-color-#{$key}-rgb, k-hex-to-rgb($_color));
|
|
5036
|
-
} @else {
|
|
5037
|
-
@return var(--kendo-color-#{$key}, $_color);
|
|
5038
|
-
}
|
|
5034
|
+
@return var(--kendo-color-#{$key}, $_color);
|
|
5039
5035
|
} @else {
|
|
5040
5036
|
@error "Color Variable \`#{$key}\` does not exists in the color collection.";
|
|
5041
5037
|
}
|
|
@@ -5046,7 +5042,6 @@ $kendo-colors: k-map-merge($_default-colors, $kendo-colors);
|
|
|
5046
5042
|
@each $key, $value in $kendo-colors {
|
|
5047
5043
|
@if($value) {
|
|
5048
5044
|
--kendo-color-#{$key}: #{$value};
|
|
5049
|
-
--kendo-color-#{$key}-rgb: #{k-hex-to-rgb($value)};
|
|
5050
5045
|
}
|
|
5051
5046
|
}
|
|
5052
5047
|
}
|
|
@@ -17177,7 +17172,7 @@ $kendo-checkbox-bg: null !default;
|
|
|
17177
17172
|
$kendo-checkbox-text: null !default;
|
|
17178
17173
|
/// The border color of the CheckBox.
|
|
17179
17174
|
/// @group checkbox
|
|
17180
|
-
$kendo-checkbox-border:
|
|
17175
|
+
$kendo-checkbox-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 54%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .54 )) !default;
|
|
17181
17176
|
|
|
17182
17177
|
/// The background color of the hovered CheckBox.
|
|
17183
17178
|
/// @group checkbox
|
|
@@ -19005,7 +19000,7 @@ $kendo-table-alt-row-border: null !default;
|
|
|
19005
19000
|
|
|
19006
19001
|
/// Background color of hovered rows in table.
|
|
19007
19002
|
/// @group table
|
|
19008
|
-
$kendo-table-hover-bg: if($kendo-enable-color-system,
|
|
19003
|
+
$kendo-table-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), rgba( k-contrast-color( $kendo-table-bg ), .07 )) !default;
|
|
19009
19004
|
/// Text color of hovered rows in table.
|
|
19010
19005
|
/// @group table
|
|
19011
19006
|
$kendo-table-hover-text: null !default;
|
|
@@ -19030,7 +19025,7 @@ $kendo-table-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
|
19030
19025
|
|
|
19031
19026
|
/// Background color of selected rows in table.
|
|
19032
19027
|
/// @group table
|
|
19033
|
-
$kendo-table-selected-bg: if($kendo-enable-color-system,
|
|
19028
|
+
$kendo-table-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 12%, transparent), rgba( k-contrast-color( $kendo-table-bg ), .04 )) !default;
|
|
19034
19029
|
/// Text color of selected rows in table.
|
|
19035
19030
|
/// @group table
|
|
19036
19031
|
$kendo-table-selected-text: null !default;
|
|
@@ -20889,7 +20884,7 @@ $kendo-chip-list-sizes: (
|
|
|
20889
20884
|
|
|
20890
20885
|
&:focus,
|
|
20891
20886
|
&.k-focus {
|
|
20892
|
-
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system,
|
|
20887
|
+
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 16%, transparent), rgba( $color, .16 )) );
|
|
20893
20888
|
}
|
|
20894
20889
|
|
|
20895
20890
|
&:hover,
|
|
@@ -20943,7 +20938,7 @@ $kendo-chip-list-sizes: (
|
|
|
20943
20938
|
|
|
20944
20939
|
&:focus,
|
|
20945
20940
|
&.k-focus {
|
|
20946
|
-
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system,
|
|
20941
|
+
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 16%, transparent), if( $kendo-is-dark-theme, rgba( k-color-tint( $color, 50% ), .32 ), rgba( $color, .16 ))) );
|
|
20947
20942
|
}
|
|
20948
20943
|
|
|
20949
20944
|
&:hover,
|
|
@@ -20969,7 +20964,7 @@ $kendo-chip-list-sizes: (
|
|
|
20969
20964
|
|
|
20970
20965
|
&:focus,
|
|
20971
20966
|
&.k-focus {
|
|
20972
|
-
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system,
|
|
20967
|
+
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 16%, transparent), if( $kendo-is-dark-theme, rgba( k-color-tint( $color, 50% ), .32 ), rgba( $color, .16 ))) );
|
|
20973
20968
|
}
|
|
20974
20969
|
|
|
20975
20970
|
&:hover,
|
|
@@ -22073,7 +22068,7 @@ $kendo-skeleton-circle-border-radius: 9999px !default;
|
|
|
22073
22068
|
|
|
22074
22069
|
/// The background color of the Skeleton item.
|
|
22075
22070
|
/// @group skeleton
|
|
22076
|
-
$kendo-skeleton-item-bg: if($kendo-enable-color-system,
|
|
22071
|
+
$kendo-skeleton-item-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 20%, transparent), rgba( $kendo-color-inverse, .2 )) !default;
|
|
22077
22072
|
/// The background color of the Skeleton wave animation.
|
|
22078
22073
|
/// @group skeleton
|
|
22079
22074
|
$kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
|
|
@@ -22879,7 +22874,7 @@ $_kendo-module-meta: (
|
|
|
22879
22874
|
&:focus,
|
|
22880
22875
|
&.k-focus {
|
|
22881
22876
|
@if ( $kendo-solid-button-shadow ) {
|
|
22882
|
-
@include focus-indicator( 0 0 $kendo-solid-button-shadow-blur $kendo-solid-button-shadow-spread if($kendo-enable-color-system,
|
|
22877
|
+
@include focus-indicator( 0 0 $kendo-solid-button-shadow-blur $kendo-solid-button-shadow-spread if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) ( $kendo-solid-button-shadow-opacity * 100% ), transparent), rgba( $_button-border, $kendo-solid-button-shadow-opacity )), true, true );
|
|
22883
22878
|
}
|
|
22884
22879
|
}
|
|
22885
22880
|
|
|
@@ -22949,9 +22944,9 @@ $_kendo-module-meta: (
|
|
|
22949
22944
|
&.k-focus {
|
|
22950
22945
|
@if $kendo-outline-button-shadow {
|
|
22951
22946
|
@if $name == "base" {
|
|
22952
|
-
@include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system,
|
|
22947
|
+
@include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) ( $kendo-outline-button-shadow-opacity * 100% ), transparent), rgba( $color, $kendo-outline-button-shadow-opacity )), true, true );
|
|
22953
22948
|
} @else {
|
|
22954
|
-
@include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system,
|
|
22949
|
+
@include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) ( $kendo-outline-button-shadow-opacity * 100% ), transparent), rgba( $color, $kendo-outline-button-shadow-opacity )), true, true );
|
|
22955
22950
|
}
|
|
22956
22951
|
}
|
|
22957
22952
|
}
|
|
@@ -23034,9 +23029,9 @@ $_kendo-module-meta: (
|
|
|
23034
23029
|
&.k-focus {
|
|
23035
23030
|
@if ( $kendo-link-button-shadow ) {
|
|
23036
23031
|
@if $name == "base" {
|
|
23037
|
-
@include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system,
|
|
23032
|
+
@include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) ( $kendo-link-button-shadow-opacity * 100% ), transparent), rgba( $color, $kendo-link-button-shadow-opacity )), true, true );
|
|
23038
23033
|
} @else {
|
|
23039
|
-
@include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system,
|
|
23034
|
+
@include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) ( $kendo-link-button-shadow-opacity * 100% ), transparent), rgba( $color, $kendo-link-button-shadow-opacity )), true, true );
|
|
23040
23035
|
}
|
|
23041
23036
|
}
|
|
23042
23037
|
}
|
|
@@ -24952,7 +24947,7 @@ $kendo-input-bg: if($kendo-enable-color-system, k-color( surface ), k-try-shade(
|
|
|
24952
24947
|
$kendo-input-text: $kendo-component-text !default;
|
|
24953
24948
|
/// The border color of the Input components.
|
|
24954
24949
|
/// @group input
|
|
24955
|
-
$kendo-input-border: if($kendo-enable-color-system,
|
|
24950
|
+
$kendo-input-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 44%, transparent), rgba( $kendo-component-border, .38 )) !default;
|
|
24956
24951
|
/// The shadow of the Input components.
|
|
24957
24952
|
/// @group input
|
|
24958
24953
|
$kendo-input-shadow: null !default;
|
|
@@ -24991,13 +24986,13 @@ $kendo-input-selected-bg: null !default;
|
|
|
24991
24986
|
$kendo-input-selected-text: null !default;
|
|
24992
24987
|
/// The background color of the disabled Input components.
|
|
24993
24988
|
/// @group input
|
|
24994
|
-
$kendo-input-disabled-bg: if($kendo-enable-color-system,
|
|
24989
|
+
$kendo-input-disabled-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 3%, transparent), k-try-shade( $kendo-component-bg, .25 )) !default;
|
|
24995
24990
|
/// The text color of the disabled Input components.
|
|
24996
24991
|
/// @group input
|
|
24997
|
-
$kendo-input-disabled-text: if($kendo-enable-color-system,
|
|
24992
|
+
$kendo-input-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 27%, transparent), $kendo-disabled-text) !default;
|
|
24998
24993
|
/// The border color of the disabled Input components.
|
|
24999
24994
|
/// @group input
|
|
25000
|
-
$kendo-input-disabled-border: if($kendo-enable-color-system,
|
|
24995
|
+
$kendo-input-disabled-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 3%, transparent), rgba( $kendo-component-border, k-math-div( k-color-alpha( $kendo-component-border ), 2 ) )) !default;
|
|
25001
24996
|
/// The gradient of the disabled Input components.
|
|
25002
24997
|
/// @group input
|
|
25003
24998
|
$kendo-input-disabled-gradient: null !default;
|
|
@@ -25133,13 +25128,6 @@ $kendo-input-invalid-border: $kendo-invalid-border !default;
|
|
|
25133
25128
|
/// @group input
|
|
25134
25129
|
$kendo-input-invalid-shadow: $kendo-invalid-shadow !default;
|
|
25135
25130
|
|
|
25136
|
-
/// The border color of the valid Input components.
|
|
25137
|
-
/// @group input
|
|
25138
|
-
$kendo-input-valid-border: $kendo-valid-border !default;
|
|
25139
|
-
/// The shadow of the valid Input components.
|
|
25140
|
-
/// @group input
|
|
25141
|
-
$kendo-input-valid-shadow: $kendo-valid-shadow !default;
|
|
25142
|
-
|
|
25143
25131
|
/// The background color of the Picker components.
|
|
25144
25132
|
/// @group picker
|
|
25145
25133
|
$kendo-picker-bg: $kendo-input-bg !default;
|
|
@@ -27299,23 +27287,6 @@ $_kendo-module-meta: (
|
|
|
27299
27287
|
}
|
|
27300
27288
|
}
|
|
27301
27289
|
|
|
27302
|
-
// Valid
|
|
27303
|
-
&.k-valid {
|
|
27304
|
-
@include fill( $border: $kendo-input-valid-border );
|
|
27305
|
-
|
|
27306
|
-
.k-input-validation-icon {
|
|
27307
|
-
color: $kendo-valid-text;
|
|
27308
|
-
}
|
|
27309
|
-
|
|
27310
|
-
&:focus,
|
|
27311
|
-
&.k-focus {
|
|
27312
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
27313
|
-
}
|
|
27314
|
-
&:focus-within {
|
|
27315
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
27316
|
-
}
|
|
27317
|
-
}
|
|
27318
|
-
|
|
27319
27290
|
// Prefix & Suffix
|
|
27320
27291
|
.k-input-prefix {
|
|
27321
27292
|
color: $kendo-input-prefix-text;
|
|
@@ -27404,23 +27375,6 @@ $_kendo-module-meta: (
|
|
|
27404
27375
|
@include focus-indicator( $kendo-input-invalid-shadow );
|
|
27405
27376
|
}
|
|
27406
27377
|
}
|
|
27407
|
-
|
|
27408
|
-
// Valid
|
|
27409
|
-
&.k-valid {
|
|
27410
|
-
@include fill( $border: $kendo-input-valid-border );
|
|
27411
|
-
|
|
27412
|
-
.k-input-validation-icon {
|
|
27413
|
-
color: $kendo-valid-text;
|
|
27414
|
-
}
|
|
27415
|
-
|
|
27416
|
-
&:focus,
|
|
27417
|
-
&.k-focus {
|
|
27418
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
27419
|
-
}
|
|
27420
|
-
&:focus-within {
|
|
27421
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
27422
|
-
}
|
|
27423
|
-
}
|
|
27424
27378
|
}
|
|
27425
27379
|
|
|
27426
27380
|
|
|
@@ -27506,23 +27460,6 @@ $_kendo-module-meta: (
|
|
|
27506
27460
|
}
|
|
27507
27461
|
}
|
|
27508
27462
|
|
|
27509
|
-
// Valid
|
|
27510
|
-
&.k-valid {
|
|
27511
|
-
@include fill( $border: $kendo-input-valid-border );
|
|
27512
|
-
|
|
27513
|
-
.k-input-validation-icon {
|
|
27514
|
-
color: $kendo-valid-text;
|
|
27515
|
-
}
|
|
27516
|
-
|
|
27517
|
-
&:focus,
|
|
27518
|
-
&.k-focus {
|
|
27519
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
27520
|
-
}
|
|
27521
|
-
&:focus-within {
|
|
27522
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
27523
|
-
}
|
|
27524
|
-
}
|
|
27525
|
-
|
|
27526
27463
|
// Prefix & Suffix
|
|
27527
27464
|
.k-input-prefix {
|
|
27528
27465
|
color: $kendo-input-prefix-text;
|
|
@@ -27617,23 +27554,6 @@ $_kendo-module-meta: (
|
|
|
27617
27554
|
@include focus-indicator( $kendo-input-invalid-shadow );
|
|
27618
27555
|
}
|
|
27619
27556
|
}
|
|
27620
|
-
|
|
27621
|
-
// Valid
|
|
27622
|
-
&.k-valid {
|
|
27623
|
-
@include fill( $border: $kendo-input-valid-border );
|
|
27624
|
-
|
|
27625
|
-
.k-input-validation-icon {
|
|
27626
|
-
color: $kendo-valid-text;
|
|
27627
|
-
}
|
|
27628
|
-
|
|
27629
|
-
&:focus,
|
|
27630
|
-
&.k-focus {
|
|
27631
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
27632
|
-
}
|
|
27633
|
-
&:focus-within {
|
|
27634
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
27635
|
-
}
|
|
27636
|
-
}
|
|
27637
27557
|
}
|
|
27638
27558
|
|
|
27639
27559
|
|
|
@@ -27706,23 +27626,6 @@ $_kendo-module-meta: (
|
|
|
27706
27626
|
}
|
|
27707
27627
|
}
|
|
27708
27628
|
|
|
27709
|
-
// Valid
|
|
27710
|
-
&.k-valid {
|
|
27711
|
-
@include fill( $border: $kendo-input-valid-border );
|
|
27712
|
-
|
|
27713
|
-
.k-input-validation-icon {
|
|
27714
|
-
color: $kendo-valid-text;
|
|
27715
|
-
}
|
|
27716
|
-
|
|
27717
|
-
&:focus,
|
|
27718
|
-
&.k-focus {
|
|
27719
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
27720
|
-
}
|
|
27721
|
-
&:focus-within {
|
|
27722
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
27723
|
-
}
|
|
27724
|
-
}
|
|
27725
|
-
|
|
27726
27629
|
// Prefix & Suffix
|
|
27727
27630
|
.k-input-prefix {
|
|
27728
27631
|
color: $kendo-input-prefix-text;
|
|
@@ -27817,23 +27720,6 @@ $_kendo-module-meta: (
|
|
|
27817
27720
|
@include focus-indicator( $kendo-input-invalid-shadow );
|
|
27818
27721
|
}
|
|
27819
27722
|
}
|
|
27820
|
-
|
|
27821
|
-
// Valid
|
|
27822
|
-
&.k-valid {
|
|
27823
|
-
@include fill( $border: $kendo-input-valid-border );
|
|
27824
|
-
|
|
27825
|
-
.k-input-validation-icon {
|
|
27826
|
-
color: $kendo-valid-text;
|
|
27827
|
-
}
|
|
27828
|
-
|
|
27829
|
-
&:focus,
|
|
27830
|
-
&.k-focus {
|
|
27831
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
27832
|
-
}
|
|
27833
|
-
&:focus-within {
|
|
27834
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
27835
|
-
}
|
|
27836
|
-
}
|
|
27837
27723
|
}
|
|
27838
27724
|
|
|
27839
27725
|
}
|
|
@@ -29360,7 +29246,7 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
|
29360
29246
|
|
|
29361
29247
|
.k-progressbar-indeterminate {
|
|
29362
29248
|
@include fill( $kendo-progressbar-indeterminate-text, $kendo-progressbar-indeterminate-bg, $kendo-progressbar-indeterminate-border );
|
|
29363
|
-
@include striped-gradient( if($kendo-enable-color-system,
|
|
29249
|
+
@include striped-gradient( if($kendo-enable-color-system, color-mix(in srgb, k-color( base-emphasis ) 55%, transparent), k-color-shade($kendo-progressbar-indeterminate-bg)) );
|
|
29364
29250
|
background-size: $kendo-progressbar-height $kendo-progressbar-height;
|
|
29365
29251
|
animation: kendo-progressbar-indeterminate-animation $kendo-progressbar-animation-timing;
|
|
29366
29252
|
}
|
|
@@ -30196,7 +30082,7 @@ $kendo-slider-draghandle-pressed-gradient: null !default;
|
|
|
30196
30082
|
|
|
30197
30083
|
/// The shadow of the focused Slider drag handle.
|
|
30198
30084
|
/// @group slider
|
|
30199
|
-
$kendo-slider-draghandle-focus-shadow: 0 0 0 11px if($kendo-enable-color-system,
|
|
30085
|
+
$kendo-slider-draghandle-focus-shadow: 0 0 0 11px if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
|
|
30200
30086
|
|
|
30201
30087
|
/// The transition speed of the Slider.
|
|
30202
30088
|
/// @group slider
|
|
@@ -31734,7 +31620,7 @@ $kendo-calendar-sizes: (
|
|
|
31734
31620
|
.k-calendar { // stylelint-disable-line
|
|
31735
31621
|
|
|
31736
31622
|
$kendo-calendar-range-gap: 1px !default;
|
|
31737
|
-
$kendo-calendar-range-bg: if($kendo-enable-color-system,
|
|
31623
|
+
$kendo-calendar-range-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-calendar-cell-selected-bg, .25 ));
|
|
31738
31624
|
$kendo-calendar-range-split-size: 5px !default;
|
|
31739
31625
|
|
|
31740
31626
|
.k-range-start,
|
|
@@ -35353,7 +35239,7 @@ $kendo-treeview-border: null !default;
|
|
|
35353
35239
|
|
|
35354
35240
|
/// The background color of hovered TreeView.
|
|
35355
35241
|
/// @group treeview
|
|
35356
|
-
$kendo-treeview-item-hover-bg: if($kendo-enable-color-system,
|
|
35242
|
+
$kendo-treeview-item-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 7%, transparent), rgba( $kendo-treeview-text, .07 )) !default;
|
|
35357
35243
|
/// The text color of hovered TreeView items.
|
|
35358
35244
|
/// @group treeview
|
|
35359
35245
|
$kendo-treeview-item-hover-text: null !default;
|
|
@@ -36438,7 +36324,7 @@ $kendo-switch-sizes: (
|
|
|
36438
36324
|
|
|
36439
36325
|
/// The background of the track when the Switch is not checked.
|
|
36440
36326
|
/// @group switch
|
|
36441
|
-
$kendo-switch-off-track-bg:
|
|
36327
|
+
$kendo-switch-off-track-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 38%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .38 )) !default;
|
|
36442
36328
|
/// The text color of the track when the Switch is not checked.
|
|
36443
36329
|
/// @group switch
|
|
36444
36330
|
$kendo-switch-off-track-text: null !default;
|
|
@@ -36520,7 +36406,7 @@ $kendo-switch-off-thumb-hover-gradient: null !default;
|
|
|
36520
36406
|
|
|
36521
36407
|
/// The background of the track when the Switch is checked.
|
|
36522
36408
|
/// @group switch
|
|
36523
|
-
$kendo-switch-on-track-bg: if($kendo-enable-color-system,
|
|
36409
|
+
$kendo-switch-on-track-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 54%, transparent), rgba( $kendo-color-primary, .54 )) !default;
|
|
36524
36410
|
/// The text color of the track when the Switch is checked.
|
|
36525
36411
|
/// @group switch
|
|
36526
36412
|
$kendo-switch-on-track-text: null !default;
|
|
@@ -36871,7 +36757,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
36871
36757
|
$kendo-switch-off-track-focus-gradient
|
|
36872
36758
|
);
|
|
36873
36759
|
@if $kendo-enable-focus-contrast {
|
|
36874
|
-
@include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface
|
|
36760
|
+
@include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) );
|
|
36875
36761
|
} @else {
|
|
36876
36762
|
outline: $kendo-switch-off-track-focus-ring;
|
|
36877
36763
|
}
|
|
@@ -36951,7 +36837,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
36951
36837
|
$kendo-switch-on-track-focus-gradient
|
|
36952
36838
|
);
|
|
36953
36839
|
@if $kendo-enable-focus-contrast {
|
|
36954
|
-
@include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface
|
|
36840
|
+
@include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) );
|
|
36955
36841
|
} @else {
|
|
36956
36842
|
outline: $kendo-switch-on-track-focus-ring;
|
|
36957
36843
|
}
|
|
@@ -38472,7 +38358,7 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
38472
38358
|
@if $kendo-enable-focus-contrast {
|
|
38473
38359
|
@include box-shadow( inset 0 0 0 2px currentColor );
|
|
38474
38360
|
} @else {
|
|
38475
|
-
outline: $kendo-fab-outline-style $kendo-fab-outline-width if($kendo-enable-color-system,
|
|
38361
|
+
outline: $kendo-fab-outline-style $kendo-fab-outline-width if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 30%, transparent), rgba( $color, .3 ));
|
|
38476
38362
|
}
|
|
38477
38363
|
}
|
|
38478
38364
|
}
|
|
@@ -38493,8 +38379,8 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
38493
38379
|
.k-disabled.k-fab-solid-#{$name},
|
|
38494
38380
|
.k-fab-solid-#{$name}:disabled {
|
|
38495
38381
|
@include box-shadow($kendo-fab-disabled-shadow);
|
|
38496
|
-
background-color: if($kendo-enable-color-system,
|
|
38497
|
-
color: if($kendo-enable-color-system,
|
|
38382
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 60%, transparent), k-try-tint( $color, 5 ));
|
|
38383
|
+
color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-#{$name} ) 60%, transparent), k-try-tint( k-contrast-legacy( $color ), 5 ));
|
|
38498
38384
|
opacity: 1;
|
|
38499
38385
|
}
|
|
38500
38386
|
}
|
|
@@ -38533,7 +38419,7 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
38533
38419
|
.k-fab-item.k-focus .k-fab-item-text,
|
|
38534
38420
|
.k-fab-item.k-focus .k-fab-item-icon {
|
|
38535
38421
|
@if $kendo-enable-focus-contrast {
|
|
38536
|
-
@include box-shadow( inset 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface
|
|
38422
|
+
@include box-shadow( inset 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) );
|
|
38537
38423
|
} @else {
|
|
38538
38424
|
outline: $kendo-fab-item-outline-style $kendo-fab-item-outline-width $kendo-fab-item-outline-color;
|
|
38539
38425
|
}
|
|
@@ -38555,8 +38441,8 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
38555
38441
|
.k-fab-item-text,
|
|
38556
38442
|
.k-fab-item-icon {
|
|
38557
38443
|
@include box-shadow($kendo-fab-item-disabled-shadow);
|
|
38558
|
-
background-color: if($kendo-enable-color-system,
|
|
38559
|
-
color: if($kendo-enable-color-system,
|
|
38444
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 60%, transparent), k-try-tint( $kendo-fab-item-bg, 5 ));
|
|
38445
|
+
color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 60%, transparent), k-try-tint( $kendo-fab-item-text, 5 ));
|
|
38560
38446
|
}
|
|
38561
38447
|
}
|
|
38562
38448
|
|
|
@@ -38678,8 +38564,8 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
38678
38564
|
.k-fab-item-text,
|
|
38679
38565
|
.k-fab-item-icon {
|
|
38680
38566
|
@include box-shadow($kendo-fab-item-disabled-shadow);
|
|
38681
|
-
background-color: if($kendo-enable-color-system,
|
|
38682
|
-
color: if($kendo-enable-color-system,
|
|
38567
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 60%, transparent), k-try-tint( $kendo-fab-item-bg, 8 ));
|
|
38568
|
+
color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 60%, transparent), k-try-tint( $kendo-fab-item-text, 8 ));
|
|
38683
38569
|
}
|
|
38684
38570
|
}
|
|
38685
38571
|
|
|
@@ -42000,13 +41886,13 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
42000
41886
|
@each $name, $color in $kendo-theme-colors {
|
|
42001
41887
|
.k-bottom-nav-solid-#{$name} {
|
|
42002
41888
|
@include fill(
|
|
42003
|
-
$color: if($kendo-enable-color-system,
|
|
41889
|
+
$color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-#{$name} ) 65%, transparent), k-true-mix( $color, k-contrast-legacy( $color ), 35%)),
|
|
42004
41890
|
$bg: $color
|
|
42005
41891
|
);
|
|
42006
41892
|
|
|
42007
41893
|
.k-bottom-nav-item.k-focus,
|
|
42008
41894
|
.k-bottom-nav-item:focus {
|
|
42009
|
-
@include fill( $bg: if($kendo-enable-color-system,
|
|
41895
|
+
@include fill( $bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-#{$name} ) 12.5%, transparent), rgba(k-true-mix( $color, k-contrast-legacy( $color ), 35%), .2)));
|
|
42010
41896
|
}
|
|
42011
41897
|
|
|
42012
41898
|
.k-bottom-nav-item.k-selected {
|
|
@@ -42030,7 +41916,7 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
42030
41916
|
|
|
42031
41917
|
.k-bottom-nav-item.k-focus,
|
|
42032
41918
|
.k-bottom-nav-item:focus {
|
|
42033
|
-
@include fill( $bg: if($kendo-enable-color-system,
|
|
41919
|
+
@include fill( $bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 5%, transparent), rgba($kendo-bottom-nav-flat-text, .05)) );
|
|
42034
41920
|
}
|
|
42035
41921
|
|
|
42036
41922
|
.k-bottom-nav-item.k-selected {
|
|
@@ -43262,7 +43148,7 @@ $kendo-stepper-indicator-hover-border: null !default;
|
|
|
43262
43148
|
$kendo-stepper-indicator-disabled-bg: null !default;
|
|
43263
43149
|
/// The text color of the disabled Stepper indicator.
|
|
43264
43150
|
/// @group stepper
|
|
43265
|
-
$kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system,
|
|
43151
|
+
$kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 32%, transparent), $kendo-disabled-text) !default;
|
|
43266
43152
|
/// The border color of the disabled Stepper indicator.
|
|
43267
43153
|
/// @group stepper
|
|
43268
43154
|
$kendo-stepper-indicator-disabled-border: null !default;
|
|
@@ -43289,7 +43175,7 @@ $kendo-stepper-indicator-done-hover-border: null !default;
|
|
|
43289
43175
|
|
|
43290
43176
|
/// The background color of the Stepper's disabled done indicator.
|
|
43291
43177
|
/// @group stepper
|
|
43292
|
-
$kendo-stepper-indicator-done-disabled-bg: if($kendo-enable-color-system,
|
|
43178
|
+
$kendo-stepper-indicator-done-disabled-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 60%, transparent), k-color-mix( $kendo-stepper-indicator-done-bg, $kendo-component-bg, 60%)) !default;
|
|
43293
43179
|
/// The text color of the Stepper's disabled done indicator.
|
|
43294
43180
|
/// @group stepper
|
|
43295
43181
|
$kendo-stepper-indicator-done-disabled-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-color( $kendo-stepper-indicator-done-bg )) !default;
|
|
@@ -43341,7 +43227,7 @@ $kendo-stepper-label-error-text: $kendo-color-error !default;
|
|
|
43341
43227
|
$kendo-stepper-label-hover-text: null !default;
|
|
43342
43228
|
/// The text color of the disabled Stepper label.
|
|
43343
43229
|
/// @group stepper
|
|
43344
|
-
$kendo-stepper-label-disabled-text: if($kendo-enable-color-system,
|
|
43230
|
+
$kendo-stepper-label-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 32%, transparent), k-map-get( $theme, disabled-text )) !default;
|
|
43345
43231
|
|
|
43346
43232
|
/// The text color of the optional Stepper label.
|
|
43347
43233
|
/// @group stepper
|
|
@@ -46491,7 +46377,7 @@ $kendo-dock-manager-dock-preview-border-style: dashed !default;
|
|
|
46491
46377
|
$kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
|
|
46492
46378
|
/// The background color of the dropping area in the DockManager component.
|
|
46493
46379
|
/// @group dock-manager
|
|
46494
|
-
$kendo-dock-manager-dock-preview-bg: if($kendo-enable-color-system,
|
|
46380
|
+
$kendo-dock-manager-dock-preview-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 16%, transparent), rgba( $kendo-color-primary, .16 )) !default;
|
|
46495
46381
|
/// The border color of the dropping area in the DockManager component.
|
|
46496
46382
|
/// @group dock-manager
|
|
46497
46383
|
$kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
|
|
@@ -47847,7 +47733,7 @@ $kendo-grid-grouping-row-bg: transparent !default;
|
|
|
47847
47733
|
$kendo-grid-grouping-row-text: $kendo-grid-text !default;
|
|
47848
47734
|
|
|
47849
47735
|
$kendo-grid-sorted-icon-spacing: 4px !default;
|
|
47850
|
-
$kendo-grid-sorted-bg: if($kendo-enable-color-system,
|
|
47736
|
+
$kendo-grid-sorted-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 5%, transparent), rgba( k-contrast-color( $kendo-grid-bg ), .04 )) !default;
|
|
47851
47737
|
$kendo-grid-sorting-indicator-text: $kendo-grid-header-text !default;
|
|
47852
47738
|
$kendo-grid-sorting-index-font-size: $kendo-font-size-sm !default;
|
|
47853
47739
|
$kendo-grid-sorting-index-height: $kendo-icon-size !default;
|
|
@@ -47863,7 +47749,7 @@ $kendo-grid-command-cell-padding-y: calc( #{$kendo-grid-cell-padding-y} - (#{$ke
|
|
|
47863
47749
|
// Must be a solid color
|
|
47864
47750
|
$kendo-grid-sticky-bg: $kendo-grid-bg !default;
|
|
47865
47751
|
$kendo-grid-sticky-text: $kendo-grid-text !default;
|
|
47866
|
-
$kendo-grid-sticky-border: if($kendo-enable-color-system,
|
|
47752
|
+
$kendo-grid-sticky-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( k-contrast-color( $kendo-grid-bg ), .5 )) !default;
|
|
47867
47753
|
|
|
47868
47754
|
// Must be a solid color
|
|
47869
47755
|
$kendo-grid-sticky-alt-bg: $kendo-grid-sticky-bg !default;
|
|
@@ -47875,12 +47761,12 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
|
|
|
47875
47761
|
$kendo-grid-sticky-footer-bg: $kendo-grid-sticky-header-bg !default;
|
|
47876
47762
|
$kendo-grid-sticky-footer-hover-bg: $kendo-grid-sticky-footer-bg !default;
|
|
47877
47763
|
|
|
47878
|
-
$kendo-grid-sticky-selected-bg: if($kendo-enable-color-system,
|
|
47764
|
+
$kendo-grid-sticky-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 12%, transparent), k-try-shade($kendo-grid-bg, 4%)) !default;
|
|
47879
47765
|
$kendo-grid-sticky-selected-alt-bg: $kendo-grid-sticky-selected-bg !default;
|
|
47880
47766
|
|
|
47881
47767
|
// Must be a solid color
|
|
47882
47768
|
$kendo-grid-sticky-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade($kendo-grid-bg, 7%)) !default;
|
|
47883
|
-
$kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system,
|
|
47769
|
+
$kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 12%, transparent), k-try-shade($kendo-grid-sticky-selected-bg, .87)) !default;
|
|
47884
47770
|
|
|
47885
47771
|
$kendo-grid-column-menu-width: 250px !default;
|
|
47886
47772
|
$kendo-grid-column-menu-max-width: 320px !default;
|
|
@@ -47933,7 +47819,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
47933
47819
|
|
|
47934
47820
|
/// Background color of the grid row resize indicator
|
|
47935
47821
|
/// @group grid
|
|
47936
|
-
$kendo-grid-row-resizer-hover-bg: if($kendo-enable-color-system,
|
|
47822
|
+
$kendo-grid-row-resizer-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 20%, transparent), rgba( k-contrast-color( $kendo-grid-bg ), .24 )) !default;
|
|
47937
47823
|
/// Active background color of the grid row resize indicator
|
|
47938
47824
|
/// @group grid
|
|
47939
47825
|
$kendo-grid-row-resizer-active-bg: $kendo-color-primary !default;
|
|
@@ -50789,7 +50675,7 @@ $kendo-spreadsheet-view-font-size: $kendo-spreadsheet-font-size !default;
|
|
|
50789
50675
|
|
|
50790
50676
|
/// The background color of the Spreadsheet selection.
|
|
50791
50677
|
/// @group spreadsheet
|
|
50792
|
-
$kendo-spreadsheet-selection-bg: if($kendo-enable-color-system,
|
|
50678
|
+
$kendo-spreadsheet-selection-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
|
|
50793
50679
|
/// The text color of the Spreadsheet selection.
|
|
50794
50680
|
/// @group spreadsheet
|
|
50795
50681
|
$kendo-spreadsheet-selection-text: null !default;
|
|
@@ -50823,7 +50709,7 @@ $kendo-spreadsheet-active-cell-shadow: inset 0 0 0 1px $kendo-color-primary !def
|
|
|
50823
50709
|
|
|
50824
50710
|
/// The background color of the Spreadsheet auto fill.
|
|
50825
50711
|
/// @group spreadsheet
|
|
50826
|
-
$kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system,
|
|
50712
|
+
$kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
|
|
50827
50713
|
/// The text color of the Spreadsheet auto fill.
|
|
50828
50714
|
/// @group spreadsheet
|
|
50829
50715
|
$kendo-spreadsheet-auto-fill-text: null !default;
|
|
@@ -50835,7 +50721,7 @@ $kendo-spreadsheet-auto-fill-border: $kendo-color-primary !default;
|
|
|
50835
50721
|
$kendo-spreadsheet-auto-fill-shadow: inset 0 0 0 1px $kendo-color-primary !default;
|
|
50836
50722
|
/// The background color of the Spreadsheet auto fill punch.
|
|
50837
50723
|
/// @group spreadsheet
|
|
50838
|
-
$kendo-spreadsheet-auto-fill-punch-bg: if($kendo-enable-color-system,
|
|
50724
|
+
$kendo-spreadsheet-auto-fill-punch-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( app-surface ) 50%, transparent), rgba( $kendo-component-bg, .5 )) !default;
|
|
50839
50725
|
|
|
50840
50726
|
/// The vertical padding of the Spreadsheet cell.
|
|
50841
50727
|
/// @group spreadsheet
|
|
@@ -50953,7 +50839,7 @@ $kendo-spreadsheet-drawing-outline-width: 2px !default;
|
|
|
50953
50839
|
|
|
50954
50840
|
/// The background color of the Spreadsheet drawing anchor.
|
|
50955
50841
|
/// @group spreadsheet
|
|
50956
|
-
$kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system,
|
|
50842
|
+
$kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( secondary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
50957
50843
|
|
|
50958
50844
|
/// The vertical spacing of the Spreadsheet DropZone.
|
|
50959
50845
|
/// @group spreadsheet
|
|
@@ -52266,7 +52152,7 @@ $kendo-pivotgrid-border: $kendo-component-border !default;
|
|
|
52266
52152
|
|
|
52267
52153
|
$kendo-pivotgrid-alt-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-pivotgrid-border, 2 )) !default;
|
|
52268
52154
|
|
|
52269
|
-
$kendo-pivotgrid-headers-bg: if($kendo-enable-color-system,
|
|
52155
|
+
$kendo-pivotgrid-headers-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( app-surface ) 2%, transparent), rgba( $kendo-component-header-bg, .02 )) !default;
|
|
52270
52156
|
$kendo-pivotgrid-headers-text: $kendo-component-header-text !default;
|
|
52271
52157
|
$kendo-pivotgrid-headers-border: $kendo-component-header-border !default;
|
|
52272
52158
|
|
|
@@ -52278,7 +52164,7 @@ $kendo-pivotgrid-hover-bg: if($kendo-enable-color-system, k-color( base-hover ),
|
|
|
52278
52164
|
$kendo-pivotgrid-hover-text: null !default;
|
|
52279
52165
|
$kendo-pivotgrid-hover-border: null !default;
|
|
52280
52166
|
|
|
52281
|
-
$kendo-pivotgrid-selected-bg: if($kendo-enable-color-system,
|
|
52167
|
+
$kendo-pivotgrid-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( base-active ) 25%, transparent), rgba( k-contrast-color( $kendo-pivotgrid-bg ), .04 )) !default;
|
|
52282
52168
|
$kendo-pivotgrid-selected-text: null !default;
|
|
52283
52169
|
$kendo-pivotgrid-selected-border: null !default;
|
|
52284
52170
|
|
|
@@ -56519,7 +56405,7 @@ $kendo-gantt-treelist-bg: null !default;
|
|
|
56519
56405
|
$kendo-gantt-treelist-text: null !default;
|
|
56520
56406
|
$kendo-gantt-treelist-border: null !default;
|
|
56521
56407
|
|
|
56522
|
-
$kendo-gantt-nonwork-bg: if($kendo-enable-color-system,
|
|
56408
|
+
$kendo-gantt-nonwork-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 3%, transparent), rgba( k-contrast-color( $kendo-gantt-bg ), .025 )) !default;
|
|
56523
56409
|
$kendo-gantt-nonwork-text: null !default;
|
|
56524
56410
|
$kendo-gantt-nonwork-border: null !default;
|
|
56525
56411
|
|
|
@@ -59283,7 +59169,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
59283
59169
|
|
|
59284
59170
|
.k-scheduler-layout td.k-selected,
|
|
59285
59171
|
.k-scheduler-layout .k-scheduler-cell.k-selected {
|
|
59286
|
-
background-color: if($kendo-enable-color-system,
|
|
59172
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
|
|
59287
59173
|
}
|
|
59288
59174
|
|
|
59289
59175
|
.k-scheduler-layout-flex {
|
|
@@ -59400,7 +59286,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
59400
59286
|
|
|
59401
59287
|
// Selected
|
|
59402
59288
|
.k-scheduler-content tr.k-selected {
|
|
59403
|
-
background-color: if($kendo-enable-color-system,
|
|
59289
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
|
|
59404
59290
|
}
|
|
59405
59291
|
.k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
|
|
59406
59292
|
.k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
|
|
@@ -59461,13 +59347,13 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
59461
59347
|
|
|
59462
59348
|
.k-scheduler-layout td.k-selected,
|
|
59463
59349
|
.k-scheduler-layout .k-scheduler-cell.k-selected {
|
|
59464
|
-
background-color: if($kendo-enable-color-system,
|
|
59350
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( secondary ) 25%, transparent), rgba($kendo-selected-bg, .25));
|
|
59465
59351
|
}
|
|
59466
59352
|
|
|
59467
59353
|
// Agenda view
|
|
59468
59354
|
.k-scheduler-agendaview {
|
|
59469
59355
|
.k-scheduler-content tr.k-selected {
|
|
59470
|
-
background-color: if($kendo-enable-color-system,
|
|
59356
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( secondary ) 25%, transparent), rgba($kendo-selected-bg, .25));
|
|
59471
59357
|
}
|
|
59472
59358
|
}
|
|
59473
59359
|
|
|
@@ -60415,7 +60301,7 @@ $kendo-media-player-titlebar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
60415
60301
|
$kendo-media-player-titlebar-bg: null !default;
|
|
60416
60302
|
$kendo-media-player-titlebar-text: $kendo-media-player-bg !default;
|
|
60417
60303
|
$kendo-media-player-titlebar-border: null !default;
|
|
60418
|
-
$kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, (
|
|
60304
|
+
$kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, ( color-mix(in srgb, k-color( on-app-surface ) 70%, transparent), color-mix(in srgb, k-color( on-app-surface ) 0%, transparent) ), ( rgba( $kendo-media-player-text, .7 ), rgba( $kendo-media-player-text, 0 ) )) !default;
|
|
60419
60305
|
|
|
60420
60306
|
// #endregion
|
|
60421
60307
|
// #region @import "./_layout.scss"; -> scss/mediaplayer/_layout.scss
|
|
@@ -60553,7 +60439,7 @@ $kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, ( rgba( k-
|
|
|
60553
60439
|
.k-mediaplayer-titlebar {
|
|
60554
60440
|
color: $kendo-media-player-titlebar-text;
|
|
60555
60441
|
background-image: linear-gradient( $kendo-media-player-titlebar-gradient );
|
|
60556
|
-
text-shadow: 0 0 2px if($kendo-enable-color-system,
|
|
60442
|
+
text-shadow: 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-media-player-text, .5 ));
|
|
60557
60443
|
}
|
|
60558
60444
|
|
|
60559
60445
|
}
|
|
@@ -62814,13 +62700,13 @@ $kendo-chart-pane-title-font-weight: $kendo-font-weight-normal !default;
|
|
|
62814
62700
|
|
|
62815
62701
|
/// The color of the Chart grid lines (major).
|
|
62816
62702
|
/// @group charts
|
|
62817
|
-
$kendo-chart-major-lines:
|
|
62703
|
+
$kendo-chart-major-lines: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 )) !default;
|
|
62818
62704
|
|
|
62819
62705
|
/// The color of the Chart grid lines (minor).
|
|
62820
62706
|
/// @group charts
|
|
62821
|
-
$kendo-chart-minor-lines:
|
|
62707
|
+
$kendo-chart-minor-lines: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 4%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .04 )) !default;
|
|
62822
62708
|
|
|
62823
|
-
$kendo-chart-inactive: if($kendo-enable-color-system,
|
|
62709
|
+
$kendo-chart-inactive: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-body-text, .5 )) !default;
|
|
62824
62710
|
$kendo-chart-area-opacity: .6 !default;
|
|
62825
62711
|
$kendo-chart-area-inactive-opacity: .1 !default;
|
|
62826
62712
|
$kendo-chart-line-inactive-opacity: .3 !default;
|
|
@@ -62831,20 +62717,20 @@ $kendo-chart-bg: $kendo-component-bg !default;
|
|
|
62831
62717
|
$kendo-chart-text: $kendo-component-text !default;
|
|
62832
62718
|
$kendo-chart-border: $kendo-component-border !default;
|
|
62833
62719
|
|
|
62834
|
-
$kendo-chart-crosshair-background:
|
|
62720
|
+
$kendo-chart-crosshair-background: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 )) !default;
|
|
62835
62721
|
$kendo-chart-crosshair-shared-tooltip-color: $kendo-chart-text !default;
|
|
62836
62722
|
$kendo-chart-crosshair-shared-tooltip-background: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-chart-bg, 1 )) !default;
|
|
62837
|
-
$kendo-chart-crosshair-shared-tooltip-border:
|
|
62723
|
+
$kendo-chart-crosshair-shared-tooltip-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 )) !default;
|
|
62838
62724
|
|
|
62839
|
-
$kendo-chart-notes-background:
|
|
62840
|
-
$kendo-chart-notes-border:
|
|
62841
|
-
$kendo-chart-notes-lines:
|
|
62725
|
+
$kendo-chart-notes-background: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 )) !default;
|
|
62726
|
+
$kendo-chart-notes-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 )) !default;
|
|
62727
|
+
$kendo-chart-notes-lines: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 )) !default;
|
|
62842
62728
|
|
|
62843
|
-
$kendo-chart-error-bars-background:
|
|
62729
|
+
$kendo-chart-error-bars-background: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .5 )) !default;
|
|
62844
62730
|
|
|
62845
62731
|
$kendo-chart-selection-handle-size: 22px !default;
|
|
62846
|
-
$kendo-chart-selection-border-color:
|
|
62847
|
-
$kendo-chart-selection-shadow: inset 0 1px 7px
|
|
62732
|
+
$kendo-chart-selection-border-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .08 )) !default;
|
|
62733
|
+
$kendo-chart-selection-shadow: inset 0 1px 7px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 15%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .15 )) !default;
|
|
62848
62734
|
|
|
62849
62735
|
|
|
62850
62736
|
// TreeMap
|
|
@@ -63606,7 +63492,7 @@ $kendo-map-zoom-control-button-padding-y: $kendo-map-zoom-control-button-padding
|
|
|
63606
63492
|
$kendo-map-attribution-padding-x: $kendo-padding-sm-x !default;
|
|
63607
63493
|
$kendo-map-attribution-padding-y: $kendo-padding-sm-y !default;
|
|
63608
63494
|
$kendo-map-attribution-font-size: ($kendo-map-font-size * .75) !default;
|
|
63609
|
-
$kendo-map-attribution-bg: if($kendo-enable-color-system,
|
|
63495
|
+
$kendo-map-attribution-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( app-surface ) 80%, transparent), rgba( $kendo-map-bg, .8 )) !default;
|
|
63610
63496
|
|
|
63611
63497
|
$kendo-map-marker-fill: $kendo-color-primary !default;
|
|
63612
63498
|
|
|
@@ -63952,7 +63838,7 @@ $kendo-orgchart-node-group-border: $kendo-base-border !default;
|
|
|
63952
63838
|
$kendo-orgchart-node-group-focus-border: $kendo-card-focus-border !default;
|
|
63953
63839
|
/// The shadow of the focused OrgChart node group.
|
|
63954
63840
|
/// @group orgchart
|
|
63955
|
-
$kendo-orgchart-node-group-focus-shadow: 0 2px 4px -1px
|
|
63841
|
+
$kendo-orgchart-node-group-focus-shadow: 0 2px 4px -1px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 20%, transparent), rgba( $elevation, .2 )), 0 4px 5px 0 if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 14%, transparent), rgba( $elevation, .14 )), 0 1px 10px 0 if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 12%, transparent), rgba( $elevation, .12 )) !default;
|
|
63956
63842
|
|
|
63957
63843
|
/// The font size of the OrgChart node group title.
|
|
63958
63844
|
/// @group orgchart
|
|
@@ -64296,7 +64182,7 @@ $kendo-signature-lg-padding-y: $kendo-signature-lg-padding-x !default;
|
|
|
64296
64182
|
|
|
64297
64183
|
$kendo-signature-line-width: 1px !default;
|
|
64298
64184
|
$kendo-signature-line-style: dashed !default;
|
|
64299
|
-
$kendo-signature-line-color: if($kendo-enable-color-system,
|
|
64185
|
+
$kendo-signature-line-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( info ) 24%, transparent), rgba( $kendo-color-info, .24 )) !default;
|
|
64300
64186
|
|
|
64301
64187
|
$kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
|
|
64302
64188
|
$kendo-signature-sm-line-size: calc( 100% - 2 * #{$kendo-signature-sm-padding-x} ) !default;
|