@progress/kendo-theme-classic 7.2.1-dev.7 → 7.2.1
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 +8 -1
- package/dist/all.scss +82 -83
- package/dist/meta/sassdoc-data.json +62 -62
- package/dist/meta/sassdoc-raw-data.json +31 -31
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/lib/swatches/classic-uniform.json +1 -1
- package/package.json +5 -5
- package/scss/button/_variables.scss +1 -1
- package/scss/checkbox/_variables.scss +1 -1
- package/scss/chip/_variables.scss +2 -2
- package/scss/dataviz/_variables.scss +11 -11
- package/scss/dock-manager/_variables.scss +1 -1
- package/scss/gantt/_variables.scss +1 -1
- package/scss/grid/_variables.scss +5 -5
- package/scss/input/_variables.scss +5 -5
- package/scss/listview/_variables.scss +1 -1
- package/scss/map/_variables.scss +1 -1
- package/scss/mediaplayer/_variables.scss +1 -1
- package/scss/menu/_variables.scss +1 -1
- package/scss/pivotgrid/_variables.scss +1 -1
- 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 +3 -3
- package/scss/timeline/_variables.scss +3 -3
package/dist/all.scss
CHANGED
|
@@ -3766,7 +3766,7 @@ $kendo-palettes: (
|
|
|
3766
3766
|
color-on-subtle: k-color( #{$color}-on-subtle ),
|
|
3767
3767
|
on-color: k-color( on-#{$color} ),
|
|
3768
3768
|
color-on-surface: k-color( #{$color}-on-surface ),
|
|
3769
|
-
on-color-disabled:
|
|
3769
|
+
on-color-disabled: color-mix(in srgb, k-color( on-#{$color} ) 46%, transparent)
|
|
3770
3770
|
);
|
|
3771
3771
|
|
|
3772
3772
|
@return if( k-map-has-key( $map, $name ), k-map-get( $map, $name ), $name );
|
|
@@ -4029,15 +4029,11 @@ $_default-colors: (
|
|
|
4029
4029
|
$kendo-colors: $_default-colors !default;
|
|
4030
4030
|
$kendo-colors: k-map-merge($_default-colors, $kendo-colors);
|
|
4031
4031
|
|
|
4032
|
-
@function k-color($key
|
|
4032
|
+
@function k-color($key) {
|
|
4033
4033
|
$_color: k-map-get($kendo-colors, $key);
|
|
4034
4034
|
|
|
4035
4035
|
@if ($_color) {
|
|
4036
|
-
@
|
|
4037
|
-
@return var(--kendo-color-#{$key}-rgb, k-hex-to-rgb($_color));
|
|
4038
|
-
} @else {
|
|
4039
|
-
@return var(--kendo-color-#{$key}, $_color);
|
|
4040
|
-
}
|
|
4036
|
+
@return var(--kendo-color-#{$key}, $_color);
|
|
4041
4037
|
} @else {
|
|
4042
4038
|
@error "Color Variable \`#{$key}\` does not exists in the color collection.";
|
|
4043
4039
|
}
|
|
@@ -4048,7 +4044,6 @@ $kendo-colors: k-map-merge($_default-colors, $kendo-colors);
|
|
|
4048
4044
|
@each $key, $value in $kendo-colors {
|
|
4049
4045
|
@if($value) {
|
|
4050
4046
|
--kendo-color-#{$key}: #{$value};
|
|
4051
|
-
--kendo-color-#{$key}-rgb: #{k-hex-to-rgb($value)};
|
|
4052
4047
|
}
|
|
4053
4048
|
}
|
|
4054
4049
|
}
|
|
@@ -16288,7 +16283,7 @@ $kendo-checkbox-focus-shadow: 0 0 0 2px rgba( black, .06 ) !default;
|
|
|
16288
16283
|
$kendo-checkbox-focus-checked-border: null !default;
|
|
16289
16284
|
/// The box shadow of the focused and checked CheckBox.
|
|
16290
16285
|
/// @group checkbox
|
|
16291
|
-
$kendo-checkbox-focus-checked-shadow: 0 0 0 2px if($kendo-enable-color-system,
|
|
16286
|
+
$kendo-checkbox-focus-checked-shadow: 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 30%, transparent), rgba( $kendo-color-primary, .3 )) !default;
|
|
16292
16287
|
|
|
16293
16288
|
/// The background color of the disabled CheckBox.
|
|
16294
16289
|
/// @group checkbox
|
|
@@ -18039,7 +18034,7 @@ $kendo-table-group-row-border: $kendo-table-header-border !default;
|
|
|
18039
18034
|
|
|
18040
18035
|
/// Background color of alternating rows in table.
|
|
18041
18036
|
/// @group table
|
|
18042
|
-
$kendo-table-alt-row-bg: if($kendo-enable-color-system,
|
|
18037
|
+
$kendo-table-alt-row-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 5%, transparent), k-try-shade( $kendo-table-bg, .5 )) !default;
|
|
18043
18038
|
/// Text color of alternating rows in table.
|
|
18044
18039
|
/// @group table
|
|
18045
18040
|
$kendo-table-alt-row-text: null !default;
|
|
@@ -18050,7 +18045,7 @@ $kendo-table-alt-row-border: null !default;
|
|
|
18050
18045
|
|
|
18051
18046
|
/// Background color of hovered rows in table.
|
|
18052
18047
|
/// @group table
|
|
18053
|
-
$kendo-table-hover-bg: if($kendo-enable-color-system,
|
|
18048
|
+
$kendo-table-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 11%, transparent), k-try-shade( $kendo-table-bg, 1 )) !default;
|
|
18054
18049
|
/// Text color of hovered rows in table.
|
|
18055
18050
|
/// @group table
|
|
18056
18051
|
$kendo-table-hover-text: null !default;
|
|
@@ -18075,7 +18070,7 @@ $kendo-table-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
|
18075
18070
|
|
|
18076
18071
|
/// Background color of selected rows in table.
|
|
18077
18072
|
/// @group table
|
|
18078
|
-
$kendo-table-selected-bg: if($kendo-enable-color-system,
|
|
18073
|
+
$kendo-table-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
18079
18074
|
/// Text color of selected rows in table.
|
|
18080
18075
|
/// @group table
|
|
18081
18076
|
$kendo-table-selected-text: null !default;
|
|
@@ -18201,12 +18196,15 @@ $kendo-table-selected-border: null !default;
|
|
|
18201
18196
|
list-style: none;
|
|
18202
18197
|
outline: none;
|
|
18203
18198
|
|
|
18199
|
+
.k-table-row {
|
|
18200
|
+
position: relative;
|
|
18201
|
+
}
|
|
18202
|
+
|
|
18204
18203
|
.k-table-row,
|
|
18205
18204
|
.k-table-group-row {
|
|
18206
18205
|
width: 100%;
|
|
18207
18206
|
box-sizing: border-box;
|
|
18208
18207
|
display: table-row;
|
|
18209
|
-
position: relative;
|
|
18210
18208
|
}
|
|
18211
18209
|
.k-table-row.k-first {
|
|
18212
18210
|
border-top: 1px solid currentColor;
|
|
@@ -18218,6 +18216,7 @@ $kendo-table-selected-border: null !default;
|
|
|
18218
18216
|
}
|
|
18219
18217
|
|
|
18220
18218
|
.k-table-group-row {
|
|
18219
|
+
position: sticky;
|
|
18221
18220
|
|
|
18222
18221
|
&::before {
|
|
18223
18222
|
content: "\200b";
|
|
@@ -19402,7 +19401,7 @@ $kendo-button-focus-border: null !default;
|
|
|
19402
19401
|
$kendo-button-focus-gradient: null !default;
|
|
19403
19402
|
/// The base shadow of the focused Button.
|
|
19404
19403
|
/// @group button
|
|
19405
|
-
$kendo-button-focus-shadow: 0 0 4px 0 if($kendo-enable-color-system,
|
|
19404
|
+
$kendo-button-focus-shadow: 0 0 4px 0 if($kendo-enable-color-system, color-mix(in srgb, k-color( border ) 75%, transparent), rgba( $kendo-button-border, .75 )) !default;
|
|
19406
19405
|
|
|
19407
19406
|
/// The base background of the disabled Button.
|
|
19408
19407
|
/// @group button
|
|
@@ -19589,7 +19588,7 @@ $kendo-chip-solid-text: $kendo-button-text !default;
|
|
|
19589
19588
|
$kendo-chip-solid-border: $kendo-button-border !default;
|
|
19590
19589
|
/// The base shadow of the solid Chip.
|
|
19591
19590
|
/// @group chip
|
|
19592
|
-
$kendo-chip-solid-shadow: 0 0 0 2px if($kendo-enable-color-system,
|
|
19591
|
+
$kendo-chip-solid-shadow: 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 16%, transparent), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) )) !default;
|
|
19593
19592
|
/// The base gradient of the solid Chip.
|
|
19594
19593
|
/// @group chip
|
|
19595
19594
|
$kendo-chip-solid-gradient: $kendo-button-gradient !default;
|
|
@@ -19626,7 +19625,7 @@ $kendo-chip-outline-text: $kendo-chip-solid-text !default;
|
|
|
19626
19625
|
$kendo-chip-outline-border: $kendo-chip-outline-text !default;
|
|
19627
19626
|
/// The base shadow of the outline Chip.
|
|
19628
19627
|
/// @group chip
|
|
19629
|
-
$kendo-chip-outline-shadow: 0 0 0 2px if($kendo-enable-color-system,
|
|
19628
|
+
$kendo-chip-outline-shadow: 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 16%, transparent), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) )) !default;
|
|
19630
19629
|
|
|
19631
19630
|
/// The base background color of the hovered outline Chip.
|
|
19632
19631
|
/// @group chip
|
|
@@ -19870,7 +19869,7 @@ $kendo-chip-list-sizes: (
|
|
|
19870
19869
|
|
|
19871
19870
|
&:focus,
|
|
19872
19871
|
&.k-focus {
|
|
19873
|
-
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system,
|
|
19872
|
+
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 16%, transparent), rgba( $color, .16 )) );
|
|
19874
19873
|
}
|
|
19875
19874
|
|
|
19876
19875
|
&:hover,
|
|
@@ -19924,7 +19923,7 @@ $kendo-chip-list-sizes: (
|
|
|
19924
19923
|
|
|
19925
19924
|
&:focus,
|
|
19926
19925
|
&.k-focus {
|
|
19927
|
-
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system,
|
|
19926
|
+
@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 ))) );
|
|
19928
19927
|
}
|
|
19929
19928
|
|
|
19930
19929
|
&:hover,
|
|
@@ -19950,7 +19949,7 @@ $kendo-chip-list-sizes: (
|
|
|
19950
19949
|
|
|
19951
19950
|
&:focus,
|
|
19952
19951
|
&.k-focus {
|
|
19953
|
-
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system,
|
|
19952
|
+
@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 ))) );
|
|
19954
19953
|
}
|
|
19955
19954
|
|
|
19956
19955
|
&:hover,
|
|
@@ -20971,7 +20970,7 @@ $kendo-skeleton-circle-border-radius: 9999px !default;
|
|
|
20971
20970
|
|
|
20972
20971
|
/// The background color of the Skeleton item.
|
|
20973
20972
|
/// @group skeleton
|
|
20974
|
-
$kendo-skeleton-item-bg: if($kendo-enable-color-system,
|
|
20973
|
+
$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;
|
|
20975
20974
|
/// The background color of the Skeleton wave animation.
|
|
20976
20975
|
/// @group skeleton
|
|
20977
20976
|
$kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
|
|
@@ -21696,7 +21695,7 @@ $_kendo-module-meta: (
|
|
|
21696
21695
|
&:focus,
|
|
21697
21696
|
&.k-focus {
|
|
21698
21697
|
@if ( $kendo-solid-button-shadow ) {
|
|
21699
|
-
@include focus-indicator( 0 0 $kendo-solid-button-shadow-blur $kendo-solid-button-shadow-spread if($kendo-enable-color-system,
|
|
21698
|
+
@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 );
|
|
21700
21699
|
}
|
|
21701
21700
|
}
|
|
21702
21701
|
|
|
@@ -21766,9 +21765,9 @@ $_kendo-module-meta: (
|
|
|
21766
21765
|
&.k-focus {
|
|
21767
21766
|
@if $kendo-outline-button-shadow {
|
|
21768
21767
|
@if $name == "base" {
|
|
21769
|
-
@include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system,
|
|
21768
|
+
@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 );
|
|
21770
21769
|
} @else {
|
|
21771
|
-
@include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system,
|
|
21770
|
+
@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 );
|
|
21772
21771
|
}
|
|
21773
21772
|
}
|
|
21774
21773
|
}
|
|
@@ -21851,9 +21850,9 @@ $_kendo-module-meta: (
|
|
|
21851
21850
|
&.k-focus {
|
|
21852
21851
|
@if ( $kendo-link-button-shadow ) {
|
|
21853
21852
|
@if $name == "base" {
|
|
21854
|
-
@include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system,
|
|
21853
|
+
@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 );
|
|
21855
21854
|
} @else {
|
|
21856
|
-
@include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system,
|
|
21855
|
+
@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 );
|
|
21857
21856
|
}
|
|
21858
21857
|
}
|
|
21859
21858
|
}
|
|
@@ -22028,7 +22027,7 @@ $kendo-menu-item-expanded-text: $kendo-component-text !default;
|
|
|
22028
22027
|
$kendo-menu-item-expanded-border: null !default;
|
|
22029
22028
|
$kendo-menu-item-expanded-gradient: null !default;
|
|
22030
22029
|
|
|
22031
|
-
$kendo-menu-item-focus-shadow: inset 0 0 3px 1px if($kendo-enable-color-system,
|
|
22030
|
+
$kendo-menu-item-focus-shadow: inset 0 0 3px 1px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 25%, transparent), rgba( $kendo-menu-text, .25 )) !default;
|
|
22032
22031
|
|
|
22033
22032
|
$kendo-menu-separator-spacing: k-map-get( $kendo-spacing, 1 ) !default;
|
|
22034
22033
|
|
|
@@ -23540,7 +23539,7 @@ $kendo-input-outline-bg: null !default;
|
|
|
23540
23539
|
$kendo-input-outline-text: null !default;
|
|
23541
23540
|
/// The border color of the outline Input components.
|
|
23542
23541
|
/// @group input
|
|
23543
|
-
$kendo-input-outline-border: if($kendo-enable-color-system,
|
|
23542
|
+
$kendo-input-outline-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-button-text, .5)) !default;
|
|
23544
23543
|
|
|
23545
23544
|
/// The background color of the outline hovered Input components.
|
|
23546
23545
|
/// @group input
|
|
@@ -23550,7 +23549,7 @@ $kendo-input-outline-hover-bg: null !default;
|
|
|
23550
23549
|
$kendo-input-outline-hover-text: null !default;
|
|
23551
23550
|
/// The border color of the outline hovered Input components.
|
|
23552
23551
|
/// @group input
|
|
23553
|
-
$kendo-input-outline-hover-border: if($kendo-enable-color-system,
|
|
23552
|
+
$kendo-input-outline-hover-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 80%, transparent), rgba( $kendo-button-text, .8)) !default;
|
|
23554
23553
|
|
|
23555
23554
|
/// The background color of the outline focused Input components.
|
|
23556
23555
|
/// @group input
|
|
@@ -23734,7 +23733,7 @@ $kendo-picker-outline-bg: null !default;
|
|
|
23734
23733
|
$kendo-picker-outline-text: $kendo-button-text !default;
|
|
23735
23734
|
/// The border color of the outline Picker components.
|
|
23736
23735
|
/// @group picker
|
|
23737
|
-
$kendo-picker-outline-border: if($kendo-enable-color-system,
|
|
23736
|
+
$kendo-picker-outline-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-picker-outline-text, .5)) !default;
|
|
23738
23737
|
|
|
23739
23738
|
/// The background color of the outline hovered Picker components.
|
|
23740
23739
|
/// @group picker
|
|
@@ -23781,13 +23780,13 @@ $kendo-picker-flat-border: $kendo-button-border !default;
|
|
|
23781
23780
|
|
|
23782
23781
|
/// The background color of the flat hovered Picker components.
|
|
23783
23782
|
/// @group picker
|
|
23784
|
-
$kendo-picker-flat-hover-bg: if($kendo-enable-color-system,
|
|
23783
|
+
$kendo-picker-flat-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 4%, transparent), rgba( $kendo-button-text, .04 )) !default;
|
|
23785
23784
|
/// The text color of the flat hovered Picker components.
|
|
23786
23785
|
/// @group picker
|
|
23787
23786
|
$kendo-picker-flat-hover-text: null !default;
|
|
23788
23787
|
/// The border color of the flat hovered Picker components.
|
|
23789
23788
|
/// @group picker
|
|
23790
|
-
$kendo-picker-flat-hover-border: if($kendo-enable-color-system,
|
|
23789
|
+
$kendo-picker-flat-hover-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( border ) 16%, transparent), rgba( $kendo-button-border, .16 )) !default;
|
|
23791
23790
|
|
|
23792
23791
|
/// The background color of the flat focused Picker components.
|
|
23793
23792
|
/// @group picker
|
|
@@ -27525,7 +27524,7 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
|
27525
27524
|
|
|
27526
27525
|
.k-progressbar-indeterminate {
|
|
27527
27526
|
@include fill( $kendo-progressbar-indeterminate-text, $kendo-progressbar-indeterminate-bg, $kendo-progressbar-indeterminate-border );
|
|
27528
|
-
@include striped-gradient( if($kendo-enable-color-system,
|
|
27527
|
+
@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)) );
|
|
27529
27528
|
background-size: $kendo-progressbar-height $kendo-progressbar-height;
|
|
27530
27529
|
animation: kendo-progressbar-indeterminate-animation $kendo-progressbar-animation-timing;
|
|
27531
27530
|
}
|
|
@@ -28287,7 +28286,7 @@ $kendo-slider-draghandle-pressed-gradient: null !default;
|
|
|
28287
28286
|
|
|
28288
28287
|
/// The shadow of the focused Slider drag handle.
|
|
28289
28288
|
/// @group slider
|
|
28290
|
-
$kendo-slider-draghandle-focus-shadow: 0 0 4px 0 if($kendo-enable-color-system,
|
|
28289
|
+
$kendo-slider-draghandle-focus-shadow: 0 0 4px 0 if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 75%, transparent), rgba( $kendo-slider-draghandle-border, .75 )) !default;
|
|
28291
28290
|
|
|
28292
28291
|
/// The transition speed of the Slider.
|
|
28293
28292
|
/// @group slider
|
|
@@ -29716,7 +29715,7 @@ $kendo-calendar-sizes: (
|
|
|
29716
29715
|
.k-calendar { // stylelint-disable-line
|
|
29717
29716
|
|
|
29718
29717
|
$kendo-calendar-range-gap: 1px !default;
|
|
29719
|
-
$kendo-calendar-range-bg: if($kendo-enable-color-system,
|
|
29718
|
+
$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 ));
|
|
29720
29719
|
$kendo-calendar-range-split-size: 5px !default;
|
|
29721
29720
|
|
|
29722
29721
|
.k-range-start,
|
|
@@ -34373,7 +34372,7 @@ $kendo-switch-off-track-focus-border: null !default;
|
|
|
34373
34372
|
$kendo-switch-off-track-focus-gradient: null !default;
|
|
34374
34373
|
/// The ring around the track when the focused Switch is not checked.
|
|
34375
34374
|
/// @group switch
|
|
34376
|
-
$kendo-switch-off-track-focus-ring: 0 0 3px 1px
|
|
34375
|
+
$kendo-switch-off-track-focus-ring: 0 0 3px 1px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 25%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .25 )) !default;
|
|
34377
34376
|
|
|
34378
34377
|
/// The background of the track when the disabled Switch is not checked.
|
|
34379
34378
|
/// @group switch
|
|
@@ -34455,7 +34454,7 @@ $kendo-switch-on-track-focus-border: null !default;
|
|
|
34455
34454
|
$kendo-switch-on-track-focus-gradient: null !default;
|
|
34456
34455
|
/// The ring around the track wen the focused Switch is checked.
|
|
34457
34456
|
/// @group switch
|
|
34458
|
-
$kendo-switch-on-track-focus-ring: 0 0 3px 1px
|
|
34457
|
+
$kendo-switch-on-track-focus-ring: 0 0 3px 1px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 25%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .25 )) !default;
|
|
34459
34458
|
|
|
34460
34459
|
/// The background of the track when the disabled Switch is checked.
|
|
34461
34460
|
/// @group switch
|
|
@@ -34729,7 +34728,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
34729
34728
|
$kendo-switch-off-track-focus-gradient
|
|
34730
34729
|
);
|
|
34731
34730
|
@if $kendo-enable-focus-contrast {
|
|
34732
|
-
@include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface
|
|
34731
|
+
@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 )) );
|
|
34733
34732
|
} @else {
|
|
34734
34733
|
outline: $kendo-switch-off-track-focus-ring;
|
|
34735
34734
|
}
|
|
@@ -34809,7 +34808,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
34809
34808
|
$kendo-switch-on-track-focus-gradient
|
|
34810
34809
|
);
|
|
34811
34810
|
@if $kendo-enable-focus-contrast {
|
|
34812
|
-
@include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface
|
|
34811
|
+
@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 )) );
|
|
34813
34812
|
} @else {
|
|
34814
34813
|
outline: $kendo-switch-on-track-focus-ring;
|
|
34815
34814
|
}
|
|
@@ -36312,7 +36311,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
36312
36311
|
@if $kendo-enable-focus-contrast {
|
|
36313
36312
|
@include box-shadow( inset 0 0 0 2px currentColor );
|
|
36314
36313
|
} @else {
|
|
36315
|
-
outline: $kendo-fab-outline-style $kendo-fab-outline-width if($kendo-enable-color-system,
|
|
36314
|
+
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 ));
|
|
36316
36315
|
}
|
|
36317
36316
|
}
|
|
36318
36317
|
}
|
|
@@ -36333,8 +36332,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
36333
36332
|
.k-disabled.k-fab-solid-#{$name},
|
|
36334
36333
|
.k-fab-solid-#{$name}:disabled {
|
|
36335
36334
|
@include box-shadow($kendo-fab-disabled-shadow);
|
|
36336
|
-
background-color: if($kendo-enable-color-system,
|
|
36337
|
-
color: if($kendo-enable-color-system,
|
|
36335
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 60%, transparent), k-try-tint( $color, 5 ));
|
|
36336
|
+
color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-#{$name} ) 60%, transparent), k-try-tint( k-contrast-legacy( $color ), 5 ));
|
|
36338
36337
|
opacity: 1;
|
|
36339
36338
|
}
|
|
36340
36339
|
}
|
|
@@ -36373,7 +36372,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
36373
36372
|
.k-fab-item.k-focus .k-fab-item-text,
|
|
36374
36373
|
.k-fab-item.k-focus .k-fab-item-icon {
|
|
36375
36374
|
@if $kendo-enable-focus-contrast {
|
|
36376
|
-
@include box-shadow( inset 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface
|
|
36375
|
+
@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 )) );
|
|
36377
36376
|
} @else {
|
|
36378
36377
|
outline: $kendo-fab-item-outline-style $kendo-fab-item-outline-width $kendo-fab-item-outline-color;
|
|
36379
36378
|
}
|
|
@@ -36395,8 +36394,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
36395
36394
|
.k-fab-item-text,
|
|
36396
36395
|
.k-fab-item-icon {
|
|
36397
36396
|
@include box-shadow($kendo-fab-item-disabled-shadow);
|
|
36398
|
-
background-color: if($kendo-enable-color-system,
|
|
36399
|
-
color: if($kendo-enable-color-system,
|
|
36397
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 60%, transparent), k-try-tint( $kendo-fab-item-bg, 5 ));
|
|
36398
|
+
color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 60%, transparent), k-try-tint( $kendo-fab-item-text, 5 ));
|
|
36400
36399
|
}
|
|
36401
36400
|
}
|
|
36402
36401
|
|
|
@@ -39683,13 +39682,13 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
39683
39682
|
@each $name, $color in $kendo-theme-colors {
|
|
39684
39683
|
.k-bottom-nav-solid-#{$name} {
|
|
39685
39684
|
@include fill(
|
|
39686
|
-
$color: if($kendo-enable-color-system,
|
|
39685
|
+
$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%)),
|
|
39687
39686
|
$bg: $color
|
|
39688
39687
|
);
|
|
39689
39688
|
|
|
39690
39689
|
.k-bottom-nav-item.k-focus,
|
|
39691
39690
|
.k-bottom-nav-item:focus {
|
|
39692
|
-
@include fill( $bg: if($kendo-enable-color-system,
|
|
39691
|
+
@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)));
|
|
39693
39692
|
}
|
|
39694
39693
|
|
|
39695
39694
|
.k-bottom-nav-item.k-selected {
|
|
@@ -39713,7 +39712,7 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
39713
39712
|
|
|
39714
39713
|
.k-bottom-nav-item.k-focus,
|
|
39715
39714
|
.k-bottom-nav-item:focus {
|
|
39716
|
-
@include fill( $bg: if($kendo-enable-color-system,
|
|
39715
|
+
@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)) );
|
|
39717
39716
|
}
|
|
39718
39717
|
|
|
39719
39718
|
.k-bottom-nav-item.k-selected {
|
|
@@ -40913,7 +40912,7 @@ $kendo-stepper-indicator-hover-border: null !default;
|
|
|
40913
40912
|
$kendo-stepper-indicator-disabled-bg: null !default;
|
|
40914
40913
|
/// The text color of the disabled Stepper indicator.
|
|
40915
40914
|
/// @group stepper
|
|
40916
|
-
$kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system,
|
|
40915
|
+
$kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 60%, transparent), $kendo-disabled-text) !default;
|
|
40917
40916
|
/// The border color of the disabled Stepper indicator.
|
|
40918
40917
|
/// @group stepper
|
|
40919
40918
|
$kendo-stepper-indicator-disabled-border: null !default;
|
|
@@ -40940,7 +40939,7 @@ $kendo-stepper-indicator-done-hover-border: null !default;
|
|
|
40940
40939
|
|
|
40941
40940
|
/// The background color of the Stepper's disabled done indicator.
|
|
40942
40941
|
/// @group stepper
|
|
40943
|
-
$kendo-stepper-indicator-done-disabled-bg: if($kendo-enable-color-system,
|
|
40942
|
+
$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;
|
|
40944
40943
|
/// The text color of the Stepper's disabled done indicator.
|
|
40945
40944
|
/// @group stepper
|
|
40946
40945
|
$kendo-stepper-indicator-done-disabled-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-stepper-indicator-done-bg )) !default;
|
|
@@ -40992,7 +40991,7 @@ $kendo-stepper-label-error-text: $kendo-color-error !default;
|
|
|
40992
40991
|
$kendo-stepper-label-hover-text: null !default;
|
|
40993
40992
|
/// The text color of the disabled Stepper label.
|
|
40994
40993
|
/// @group stepper
|
|
40995
|
-
$kendo-stepper-label-disabled-text: if($kendo-enable-color-system,
|
|
40994
|
+
$kendo-stepper-label-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 60%, transparent), $kendo-disabled-text) !default;
|
|
40996
40995
|
|
|
40997
40996
|
/// The text color of the optional Stepper label.
|
|
40998
40997
|
/// @group stepper
|
|
@@ -44117,7 +44116,7 @@ $kendo-dock-manager-dock-preview-border-style: dashed !default;
|
|
|
44117
44116
|
$kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
|
|
44118
44117
|
/// The background color of the dropping area in the DockManager component.
|
|
44119
44118
|
/// @group dock-manager
|
|
44120
|
-
$kendo-dock-manager-dock-preview-bg: if($kendo-enable-color-system,
|
|
44119
|
+
$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;
|
|
44121
44120
|
/// The border color of the dropping area in the DockManager component.
|
|
44122
44121
|
/// @group dock-manager
|
|
44123
44122
|
$kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
|
|
@@ -45479,7 +45478,7 @@ $kendo-grid-selection-aggregates-line-height: $kendo-grid-line-height !default;
|
|
|
45479
45478
|
$kendo-grid-selection-aggregates-font-weight: $kendo-font-weight-bold !default;
|
|
45480
45479
|
|
|
45481
45480
|
$kendo-grid-sorted-icon-spacing: calc( #{$kendo-padding-md-x} - 1px ) !default;
|
|
45482
|
-
$kendo-grid-sorted-bg: if($kendo-enable-color-system,
|
|
45481
|
+
$kendo-grid-sorted-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 3%, transparent), rgba( k-contrast-color( $kendo-grid-bg ), .02 )) !default;
|
|
45483
45482
|
$kendo-grid-sorting-indicator-text: $kendo-color-primary !default;
|
|
45484
45483
|
$kendo-grid-sorting-index-font-size: $kendo-font-size-sm !default;
|
|
45485
45484
|
$kendo-grid-sorting-index-height: $kendo-icon-size !default;
|
|
@@ -45510,12 +45509,12 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
|
|
|
45510
45509
|
$kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
|
|
45511
45510
|
$kendo-grid-sticky-footer-hover-bg: $kendo-grid-hover-bg !default;
|
|
45512
45511
|
|
|
45513
|
-
$kendo-grid-sticky-selected-bg: if($kendo-enable-color-system,
|
|
45514
|
-
$kendo-grid-sticky-selected-alt-bg: if($kendo-enable-color-system,
|
|
45512
|
+
$kendo-grid-sticky-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), k-color-mix($kendo-selected-bg, #ffffff, 25%)) !default;
|
|
45513
|
+
$kendo-grid-sticky-selected-alt-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), k-try-shade( $kendo-grid-sticky-selected-bg, .5 )) !default;
|
|
45515
45514
|
|
|
45516
45515
|
// Must be a solid color
|
|
45517
45516
|
$kendo-grid-sticky-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), $kendo-grid-hover-bg) !default;
|
|
45518
|
-
$kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system,
|
|
45517
|
+
$kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), k-try-shade( $kendo-grid-sticky-selected-bg, 1 )) !default;
|
|
45519
45518
|
|
|
45520
45519
|
$kendo-grid-column-menu-width: 230px !default;
|
|
45521
45520
|
$kendo-grid-column-menu-max-width: 320px !default;
|
|
@@ -45566,7 +45565,7 @@ $kendo-grid-group-footer-second-cell-border: 1px !default;
|
|
|
45566
45565
|
|
|
45567
45566
|
/// Background color of the grid row resize indicator
|
|
45568
45567
|
/// @group grid
|
|
45569
|
-
$kendo-grid-row-resizer-hover-bg: if($kendo-enable-color-system,
|
|
45568
|
+
$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 ), .12 )) !default;
|
|
45570
45569
|
/// Active background color of the grid row resize indicator
|
|
45571
45570
|
/// @group grid
|
|
45572
45571
|
$kendo-grid-row-resizer-active-bg: $kendo-color-primary !default;
|
|
@@ -47618,7 +47617,7 @@ $kendo-listview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
|
47618
47617
|
$kendo-listview-item-selected-text: null !default;
|
|
47619
47618
|
/// The background color of the selected ListView items.
|
|
47620
47619
|
/// @group listview
|
|
47621
|
-
$kendo-listview-item-selected-bg: if($kendo-enable-color-system,
|
|
47620
|
+
$kendo-listview-item-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
47622
47621
|
/// The border color of the selected ListView items.
|
|
47623
47622
|
/// @group listview
|
|
47624
47623
|
$kendo-listview-item-selected-border: null !default;
|
|
@@ -48054,7 +48053,7 @@ $kendo-spreadsheet-view-font-size: $kendo-spreadsheet-font-size !default;
|
|
|
48054
48053
|
|
|
48055
48054
|
/// The background color of the Spreadsheet selection.
|
|
48056
48055
|
/// @group spreadsheet
|
|
48057
|
-
$kendo-spreadsheet-selection-bg: if($kendo-enable-color-system,
|
|
48056
|
+
$kendo-spreadsheet-selection-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
48058
48057
|
/// The text color of the Spreadsheet selection.
|
|
48059
48058
|
/// @group spreadsheet
|
|
48060
48059
|
$kendo-spreadsheet-selection-text: null !default;
|
|
@@ -48077,7 +48076,7 @@ $kendo-spreadsheet-single-selection-border: $kendo-spreadsheet-bg !default;
|
|
|
48077
48076
|
|
|
48078
48077
|
/// The background color of the Spreadsheet partial selection.
|
|
48079
48078
|
/// @group spreadsheet
|
|
48080
|
-
$kendo-spreadsheet-partial-selection-bg: if($kendo-enable-color-system,
|
|
48079
|
+
$kendo-spreadsheet-partial-selection-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
48081
48080
|
|
|
48082
48081
|
/// The background color of the Spreadsheet active cell.
|
|
48083
48082
|
/// @group spreadsheet
|
|
@@ -48088,7 +48087,7 @@ $kendo-spreadsheet-active-cell-shadow: inset 0 0 0 1px $kendo-selected-bg !defau
|
|
|
48088
48087
|
|
|
48089
48088
|
/// The background color of the Spreadsheet auto fill.
|
|
48090
48089
|
/// @group spreadsheet
|
|
48091
|
-
$kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system,
|
|
48090
|
+
$kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
48092
48091
|
/// The text color of the Spreadsheet auto fill.
|
|
48093
48092
|
/// @group spreadsheet
|
|
48094
48093
|
$kendo-spreadsheet-auto-fill-text: null !default;
|
|
@@ -48218,7 +48217,7 @@ $kendo-spreadsheet-drawing-outline-width: 2px !default;
|
|
|
48218
48217
|
|
|
48219
48218
|
/// The background color of the Spreadsheet drawing anchor.
|
|
48220
48219
|
/// @group spreadsheet
|
|
48221
|
-
$kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system,
|
|
48220
|
+
$kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
48222
48221
|
|
|
48223
48222
|
/// The vertical spacing of the Spreadsheet DropZone.
|
|
48224
48223
|
/// @group spreadsheet
|
|
@@ -49470,7 +49469,7 @@ $kendo-pivotgrid-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-h
|
|
|
49470
49469
|
$kendo-pivotgrid-hover-text: null !default;
|
|
49471
49470
|
$kendo-pivotgrid-hover-border: null !default;
|
|
49472
49471
|
|
|
49473
|
-
$kendo-pivotgrid-selected-bg: if($kendo-enable-color-system,
|
|
49472
|
+
$kendo-pivotgrid-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
49474
49473
|
$kendo-pivotgrid-selected-text: null !default;
|
|
49475
49474
|
$kendo-pivotgrid-selected-border: null !default;
|
|
49476
49475
|
|
|
@@ -53627,7 +53626,7 @@ $kendo-gantt-treelist-bg: null !default;
|
|
|
53627
53626
|
$kendo-gantt-treelist-text: null !default;
|
|
53628
53627
|
$kendo-gantt-treelist-border: null !default;
|
|
53629
53628
|
|
|
53630
|
-
$kendo-gantt-nonwork-bg: if($kendo-enable-color-system,
|
|
53629
|
+
$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;
|
|
53631
53630
|
$kendo-gantt-nonwork-text: null !default;
|
|
53632
53631
|
$kendo-gantt-nonwork-border: null !default;
|
|
53633
53632
|
|
|
@@ -56211,7 +56210,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56211
56210
|
|
|
56212
56211
|
.k-scheduler-layout td.k-selected,
|
|
56213
56212
|
.k-scheduler-layout .k-scheduler-cell.k-selected {
|
|
56214
|
-
background-color: if($kendo-enable-color-system,
|
|
56213
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
|
|
56215
56214
|
}
|
|
56216
56215
|
|
|
56217
56216
|
.k-scheduler-layout-flex {
|
|
@@ -56328,7 +56327,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56328
56327
|
|
|
56329
56328
|
// Selected
|
|
56330
56329
|
.k-scheduler-content tr.k-selected {
|
|
56331
|
-
background-color: if($kendo-enable-color-system,
|
|
56330
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
|
|
56332
56331
|
}
|
|
56333
56332
|
.k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
|
|
56334
56333
|
.k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
|
|
@@ -57307,7 +57306,7 @@ $kendo-media-player-titlebar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
57307
57306
|
$kendo-media-player-titlebar-bg: null !default;
|
|
57308
57307
|
$kendo-media-player-titlebar-text: $kendo-media-player-bg !default;
|
|
57309
57308
|
$kendo-media-player-titlebar-border: null !default;
|
|
57310
|
-
$kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, (
|
|
57309
|
+
$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;
|
|
57311
57310
|
|
|
57312
57311
|
// #endregion
|
|
57313
57312
|
// #region @import "./_layout.scss"; -> scss/mediaplayer/_layout.scss
|
|
@@ -57445,7 +57444,7 @@ $kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, ( rgba( k-
|
|
|
57445
57444
|
.k-mediaplayer-titlebar {
|
|
57446
57445
|
color: $kendo-media-player-titlebar-text;
|
|
57447
57446
|
background-image: linear-gradient( $kendo-media-player-titlebar-gradient );
|
|
57448
|
-
text-shadow: 0 0 2px if($kendo-enable-color-system,
|
|
57447
|
+
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 ));
|
|
57449
57448
|
}
|
|
57450
57449
|
|
|
57451
57450
|
}
|
|
@@ -57560,13 +57559,13 @@ $kendo-timeline-track-arrow-height: 30px !default;
|
|
|
57560
57559
|
|
|
57561
57560
|
/// The background color of the disabled Timeline track arrow.
|
|
57562
57561
|
/// @group timeline
|
|
57563
|
-
$kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system,
|
|
57562
|
+
$kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 60%, transparent), k-true-mix( $kendo-button-bg, $kendo-body-bg, 65% )) !default;
|
|
57564
57563
|
/// The text color of the disabled Timeline track arrow.
|
|
57565
57564
|
/// @group timeline
|
|
57566
|
-
$kendo-timeline-track-arrow-disabled-text: if($kendo-enable-color-system,
|
|
57565
|
+
$kendo-timeline-track-arrow-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 60%, transparent), k-true-mix( $kendo-button-text, $kendo-body-bg, 65% )) !default;
|
|
57567
57566
|
/// The border color of the disabled Timeline track arrow.
|
|
57568
57567
|
/// @group timeline
|
|
57569
|
-
$kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system,
|
|
57568
|
+
$kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( border ) 15%, transparent), k-true-mix( #000000, $kendo-body-bg, 4.8% )) !default;
|
|
57570
57569
|
|
|
57571
57570
|
/// The size of the Timeline track.
|
|
57572
57571
|
/// @group timeline
|
|
@@ -59687,13 +59686,13 @@ $kendo-chart-pane-title-font-weight: $kendo-font-weight-normal !default;
|
|
|
59687
59686
|
|
|
59688
59687
|
/// The color of the Chart grid lines (major).
|
|
59689
59688
|
/// @group charts
|
|
59690
|
-
$kendo-chart-major-lines:
|
|
59689
|
+
$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;
|
|
59691
59690
|
|
|
59692
59691
|
/// The color of the Chart grid lines (minor).
|
|
59693
59692
|
/// @group charts
|
|
59694
|
-
$kendo-chart-minor-lines:
|
|
59693
|
+
$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;
|
|
59695
59694
|
|
|
59696
|
-
$kendo-chart-inactive: if($kendo-enable-color-system,
|
|
59695
|
+
$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;
|
|
59697
59696
|
$kendo-chart-area-opacity: .6 !default;
|
|
59698
59697
|
$kendo-chart-area-inactive-opacity: .1 !default;
|
|
59699
59698
|
$kendo-chart-line-inactive-opacity: .1 !default;
|
|
@@ -59704,20 +59703,20 @@ $kendo-chart-bg: $kendo-component-bg !default;
|
|
|
59704
59703
|
$kendo-chart-text: $kendo-component-text !default;
|
|
59705
59704
|
$kendo-chart-border: $kendo-component-border !default;
|
|
59706
59705
|
|
|
59707
|
-
$kendo-chart-crosshair-background:
|
|
59706
|
+
$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;
|
|
59708
59707
|
$kendo-chart-crosshair-shared-tooltip-color: $kendo-chart-text !default;
|
|
59709
59708
|
$kendo-chart-crosshair-shared-tooltip-background: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-chart-bg, 1 )) !default;
|
|
59710
|
-
$kendo-chart-crosshair-shared-tooltip-border:
|
|
59709
|
+
$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;
|
|
59711
59710
|
|
|
59712
|
-
$kendo-chart-notes-background:
|
|
59713
|
-
$kendo-chart-notes-border:
|
|
59714
|
-
$kendo-chart-notes-lines:
|
|
59711
|
+
$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;
|
|
59712
|
+
$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;
|
|
59713
|
+
$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;
|
|
59715
59714
|
|
|
59716
|
-
$kendo-chart-error-bars-background:
|
|
59715
|
+
$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;
|
|
59717
59716
|
|
|
59718
59717
|
$kendo-chart-selection-handle-size: 22px !default;
|
|
59719
|
-
$kendo-chart-selection-border-color:
|
|
59720
|
-
$kendo-chart-selection-shadow: inset 0 1px 7px
|
|
59718
|
+
$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;
|
|
59719
|
+
$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;
|
|
59721
59720
|
|
|
59722
59721
|
|
|
59723
59722
|
// TreeMap
|
|
@@ -60479,7 +60478,7 @@ $kendo-map-zoom-control-button-padding-y: $kendo-map-zoom-control-button-padding
|
|
|
60479
60478
|
$kendo-map-attribution-padding-x: $kendo-padding-sm-x !default;
|
|
60480
60479
|
$kendo-map-attribution-padding-y: $kendo-padding-sm-y !default;
|
|
60481
60480
|
$kendo-map-attribution-font-size: ($kendo-map-font-size * .75) !default;
|
|
60482
|
-
$kendo-map-attribution-bg: if($kendo-enable-color-system,
|
|
60481
|
+
$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;
|
|
60483
60482
|
|
|
60484
60483
|
$kendo-map-marker-fill: $kendo-color-primary !default;
|
|
60485
60484
|
|
|
@@ -61171,7 +61170,7 @@ $kendo-signature-lg-padding-y: $kendo-signature-lg-padding-x !default;
|
|
|
61171
61170
|
|
|
61172
61171
|
$kendo-signature-line-width: 1px !default;
|
|
61173
61172
|
$kendo-signature-line-style: dashed !default;
|
|
61174
|
-
$kendo-signature-line-color: if($kendo-enable-color-system,
|
|
61173
|
+
$kendo-signature-line-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( info ) 24%, transparent), rgba( $kendo-color-info, .24 )) !default;
|
|
61175
61174
|
|
|
61176
61175
|
$kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
|
|
61177
61176
|
$kendo-signature-sm-line-size: calc( 100% - 2 * #{$kendo-signature-sm-padding-x} ) !default;
|