@progress/kendo-theme-classic 7.2.1-dev.7 → 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.scss +77 -82
- 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;
|
|
@@ -19402,7 +19397,7 @@ $kendo-button-focus-border: null !default;
|
|
|
19402
19397
|
$kendo-button-focus-gradient: null !default;
|
|
19403
19398
|
/// The base shadow of the focused Button.
|
|
19404
19399
|
/// @group button
|
|
19405
|
-
$kendo-button-focus-shadow: 0 0 4px 0 if($kendo-enable-color-system,
|
|
19400
|
+
$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
19401
|
|
|
19407
19402
|
/// The base background of the disabled Button.
|
|
19408
19403
|
/// @group button
|
|
@@ -19589,7 +19584,7 @@ $kendo-chip-solid-text: $kendo-button-text !default;
|
|
|
19589
19584
|
$kendo-chip-solid-border: $kendo-button-border !default;
|
|
19590
19585
|
/// The base shadow of the solid Chip.
|
|
19591
19586
|
/// @group chip
|
|
19592
|
-
$kendo-chip-solid-shadow: 0 0 0 2px if($kendo-enable-color-system,
|
|
19587
|
+
$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
19588
|
/// The base gradient of the solid Chip.
|
|
19594
19589
|
/// @group chip
|
|
19595
19590
|
$kendo-chip-solid-gradient: $kendo-button-gradient !default;
|
|
@@ -19626,7 +19621,7 @@ $kendo-chip-outline-text: $kendo-chip-solid-text !default;
|
|
|
19626
19621
|
$kendo-chip-outline-border: $kendo-chip-outline-text !default;
|
|
19627
19622
|
/// The base shadow of the outline Chip.
|
|
19628
19623
|
/// @group chip
|
|
19629
|
-
$kendo-chip-outline-shadow: 0 0 0 2px if($kendo-enable-color-system,
|
|
19624
|
+
$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
19625
|
|
|
19631
19626
|
/// The base background color of the hovered outline Chip.
|
|
19632
19627
|
/// @group chip
|
|
@@ -19870,7 +19865,7 @@ $kendo-chip-list-sizes: (
|
|
|
19870
19865
|
|
|
19871
19866
|
&:focus,
|
|
19872
19867
|
&.k-focus {
|
|
19873
|
-
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system,
|
|
19868
|
+
@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
19869
|
}
|
|
19875
19870
|
|
|
19876
19871
|
&:hover,
|
|
@@ -19924,7 +19919,7 @@ $kendo-chip-list-sizes: (
|
|
|
19924
19919
|
|
|
19925
19920
|
&:focus,
|
|
19926
19921
|
&.k-focus {
|
|
19927
|
-
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system,
|
|
19922
|
+
@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
19923
|
}
|
|
19929
19924
|
|
|
19930
19925
|
&:hover,
|
|
@@ -19950,7 +19945,7 @@ $kendo-chip-list-sizes: (
|
|
|
19950
19945
|
|
|
19951
19946
|
&:focus,
|
|
19952
19947
|
&.k-focus {
|
|
19953
|
-
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system,
|
|
19948
|
+
@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
19949
|
}
|
|
19955
19950
|
|
|
19956
19951
|
&:hover,
|
|
@@ -20971,7 +20966,7 @@ $kendo-skeleton-circle-border-radius: 9999px !default;
|
|
|
20971
20966
|
|
|
20972
20967
|
/// The background color of the Skeleton item.
|
|
20973
20968
|
/// @group skeleton
|
|
20974
|
-
$kendo-skeleton-item-bg: if($kendo-enable-color-system,
|
|
20969
|
+
$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
20970
|
/// The background color of the Skeleton wave animation.
|
|
20976
20971
|
/// @group skeleton
|
|
20977
20972
|
$kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
|
|
@@ -21696,7 +21691,7 @@ $_kendo-module-meta: (
|
|
|
21696
21691
|
&:focus,
|
|
21697
21692
|
&.k-focus {
|
|
21698
21693
|
@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,
|
|
21694
|
+
@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
21695
|
}
|
|
21701
21696
|
}
|
|
21702
21697
|
|
|
@@ -21766,9 +21761,9 @@ $_kendo-module-meta: (
|
|
|
21766
21761
|
&.k-focus {
|
|
21767
21762
|
@if $kendo-outline-button-shadow {
|
|
21768
21763
|
@if $name == "base" {
|
|
21769
|
-
@include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system,
|
|
21764
|
+
@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
21765
|
} @else {
|
|
21771
|
-
@include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system,
|
|
21766
|
+
@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
21767
|
}
|
|
21773
21768
|
}
|
|
21774
21769
|
}
|
|
@@ -21851,9 +21846,9 @@ $_kendo-module-meta: (
|
|
|
21851
21846
|
&.k-focus {
|
|
21852
21847
|
@if ( $kendo-link-button-shadow ) {
|
|
21853
21848
|
@if $name == "base" {
|
|
21854
|
-
@include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system,
|
|
21849
|
+
@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
21850
|
} @else {
|
|
21856
|
-
@include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system,
|
|
21851
|
+
@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
21852
|
}
|
|
21858
21853
|
}
|
|
21859
21854
|
}
|
|
@@ -22028,7 +22023,7 @@ $kendo-menu-item-expanded-text: $kendo-component-text !default;
|
|
|
22028
22023
|
$kendo-menu-item-expanded-border: null !default;
|
|
22029
22024
|
$kendo-menu-item-expanded-gradient: null !default;
|
|
22030
22025
|
|
|
22031
|
-
$kendo-menu-item-focus-shadow: inset 0 0 3px 1px if($kendo-enable-color-system,
|
|
22026
|
+
$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
22027
|
|
|
22033
22028
|
$kendo-menu-separator-spacing: k-map-get( $kendo-spacing, 1 ) !default;
|
|
22034
22029
|
|
|
@@ -23540,7 +23535,7 @@ $kendo-input-outline-bg: null !default;
|
|
|
23540
23535
|
$kendo-input-outline-text: null !default;
|
|
23541
23536
|
/// The border color of the outline Input components.
|
|
23542
23537
|
/// @group input
|
|
23543
|
-
$kendo-input-outline-border: if($kendo-enable-color-system,
|
|
23538
|
+
$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
23539
|
|
|
23545
23540
|
/// The background color of the outline hovered Input components.
|
|
23546
23541
|
/// @group input
|
|
@@ -23550,7 +23545,7 @@ $kendo-input-outline-hover-bg: null !default;
|
|
|
23550
23545
|
$kendo-input-outline-hover-text: null !default;
|
|
23551
23546
|
/// The border color of the outline hovered Input components.
|
|
23552
23547
|
/// @group input
|
|
23553
|
-
$kendo-input-outline-hover-border: if($kendo-enable-color-system,
|
|
23548
|
+
$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
23549
|
|
|
23555
23550
|
/// The background color of the outline focused Input components.
|
|
23556
23551
|
/// @group input
|
|
@@ -23734,7 +23729,7 @@ $kendo-picker-outline-bg: null !default;
|
|
|
23734
23729
|
$kendo-picker-outline-text: $kendo-button-text !default;
|
|
23735
23730
|
/// The border color of the outline Picker components.
|
|
23736
23731
|
/// @group picker
|
|
23737
|
-
$kendo-picker-outline-border: if($kendo-enable-color-system,
|
|
23732
|
+
$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
23733
|
|
|
23739
23734
|
/// The background color of the outline hovered Picker components.
|
|
23740
23735
|
/// @group picker
|
|
@@ -23781,13 +23776,13 @@ $kendo-picker-flat-border: $kendo-button-border !default;
|
|
|
23781
23776
|
|
|
23782
23777
|
/// The background color of the flat hovered Picker components.
|
|
23783
23778
|
/// @group picker
|
|
23784
|
-
$kendo-picker-flat-hover-bg: if($kendo-enable-color-system,
|
|
23779
|
+
$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
23780
|
/// The text color of the flat hovered Picker components.
|
|
23786
23781
|
/// @group picker
|
|
23787
23782
|
$kendo-picker-flat-hover-text: null !default;
|
|
23788
23783
|
/// The border color of the flat hovered Picker components.
|
|
23789
23784
|
/// @group picker
|
|
23790
|
-
$kendo-picker-flat-hover-border: if($kendo-enable-color-system,
|
|
23785
|
+
$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
23786
|
|
|
23792
23787
|
/// The background color of the flat focused Picker components.
|
|
23793
23788
|
/// @group picker
|
|
@@ -27525,7 +27520,7 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
|
27525
27520
|
|
|
27526
27521
|
.k-progressbar-indeterminate {
|
|
27527
27522
|
@include fill( $kendo-progressbar-indeterminate-text, $kendo-progressbar-indeterminate-bg, $kendo-progressbar-indeterminate-border );
|
|
27528
|
-
@include striped-gradient( if($kendo-enable-color-system,
|
|
27523
|
+
@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
27524
|
background-size: $kendo-progressbar-height $kendo-progressbar-height;
|
|
27530
27525
|
animation: kendo-progressbar-indeterminate-animation $kendo-progressbar-animation-timing;
|
|
27531
27526
|
}
|
|
@@ -28287,7 +28282,7 @@ $kendo-slider-draghandle-pressed-gradient: null !default;
|
|
|
28287
28282
|
|
|
28288
28283
|
/// The shadow of the focused Slider drag handle.
|
|
28289
28284
|
/// @group slider
|
|
28290
|
-
$kendo-slider-draghandle-focus-shadow: 0 0 4px 0 if($kendo-enable-color-system,
|
|
28285
|
+
$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
28286
|
|
|
28292
28287
|
/// The transition speed of the Slider.
|
|
28293
28288
|
/// @group slider
|
|
@@ -29716,7 +29711,7 @@ $kendo-calendar-sizes: (
|
|
|
29716
29711
|
.k-calendar { // stylelint-disable-line
|
|
29717
29712
|
|
|
29718
29713
|
$kendo-calendar-range-gap: 1px !default;
|
|
29719
|
-
$kendo-calendar-range-bg: if($kendo-enable-color-system,
|
|
29714
|
+
$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
29715
|
$kendo-calendar-range-split-size: 5px !default;
|
|
29721
29716
|
|
|
29722
29717
|
.k-range-start,
|
|
@@ -34373,7 +34368,7 @@ $kendo-switch-off-track-focus-border: null !default;
|
|
|
34373
34368
|
$kendo-switch-off-track-focus-gradient: null !default;
|
|
34374
34369
|
/// The ring around the track when the focused Switch is not checked.
|
|
34375
34370
|
/// @group switch
|
|
34376
|
-
$kendo-switch-off-track-focus-ring: 0 0 3px 1px
|
|
34371
|
+
$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
34372
|
|
|
34378
34373
|
/// The background of the track when the disabled Switch is not checked.
|
|
34379
34374
|
/// @group switch
|
|
@@ -34455,7 +34450,7 @@ $kendo-switch-on-track-focus-border: null !default;
|
|
|
34455
34450
|
$kendo-switch-on-track-focus-gradient: null !default;
|
|
34456
34451
|
/// The ring around the track wen the focused Switch is checked.
|
|
34457
34452
|
/// @group switch
|
|
34458
|
-
$kendo-switch-on-track-focus-ring: 0 0 3px 1px
|
|
34453
|
+
$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
34454
|
|
|
34460
34455
|
/// The background of the track when the disabled Switch is checked.
|
|
34461
34456
|
/// @group switch
|
|
@@ -34729,7 +34724,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
34729
34724
|
$kendo-switch-off-track-focus-gradient
|
|
34730
34725
|
);
|
|
34731
34726
|
@if $kendo-enable-focus-contrast {
|
|
34732
|
-
@include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface
|
|
34727
|
+
@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
34728
|
} @else {
|
|
34734
34729
|
outline: $kendo-switch-off-track-focus-ring;
|
|
34735
34730
|
}
|
|
@@ -34809,7 +34804,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
34809
34804
|
$kendo-switch-on-track-focus-gradient
|
|
34810
34805
|
);
|
|
34811
34806
|
@if $kendo-enable-focus-contrast {
|
|
34812
|
-
@include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface
|
|
34807
|
+
@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
34808
|
} @else {
|
|
34814
34809
|
outline: $kendo-switch-on-track-focus-ring;
|
|
34815
34810
|
}
|
|
@@ -36312,7 +36307,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
36312
36307
|
@if $kendo-enable-focus-contrast {
|
|
36313
36308
|
@include box-shadow( inset 0 0 0 2px currentColor );
|
|
36314
36309
|
} @else {
|
|
36315
|
-
outline: $kendo-fab-outline-style $kendo-fab-outline-width if($kendo-enable-color-system,
|
|
36310
|
+
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
36311
|
}
|
|
36317
36312
|
}
|
|
36318
36313
|
}
|
|
@@ -36333,8 +36328,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
36333
36328
|
.k-disabled.k-fab-solid-#{$name},
|
|
36334
36329
|
.k-fab-solid-#{$name}:disabled {
|
|
36335
36330
|
@include box-shadow($kendo-fab-disabled-shadow);
|
|
36336
|
-
background-color: if($kendo-enable-color-system,
|
|
36337
|
-
color: if($kendo-enable-color-system,
|
|
36331
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 60%, transparent), k-try-tint( $color, 5 ));
|
|
36332
|
+
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
36333
|
opacity: 1;
|
|
36339
36334
|
}
|
|
36340
36335
|
}
|
|
@@ -36373,7 +36368,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
36373
36368
|
.k-fab-item.k-focus .k-fab-item-text,
|
|
36374
36369
|
.k-fab-item.k-focus .k-fab-item-icon {
|
|
36375
36370
|
@if $kendo-enable-focus-contrast {
|
|
36376
|
-
@include box-shadow( inset 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface
|
|
36371
|
+
@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
36372
|
} @else {
|
|
36378
36373
|
outline: $kendo-fab-item-outline-style $kendo-fab-item-outline-width $kendo-fab-item-outline-color;
|
|
36379
36374
|
}
|
|
@@ -36395,8 +36390,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
36395
36390
|
.k-fab-item-text,
|
|
36396
36391
|
.k-fab-item-icon {
|
|
36397
36392
|
@include box-shadow($kendo-fab-item-disabled-shadow);
|
|
36398
|
-
background-color: if($kendo-enable-color-system,
|
|
36399
|
-
color: if($kendo-enable-color-system,
|
|
36393
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 60%, transparent), k-try-tint( $kendo-fab-item-bg, 5 ));
|
|
36394
|
+
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
36395
|
}
|
|
36401
36396
|
}
|
|
36402
36397
|
|
|
@@ -39683,13 +39678,13 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
39683
39678
|
@each $name, $color in $kendo-theme-colors {
|
|
39684
39679
|
.k-bottom-nav-solid-#{$name} {
|
|
39685
39680
|
@include fill(
|
|
39686
|
-
$color: if($kendo-enable-color-system,
|
|
39681
|
+
$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
39682
|
$bg: $color
|
|
39688
39683
|
);
|
|
39689
39684
|
|
|
39690
39685
|
.k-bottom-nav-item.k-focus,
|
|
39691
39686
|
.k-bottom-nav-item:focus {
|
|
39692
|
-
@include fill( $bg: if($kendo-enable-color-system,
|
|
39687
|
+
@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
39688
|
}
|
|
39694
39689
|
|
|
39695
39690
|
.k-bottom-nav-item.k-selected {
|
|
@@ -39713,7 +39708,7 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
39713
39708
|
|
|
39714
39709
|
.k-bottom-nav-item.k-focus,
|
|
39715
39710
|
.k-bottom-nav-item:focus {
|
|
39716
|
-
@include fill( $bg: if($kendo-enable-color-system,
|
|
39711
|
+
@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
39712
|
}
|
|
39718
39713
|
|
|
39719
39714
|
.k-bottom-nav-item.k-selected {
|
|
@@ -40913,7 +40908,7 @@ $kendo-stepper-indicator-hover-border: null !default;
|
|
|
40913
40908
|
$kendo-stepper-indicator-disabled-bg: null !default;
|
|
40914
40909
|
/// The text color of the disabled Stepper indicator.
|
|
40915
40910
|
/// @group stepper
|
|
40916
|
-
$kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system,
|
|
40911
|
+
$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
40912
|
/// The border color of the disabled Stepper indicator.
|
|
40918
40913
|
/// @group stepper
|
|
40919
40914
|
$kendo-stepper-indicator-disabled-border: null !default;
|
|
@@ -40940,7 +40935,7 @@ $kendo-stepper-indicator-done-hover-border: null !default;
|
|
|
40940
40935
|
|
|
40941
40936
|
/// The background color of the Stepper's disabled done indicator.
|
|
40942
40937
|
/// @group stepper
|
|
40943
|
-
$kendo-stepper-indicator-done-disabled-bg: if($kendo-enable-color-system,
|
|
40938
|
+
$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
40939
|
/// The text color of the Stepper's disabled done indicator.
|
|
40945
40940
|
/// @group stepper
|
|
40946
40941
|
$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 +40987,7 @@ $kendo-stepper-label-error-text: $kendo-color-error !default;
|
|
|
40992
40987
|
$kendo-stepper-label-hover-text: null !default;
|
|
40993
40988
|
/// The text color of the disabled Stepper label.
|
|
40994
40989
|
/// @group stepper
|
|
40995
|
-
$kendo-stepper-label-disabled-text: if($kendo-enable-color-system,
|
|
40990
|
+
$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
40991
|
|
|
40997
40992
|
/// The text color of the optional Stepper label.
|
|
40998
40993
|
/// @group stepper
|
|
@@ -44117,7 +44112,7 @@ $kendo-dock-manager-dock-preview-border-style: dashed !default;
|
|
|
44117
44112
|
$kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
|
|
44118
44113
|
/// The background color of the dropping area in the DockManager component.
|
|
44119
44114
|
/// @group dock-manager
|
|
44120
|
-
$kendo-dock-manager-dock-preview-bg: if($kendo-enable-color-system,
|
|
44115
|
+
$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
44116
|
/// The border color of the dropping area in the DockManager component.
|
|
44122
44117
|
/// @group dock-manager
|
|
44123
44118
|
$kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
|
|
@@ -45479,7 +45474,7 @@ $kendo-grid-selection-aggregates-line-height: $kendo-grid-line-height !default;
|
|
|
45479
45474
|
$kendo-grid-selection-aggregates-font-weight: $kendo-font-weight-bold !default;
|
|
45480
45475
|
|
|
45481
45476
|
$kendo-grid-sorted-icon-spacing: calc( #{$kendo-padding-md-x} - 1px ) !default;
|
|
45482
|
-
$kendo-grid-sorted-bg: if($kendo-enable-color-system,
|
|
45477
|
+
$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
45478
|
$kendo-grid-sorting-indicator-text: $kendo-color-primary !default;
|
|
45484
45479
|
$kendo-grid-sorting-index-font-size: $kendo-font-size-sm !default;
|
|
45485
45480
|
$kendo-grid-sorting-index-height: $kendo-icon-size !default;
|
|
@@ -45510,12 +45505,12 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
|
|
|
45510
45505
|
$kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
|
|
45511
45506
|
$kendo-grid-sticky-footer-hover-bg: $kendo-grid-hover-bg !default;
|
|
45512
45507
|
|
|
45513
|
-
$kendo-grid-sticky-selected-bg: if($kendo-enable-color-system,
|
|
45514
|
-
$kendo-grid-sticky-selected-alt-bg: if($kendo-enable-color-system,
|
|
45508
|
+
$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;
|
|
45509
|
+
$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
45510
|
|
|
45516
45511
|
// Must be a solid color
|
|
45517
45512
|
$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,
|
|
45513
|
+
$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
45514
|
|
|
45520
45515
|
$kendo-grid-column-menu-width: 230px !default;
|
|
45521
45516
|
$kendo-grid-column-menu-max-width: 320px !default;
|
|
@@ -45566,7 +45561,7 @@ $kendo-grid-group-footer-second-cell-border: 1px !default;
|
|
|
45566
45561
|
|
|
45567
45562
|
/// Background color of the grid row resize indicator
|
|
45568
45563
|
/// @group grid
|
|
45569
|
-
$kendo-grid-row-resizer-hover-bg: if($kendo-enable-color-system,
|
|
45564
|
+
$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
45565
|
/// Active background color of the grid row resize indicator
|
|
45571
45566
|
/// @group grid
|
|
45572
45567
|
$kendo-grid-row-resizer-active-bg: $kendo-color-primary !default;
|
|
@@ -47618,7 +47613,7 @@ $kendo-listview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
|
47618
47613
|
$kendo-listview-item-selected-text: null !default;
|
|
47619
47614
|
/// The background color of the selected ListView items.
|
|
47620
47615
|
/// @group listview
|
|
47621
|
-
$kendo-listview-item-selected-bg: if($kendo-enable-color-system,
|
|
47616
|
+
$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
47617
|
/// The border color of the selected ListView items.
|
|
47623
47618
|
/// @group listview
|
|
47624
47619
|
$kendo-listview-item-selected-border: null !default;
|
|
@@ -48054,7 +48049,7 @@ $kendo-spreadsheet-view-font-size: $kendo-spreadsheet-font-size !default;
|
|
|
48054
48049
|
|
|
48055
48050
|
/// The background color of the Spreadsheet selection.
|
|
48056
48051
|
/// @group spreadsheet
|
|
48057
|
-
$kendo-spreadsheet-selection-bg: if($kendo-enable-color-system,
|
|
48052
|
+
$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
48053
|
/// The text color of the Spreadsheet selection.
|
|
48059
48054
|
/// @group spreadsheet
|
|
48060
48055
|
$kendo-spreadsheet-selection-text: null !default;
|
|
@@ -48077,7 +48072,7 @@ $kendo-spreadsheet-single-selection-border: $kendo-spreadsheet-bg !default;
|
|
|
48077
48072
|
|
|
48078
48073
|
/// The background color of the Spreadsheet partial selection.
|
|
48079
48074
|
/// @group spreadsheet
|
|
48080
|
-
$kendo-spreadsheet-partial-selection-bg: if($kendo-enable-color-system,
|
|
48075
|
+
$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
48076
|
|
|
48082
48077
|
/// The background color of the Spreadsheet active cell.
|
|
48083
48078
|
/// @group spreadsheet
|
|
@@ -48088,7 +48083,7 @@ $kendo-spreadsheet-active-cell-shadow: inset 0 0 0 1px $kendo-selected-bg !defau
|
|
|
48088
48083
|
|
|
48089
48084
|
/// The background color of the Spreadsheet auto fill.
|
|
48090
48085
|
/// @group spreadsheet
|
|
48091
|
-
$kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system,
|
|
48086
|
+
$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
48087
|
/// The text color of the Spreadsheet auto fill.
|
|
48093
48088
|
/// @group spreadsheet
|
|
48094
48089
|
$kendo-spreadsheet-auto-fill-text: null !default;
|
|
@@ -48218,7 +48213,7 @@ $kendo-spreadsheet-drawing-outline-width: 2px !default;
|
|
|
48218
48213
|
|
|
48219
48214
|
/// The background color of the Spreadsheet drawing anchor.
|
|
48220
48215
|
/// @group spreadsheet
|
|
48221
|
-
$kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system,
|
|
48216
|
+
$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
48217
|
|
|
48223
48218
|
/// The vertical spacing of the Spreadsheet DropZone.
|
|
48224
48219
|
/// @group spreadsheet
|
|
@@ -49470,7 +49465,7 @@ $kendo-pivotgrid-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-h
|
|
|
49470
49465
|
$kendo-pivotgrid-hover-text: null !default;
|
|
49471
49466
|
$kendo-pivotgrid-hover-border: null !default;
|
|
49472
49467
|
|
|
49473
|
-
$kendo-pivotgrid-selected-bg: if($kendo-enable-color-system,
|
|
49468
|
+
$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
49469
|
$kendo-pivotgrid-selected-text: null !default;
|
|
49475
49470
|
$kendo-pivotgrid-selected-border: null !default;
|
|
49476
49471
|
|
|
@@ -53627,7 +53622,7 @@ $kendo-gantt-treelist-bg: null !default;
|
|
|
53627
53622
|
$kendo-gantt-treelist-text: null !default;
|
|
53628
53623
|
$kendo-gantt-treelist-border: null !default;
|
|
53629
53624
|
|
|
53630
|
-
$kendo-gantt-nonwork-bg: if($kendo-enable-color-system,
|
|
53625
|
+
$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
53626
|
$kendo-gantt-nonwork-text: null !default;
|
|
53632
53627
|
$kendo-gantt-nonwork-border: null !default;
|
|
53633
53628
|
|
|
@@ -56211,7 +56206,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56211
56206
|
|
|
56212
56207
|
.k-scheduler-layout td.k-selected,
|
|
56213
56208
|
.k-scheduler-layout .k-scheduler-cell.k-selected {
|
|
56214
|
-
background-color: if($kendo-enable-color-system,
|
|
56209
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
|
|
56215
56210
|
}
|
|
56216
56211
|
|
|
56217
56212
|
.k-scheduler-layout-flex {
|
|
@@ -56328,7 +56323,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
56328
56323
|
|
|
56329
56324
|
// Selected
|
|
56330
56325
|
.k-scheduler-content tr.k-selected {
|
|
56331
|
-
background-color: if($kendo-enable-color-system,
|
|
56326
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
|
|
56332
56327
|
}
|
|
56333
56328
|
.k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
|
|
56334
56329
|
.k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
|
|
@@ -57307,7 +57302,7 @@ $kendo-media-player-titlebar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
57307
57302
|
$kendo-media-player-titlebar-bg: null !default;
|
|
57308
57303
|
$kendo-media-player-titlebar-text: $kendo-media-player-bg !default;
|
|
57309
57304
|
$kendo-media-player-titlebar-border: null !default;
|
|
57310
|
-
$kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, (
|
|
57305
|
+
$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
57306
|
|
|
57312
57307
|
// #endregion
|
|
57313
57308
|
// #region @import "./_layout.scss"; -> scss/mediaplayer/_layout.scss
|
|
@@ -57445,7 +57440,7 @@ $kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, ( rgba( k-
|
|
|
57445
57440
|
.k-mediaplayer-titlebar {
|
|
57446
57441
|
color: $kendo-media-player-titlebar-text;
|
|
57447
57442
|
background-image: linear-gradient( $kendo-media-player-titlebar-gradient );
|
|
57448
|
-
text-shadow: 0 0 2px if($kendo-enable-color-system,
|
|
57443
|
+
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
57444
|
}
|
|
57450
57445
|
|
|
57451
57446
|
}
|
|
@@ -57560,13 +57555,13 @@ $kendo-timeline-track-arrow-height: 30px !default;
|
|
|
57560
57555
|
|
|
57561
57556
|
/// The background color of the disabled Timeline track arrow.
|
|
57562
57557
|
/// @group timeline
|
|
57563
|
-
$kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system,
|
|
57558
|
+
$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
57559
|
/// The text color of the disabled Timeline track arrow.
|
|
57565
57560
|
/// @group timeline
|
|
57566
|
-
$kendo-timeline-track-arrow-disabled-text: if($kendo-enable-color-system,
|
|
57561
|
+
$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
57562
|
/// The border color of the disabled Timeline track arrow.
|
|
57568
57563
|
/// @group timeline
|
|
57569
|
-
$kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system,
|
|
57564
|
+
$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
57565
|
|
|
57571
57566
|
/// The size of the Timeline track.
|
|
57572
57567
|
/// @group timeline
|
|
@@ -59687,13 +59682,13 @@ $kendo-chart-pane-title-font-weight: $kendo-font-weight-normal !default;
|
|
|
59687
59682
|
|
|
59688
59683
|
/// The color of the Chart grid lines (major).
|
|
59689
59684
|
/// @group charts
|
|
59690
|
-
$kendo-chart-major-lines:
|
|
59685
|
+
$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
59686
|
|
|
59692
59687
|
/// The color of the Chart grid lines (minor).
|
|
59693
59688
|
/// @group charts
|
|
59694
|
-
$kendo-chart-minor-lines:
|
|
59689
|
+
$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
59690
|
|
|
59696
|
-
$kendo-chart-inactive: if($kendo-enable-color-system,
|
|
59691
|
+
$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
59692
|
$kendo-chart-area-opacity: .6 !default;
|
|
59698
59693
|
$kendo-chart-area-inactive-opacity: .1 !default;
|
|
59699
59694
|
$kendo-chart-line-inactive-opacity: .1 !default;
|
|
@@ -59704,20 +59699,20 @@ $kendo-chart-bg: $kendo-component-bg !default;
|
|
|
59704
59699
|
$kendo-chart-text: $kendo-component-text !default;
|
|
59705
59700
|
$kendo-chart-border: $kendo-component-border !default;
|
|
59706
59701
|
|
|
59707
|
-
$kendo-chart-crosshair-background:
|
|
59702
|
+
$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
59703
|
$kendo-chart-crosshair-shared-tooltip-color: $kendo-chart-text !default;
|
|
59709
59704
|
$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:
|
|
59705
|
+
$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
59706
|
|
|
59712
|
-
$kendo-chart-notes-background:
|
|
59713
|
-
$kendo-chart-notes-border:
|
|
59714
|
-
$kendo-chart-notes-lines:
|
|
59707
|
+
$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;
|
|
59708
|
+
$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;
|
|
59709
|
+
$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
59710
|
|
|
59716
|
-
$kendo-chart-error-bars-background:
|
|
59711
|
+
$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
59712
|
|
|
59718
59713
|
$kendo-chart-selection-handle-size: 22px !default;
|
|
59719
|
-
$kendo-chart-selection-border-color:
|
|
59720
|
-
$kendo-chart-selection-shadow: inset 0 1px 7px
|
|
59714
|
+
$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;
|
|
59715
|
+
$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
59716
|
|
|
59722
59717
|
|
|
59723
59718
|
// TreeMap
|
|
@@ -60479,7 +60474,7 @@ $kendo-map-zoom-control-button-padding-y: $kendo-map-zoom-control-button-padding
|
|
|
60479
60474
|
$kendo-map-attribution-padding-x: $kendo-padding-sm-x !default;
|
|
60480
60475
|
$kendo-map-attribution-padding-y: $kendo-padding-sm-y !default;
|
|
60481
60476
|
$kendo-map-attribution-font-size: ($kendo-map-font-size * .75) !default;
|
|
60482
|
-
$kendo-map-attribution-bg: if($kendo-enable-color-system,
|
|
60477
|
+
$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
60478
|
|
|
60484
60479
|
$kendo-map-marker-fill: $kendo-color-primary !default;
|
|
60485
60480
|
|
|
@@ -61171,7 +61166,7 @@ $kendo-signature-lg-padding-y: $kendo-signature-lg-padding-x !default;
|
|
|
61171
61166
|
|
|
61172
61167
|
$kendo-signature-line-width: 1px !default;
|
|
61173
61168
|
$kendo-signature-line-style: dashed !default;
|
|
61174
|
-
$kendo-signature-line-color: if($kendo-enable-color-system,
|
|
61169
|
+
$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
61170
|
|
|
61176
61171
|
$kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
|
|
61177
61172
|
$kendo-signature-sm-line-size: calc( 100% - 2 * #{$kendo-signature-sm-padding-x} ) !default;
|