@progress/kendo-theme-default 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 +75 -80
- package/dist/meta/sassdoc-data.json +58 -58
- package/dist/meta/sassdoc-raw-data.json +29 -29
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue-a11y.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +4 -4
- package/scss/bottom-navigation/_theme.scss +3 -3
- package/scss/button/_theme.scss +5 -5
- package/scss/button/_variables.scss +1 -1
- package/scss/calendar/_theme.scss +1 -1
- package/scss/checkbox/_variables.scss +1 -1
- package/scss/chip/_theme.scss +3 -3
- package/scss/chip/_variables.scss +2 -2
- package/scss/dataviz/_variables.scss +11 -11
- package/scss/dock-manager/_variables.scss +1 -1
- package/scss/fab/_theme.scss +6 -6
- 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/_theme.scss +1 -1
- package/scss/mediaplayer/_variables.scss +1 -1
- package/scss/pivotgrid/_variables.scss +1 -1
- package/scss/progressbar/_theme.scss +1 -1
- package/scss/scheduler/_theme.scss +2 -2
- package/scss/signature/_variables.scss +1 -1
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/slider/_variables.scss +1 -1
- package/scss/spreadsheet/_variables.scss +4 -4
- package/scss/stepper/_variables.scss +3 -3
- package/scss/switch/_theme.scss +2 -2
- package/scss/switch/_variables.scss +2 -2
- package/scss/table/_variables.scss +3 -3
- package/scss/timeline/_variables.scss +2 -2
package/dist/all.scss
CHANGED
|
@@ -3814,7 +3814,7 @@ $kendo-palettes: (
|
|
|
3814
3814
|
color-on-subtle: k-color( #{$color}-on-subtle ),
|
|
3815
3815
|
on-color: k-color( on-#{$color} ),
|
|
3816
3816
|
color-on-surface: k-color( #{$color}-on-surface ),
|
|
3817
|
-
on-color-disabled:
|
|
3817
|
+
on-color-disabled: color-mix(in srgb, k-color( on-#{$color} ) 46%, transparent)
|
|
3818
3818
|
);
|
|
3819
3819
|
|
|
3820
3820
|
@return if( k-map-has-key( $map, $name ), k-map-get( $map, $name ), $name );
|
|
@@ -4077,15 +4077,11 @@ $_default-colors: (
|
|
|
4077
4077
|
$kendo-colors: $_default-colors !default;
|
|
4078
4078
|
$kendo-colors: k-map-merge($_default-colors, $kendo-colors);
|
|
4079
4079
|
|
|
4080
|
-
@function k-color($key
|
|
4080
|
+
@function k-color($key) {
|
|
4081
4081
|
$_color: k-map-get($kendo-colors, $key);
|
|
4082
4082
|
|
|
4083
4083
|
@if ($_color) {
|
|
4084
|
-
@
|
|
4085
|
-
@return var(--kendo-color-#{$key}-rgb, k-hex-to-rgb($_color));
|
|
4086
|
-
} @else {
|
|
4087
|
-
@return var(--kendo-color-#{$key}, $_color);
|
|
4088
|
-
}
|
|
4084
|
+
@return var(--kendo-color-#{$key}, $_color);
|
|
4089
4085
|
} @else {
|
|
4090
4086
|
@error "Color Variable \`#{$key}\` does not exists in the color collection.";
|
|
4091
4087
|
}
|
|
@@ -4096,7 +4092,6 @@ $kendo-colors: k-map-merge($_default-colors, $kendo-colors);
|
|
|
4096
4092
|
@each $key, $value in $kendo-colors {
|
|
4097
4093
|
@if($value) {
|
|
4098
4094
|
--kendo-color-#{$key}: #{$value};
|
|
4099
|
-
--kendo-color-#{$key}-rgb: #{k-hex-to-rgb($value)};
|
|
4100
4095
|
}
|
|
4101
4096
|
}
|
|
4102
4097
|
}
|
|
@@ -16257,7 +16252,7 @@ $kendo-checkbox-focus-shadow: 0 0 0 2px rgba(0, 0, 0, .06) !default;
|
|
|
16257
16252
|
$kendo-checkbox-focus-checked-border: null !default;
|
|
16258
16253
|
/// The box shadow of the focused and checked CheckBox.
|
|
16259
16254
|
/// @group checkbox
|
|
16260
|
-
$kendo-checkbox-focus-checked-shadow: 0 0 0 2px if($kendo-enable-color-system,
|
|
16255
|
+
$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;
|
|
16261
16256
|
|
|
16262
16257
|
/// The background color of the disabled CheckBox.
|
|
16263
16258
|
/// @group checkbox
|
|
@@ -17911,7 +17906,7 @@ $kendo-table-group-row-border: $kendo-table-header-border !default;
|
|
|
17911
17906
|
|
|
17912
17907
|
/// Background color of alternating rows in table.
|
|
17913
17908
|
/// @group table
|
|
17914
|
-
$kendo-table-alt-row-bg: if($kendo-enable-color-system,
|
|
17909
|
+
$kendo-table-alt-row-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 5%, transparent), rgba( k-contrast-legacy( $kendo-table-bg ), .04 )) !default;
|
|
17915
17910
|
/// Text color of alternating rows in table.
|
|
17916
17911
|
/// @group table
|
|
17917
17912
|
$kendo-table-alt-row-text: null !default;
|
|
@@ -17922,7 +17917,7 @@ $kendo-table-alt-row-border: null !default;
|
|
|
17922
17917
|
|
|
17923
17918
|
/// Background color of hovered rows in table.
|
|
17924
17919
|
/// @group table
|
|
17925
|
-
$kendo-table-hover-bg: if($kendo-enable-color-system,
|
|
17920
|
+
$kendo-table-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 11%, transparent), k-color-darken($kendo-table-bg, 7%)) !default;
|
|
17926
17921
|
/// Text color of hovered rows in table.
|
|
17927
17922
|
/// @group table
|
|
17928
17923
|
$kendo-table-hover-text: null !default;
|
|
@@ -17947,7 +17942,7 @@ $kendo-table-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
|
17947
17942
|
|
|
17948
17943
|
/// Background color of selected rows in table.
|
|
17949
17944
|
/// @group table
|
|
17950
|
-
$kendo-table-selected-bg: if($kendo-enable-color-system,
|
|
17945
|
+
$kendo-table-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25)) !default;
|
|
17951
17946
|
/// Text color of selected rows in table.
|
|
17952
17947
|
/// @group table
|
|
17953
17948
|
$kendo-table-selected-text: null !default;
|
|
@@ -19210,7 +19205,7 @@ $kendo-button-focus-border: null !default;
|
|
|
19210
19205
|
$kendo-button-focus-gradient: null !default;
|
|
19211
19206
|
/// The base shadow of the focused Button.
|
|
19212
19207
|
/// @group button
|
|
19213
|
-
$kendo-button-focus-shadow: 0 0 0 2px if($kendo-enable-color-system,
|
|
19208
|
+
$kendo-button-focus-shadow: 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), rgba( $kendo-button-border, .08 )) !default;
|
|
19214
19209
|
|
|
19215
19210
|
/// The base background of the disabled Button.
|
|
19216
19211
|
/// @group button
|
|
@@ -19397,7 +19392,7 @@ $kendo-chip-solid-text: $kendo-button-text !default;
|
|
|
19397
19392
|
$kendo-chip-solid-border: $kendo-button-border !default;
|
|
19398
19393
|
/// The base shadow of the solid Chip.
|
|
19399
19394
|
/// @group chip
|
|
19400
|
-
$kendo-chip-solid-shadow: 0 0 0 2px if($kendo-enable-color-system,
|
|
19395
|
+
$kendo-chip-solid-shadow: 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .08 ) )) !default;
|
|
19401
19396
|
/// The base gradient of the solid Chip.
|
|
19402
19397
|
/// @group chip
|
|
19403
19398
|
$kendo-chip-solid-gradient: $kendo-button-gradient !default;
|
|
@@ -19434,7 +19429,7 @@ $kendo-chip-outline-text: $kendo-chip-solid-text !default;
|
|
|
19434
19429
|
$kendo-chip-outline-border: $kendo-chip-outline-text !default;
|
|
19435
19430
|
/// The base shadow of the outline Chip.
|
|
19436
19431
|
/// @group chip
|
|
19437
|
-
$kendo-chip-outline-shadow: 0 0 0 2px if($kendo-enable-color-system,
|
|
19432
|
+
$kendo-chip-outline-shadow: 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .08 ) )) !default;
|
|
19438
19433
|
|
|
19439
19434
|
/// The base background color of the hovered outline Chip.
|
|
19440
19435
|
/// @group chip
|
|
@@ -19669,7 +19664,7 @@ $kendo-chip-list-sizes: (
|
|
|
19669
19664
|
|
|
19670
19665
|
&:focus,
|
|
19671
19666
|
&.k-focus {
|
|
19672
|
-
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system,
|
|
19667
|
+
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 16%, transparent), rgba( $color, .16 )) );
|
|
19673
19668
|
}
|
|
19674
19669
|
|
|
19675
19670
|
&:hover,
|
|
@@ -19723,7 +19718,7 @@ $kendo-chip-list-sizes: (
|
|
|
19723
19718
|
|
|
19724
19719
|
&:focus,
|
|
19725
19720
|
&.k-focus {
|
|
19726
|
-
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system,
|
|
19721
|
+
@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 ))) );
|
|
19727
19722
|
}
|
|
19728
19723
|
|
|
19729
19724
|
&:hover,
|
|
@@ -19749,7 +19744,7 @@ $kendo-chip-list-sizes: (
|
|
|
19749
19744
|
|
|
19750
19745
|
&:focus,
|
|
19751
19746
|
&.k-focus {
|
|
19752
|
-
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system,
|
|
19747
|
+
@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 ))) );
|
|
19753
19748
|
}
|
|
19754
19749
|
|
|
19755
19750
|
&:hover,
|
|
@@ -20729,7 +20724,7 @@ $kendo-skeleton-rect-border-radius: 0 !default;
|
|
|
20729
20724
|
/// @group skeleton
|
|
20730
20725
|
$kendo-skeleton-circle-border-radius: 9999px !default;
|
|
20731
20726
|
|
|
20732
|
-
$kendo-skeleton-item-bg: if($kendo-enable-color-system,
|
|
20727
|
+
$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;
|
|
20733
20728
|
|
|
20734
20729
|
$kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
|
|
20735
20730
|
|
|
@@ -21428,7 +21423,7 @@ $_kendo-module-meta: (
|
|
|
21428
21423
|
&:focus,
|
|
21429
21424
|
&.k-focus {
|
|
21430
21425
|
@if ( $kendo-solid-button-shadow ) {
|
|
21431
|
-
@include focus-indicator( 0 0 $kendo-solid-button-shadow-blur $kendo-solid-button-shadow-spread if($kendo-enable-color-system,
|
|
21426
|
+
@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 );
|
|
21432
21427
|
}
|
|
21433
21428
|
}
|
|
21434
21429
|
|
|
@@ -21498,9 +21493,9 @@ $_kendo-module-meta: (
|
|
|
21498
21493
|
&.k-focus {
|
|
21499
21494
|
@if $kendo-outline-button-shadow {
|
|
21500
21495
|
@if $name == "base" {
|
|
21501
|
-
@include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system,
|
|
21496
|
+
@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 );
|
|
21502
21497
|
} @else {
|
|
21503
|
-
@include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system,
|
|
21498
|
+
@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 );
|
|
21504
21499
|
}
|
|
21505
21500
|
}
|
|
21506
21501
|
}
|
|
@@ -21583,9 +21578,9 @@ $_kendo-module-meta: (
|
|
|
21583
21578
|
&.k-focus {
|
|
21584
21579
|
@if ( $kendo-link-button-shadow ) {
|
|
21585
21580
|
@if $name == "base" {
|
|
21586
|
-
@include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system,
|
|
21581
|
+
@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 );
|
|
21587
21582
|
} @else {
|
|
21588
|
-
@include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system,
|
|
21583
|
+
@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 );
|
|
21589
21584
|
}
|
|
21590
21585
|
}
|
|
21591
21586
|
}
|
|
@@ -23183,7 +23178,7 @@ $kendo-input-focus-text: null !default;
|
|
|
23183
23178
|
$kendo-input-focus-border: $kendo-input-hover-border !default;
|
|
23184
23179
|
/// The shadow of the focused Input components.
|
|
23185
23180
|
/// @group input
|
|
23186
|
-
$kendo-input-focus-shadow: 0 0 0 2px if($kendo-enable-color-system,
|
|
23181
|
+
$kendo-input-focus-shadow: 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), rgba( $kendo-input-focus-border, .08 )) !default;
|
|
23187
23182
|
|
|
23188
23183
|
/// The background color of the selected Input components.
|
|
23189
23184
|
/// @group input
|
|
@@ -23216,7 +23211,7 @@ $kendo-input-outline-bg: null !default;
|
|
|
23216
23211
|
$kendo-input-outline-text: $kendo-input-text !default;
|
|
23217
23212
|
/// The border color of the outline Input components.
|
|
23218
23213
|
/// @group input
|
|
23219
|
-
$kendo-input-outline-border: if($kendo-enable-color-system,
|
|
23214
|
+
$kendo-input-outline-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 50%, transparent), rgba( $kendo-button-text, .5)) !default;
|
|
23220
23215
|
|
|
23221
23216
|
/// The background color of the outline hovered Input components.
|
|
23222
23217
|
/// @group input
|
|
@@ -23226,7 +23221,7 @@ $kendo-input-outline-hover-bg: null !default;
|
|
|
23226
23221
|
$kendo-input-outline-hover-text: null !default;
|
|
23227
23222
|
/// The border color of the outline hovered Input components.
|
|
23228
23223
|
/// @group input
|
|
23229
|
-
$kendo-input-outline-hover-border: if($kendo-enable-color-system,
|
|
23224
|
+
$kendo-input-outline-hover-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 80%, transparent), rgba( $kendo-button-text, .8)) !default;
|
|
23230
23225
|
|
|
23231
23226
|
/// The background color of the outline focused Input components.
|
|
23232
23227
|
/// @group input
|
|
@@ -23414,7 +23409,7 @@ $kendo-picker-outline-bg: null !default;
|
|
|
23414
23409
|
$kendo-picker-outline-text: $kendo-button-text !default;
|
|
23415
23410
|
/// The border color of the outline Picker components.
|
|
23416
23411
|
/// @group picker
|
|
23417
|
-
$kendo-picker-outline-border: if($kendo-enable-color-system,
|
|
23412
|
+
$kendo-picker-outline-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 50%, transparent), rgba( $kendo-picker-outline-text, .5)) !default;
|
|
23418
23413
|
|
|
23419
23414
|
/// The background color of the outline hovered Picker components.
|
|
23420
23415
|
/// @group picker
|
|
@@ -23461,7 +23456,7 @@ $kendo-picker-flat-border: $kendo-button-border !default;
|
|
|
23461
23456
|
|
|
23462
23457
|
/// The background color of the flat hovered Picker components.
|
|
23463
23458
|
/// @group picker
|
|
23464
|
-
$kendo-picker-flat-hover-bg: if($kendo-enable-color-system,
|
|
23459
|
+
$kendo-picker-flat-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 4%, transparent), rgba( $kendo-button-text, .04 )) !default;
|
|
23465
23460
|
/// The text color of the flat hovered Picker components.
|
|
23466
23461
|
/// @group picker
|
|
23467
23462
|
$kendo-picker-flat-hover-text: null !default;
|
|
@@ -27033,7 +27028,7 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
|
27033
27028
|
|
|
27034
27029
|
.k-progressbar-indeterminate {
|
|
27035
27030
|
@include fill( $kendo-progressbar-indeterminate-text, $kendo-progressbar-indeterminate-bg, $kendo-progressbar-indeterminate-border );
|
|
27036
|
-
@include striped-gradient( if($kendo-enable-color-system,
|
|
27031
|
+
@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)) );
|
|
27037
27032
|
background-size: $kendo-progressbar-height $kendo-progressbar-height;
|
|
27038
27033
|
animation: kendo-progressbar-indeterminate-animation $kendo-progressbar-animation-timing;
|
|
27039
27034
|
}
|
|
@@ -27772,7 +27767,7 @@ $kendo-slider-draghandle-pressed-gradient: null !default;
|
|
|
27772
27767
|
|
|
27773
27768
|
/// The shadow of the focused Slider drag handle.
|
|
27774
27769
|
/// @group slider
|
|
27775
|
-
$kendo-slider-draghandle-focus-shadow: 0 0 0 2px if($kendo-enable-color-system,
|
|
27770
|
+
$kendo-slider-draghandle-focus-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;
|
|
27776
27771
|
|
|
27777
27772
|
/// The transition speed of the Slider.
|
|
27778
27773
|
/// @group slider
|
|
@@ -29177,7 +29172,7 @@ $kendo-calendar-sizes: (
|
|
|
29177
29172
|
.k-calendar { // stylelint-disable-line
|
|
29178
29173
|
|
|
29179
29174
|
$kendo-calendar-range-gap: 1px !default;
|
|
29180
|
-
$kendo-calendar-range-bg: if($kendo-enable-color-system,
|
|
29175
|
+
$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 ));
|
|
29181
29176
|
$kendo-calendar-range-split-size: 5px !default;
|
|
29182
29177
|
|
|
29183
29178
|
.k-range-start,
|
|
@@ -33464,7 +33459,7 @@ $kendo-switch-off-track-focus-border: null !default;
|
|
|
33464
33459
|
$kendo-switch-off-track-focus-gradient: null !default;
|
|
33465
33460
|
/// The ring around the track when the focused Switch is not checked.
|
|
33466
33461
|
/// @group switch
|
|
33467
|
-
$kendo-switch-off-track-focus-ring: 2px solid if($kendo-enable-color-system,
|
|
33462
|
+
$kendo-switch-off-track-focus-ring: 2px solid 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;
|
|
33468
33463
|
|
|
33469
33464
|
/// The background of the track when the disabled Switch is not checked.
|
|
33470
33465
|
/// @group switch
|
|
@@ -33546,7 +33541,7 @@ $kendo-switch-on-track-focus-border: null !default;
|
|
|
33546
33541
|
$kendo-switch-on-track-focus-gradient: null !default;
|
|
33547
33542
|
/// The ring around the track when the focused Switch is checked.
|
|
33548
33543
|
/// @group switch
|
|
33549
|
-
$kendo-switch-on-track-focus-ring: 2px solid if($kendo-enable-color-system,
|
|
33544
|
+
$kendo-switch-on-track-focus-ring: 2px solid if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-switch-on-track-border, .25 )) !default;
|
|
33550
33545
|
|
|
33551
33546
|
/// The background of the track when the disabled Switch is checked.
|
|
33552
33547
|
/// @group switch
|
|
@@ -33811,7 +33806,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
33811
33806
|
$kendo-switch-off-track-focus-gradient
|
|
33812
33807
|
);
|
|
33813
33808
|
@if $kendo-enable-focus-contrast {
|
|
33814
|
-
@include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface
|
|
33809
|
+
@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 )) );
|
|
33815
33810
|
} @else {
|
|
33816
33811
|
outline: $kendo-switch-off-track-focus-ring;
|
|
33817
33812
|
}
|
|
@@ -33891,7 +33886,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
33891
33886
|
$kendo-switch-on-track-focus-gradient
|
|
33892
33887
|
);
|
|
33893
33888
|
@if $kendo-enable-focus-contrast {
|
|
33894
|
-
@include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface
|
|
33889
|
+
@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 )) );
|
|
33895
33890
|
} @else {
|
|
33896
33891
|
outline: $kendo-switch-on-track-focus-ring;
|
|
33897
33892
|
}
|
|
@@ -35329,7 +35324,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
35329
35324
|
@if $kendo-enable-focus-contrast {
|
|
35330
35325
|
@include box-shadow( inset 0 0 0 2px currentColor );
|
|
35331
35326
|
} @else {
|
|
35332
|
-
outline: $kendo-fab-outline-style $kendo-fab-outline-width if($kendo-enable-color-system,
|
|
35327
|
+
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 ));
|
|
35333
35328
|
}
|
|
35334
35329
|
}
|
|
35335
35330
|
}
|
|
@@ -35350,8 +35345,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
35350
35345
|
.k-disabled.k-fab-solid-#{$name},
|
|
35351
35346
|
.k-fab-solid-#{$name}:disabled {
|
|
35352
35347
|
@include box-shadow($kendo-fab-disabled-shadow);
|
|
35353
|
-
background-color: if($kendo-enable-color-system,
|
|
35354
|
-
color: if($kendo-enable-color-system,
|
|
35348
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 60%, transparent), k-try-tint( $color, 5 ));
|
|
35349
|
+
color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-#{$name} ) 60%, transparent), k-try-tint( k-contrast-legacy( $color ), 5 ));
|
|
35355
35350
|
opacity: 1;
|
|
35356
35351
|
}
|
|
35357
35352
|
}
|
|
@@ -35390,7 +35385,7 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
35390
35385
|
.k-fab-item.k-focus .k-fab-item-text,
|
|
35391
35386
|
.k-fab-item.k-focus .k-fab-item-icon {
|
|
35392
35387
|
@if $kendo-enable-focus-contrast {
|
|
35393
|
-
@include box-shadow( inset 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface
|
|
35388
|
+
@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 )) );
|
|
35394
35389
|
} @else {
|
|
35395
35390
|
outline: $kendo-fab-item-outline-style $kendo-fab-item-outline-width $kendo-fab-item-outline-color;
|
|
35396
35391
|
}
|
|
@@ -35412,8 +35407,8 @@ $kendo-fab-item-outline-color: rgba(0, 0, 0, .08) !default;
|
|
|
35412
35407
|
.k-fab-item-text,
|
|
35413
35408
|
.k-fab-item-icon {
|
|
35414
35409
|
@include box-shadow($kendo-fab-item-disabled-shadow);
|
|
35415
|
-
background-color: if($kendo-enable-color-system,
|
|
35416
|
-
color: if($kendo-enable-color-system,
|
|
35410
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 60%, transparent), k-try-tint( $kendo-fab-item-bg, 5 ));
|
|
35411
|
+
color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 60%, transparent), k-try-tint( $kendo-fab-item-text, 5 ));
|
|
35417
35412
|
}
|
|
35418
35413
|
}
|
|
35419
35414
|
|
|
@@ -38555,13 +38550,13 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
38555
38550
|
@each $name, $color in $kendo-theme-colors {
|
|
38556
38551
|
.k-bottom-nav-solid-#{$name} {
|
|
38557
38552
|
@include fill(
|
|
38558
|
-
$color: if($kendo-enable-color-system,
|
|
38553
|
+
$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%)),
|
|
38559
38554
|
$bg: $color
|
|
38560
38555
|
);
|
|
38561
38556
|
|
|
38562
38557
|
.k-bottom-nav-item.k-focus,
|
|
38563
38558
|
.k-bottom-nav-item:focus {
|
|
38564
|
-
@include fill( $bg: if($kendo-enable-color-system,
|
|
38559
|
+
@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)));
|
|
38565
38560
|
}
|
|
38566
38561
|
|
|
38567
38562
|
.k-bottom-nav-item.k-selected {
|
|
@@ -38585,7 +38580,7 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
38585
38580
|
|
|
38586
38581
|
.k-bottom-nav-item.k-focus,
|
|
38587
38582
|
.k-bottom-nav-item:focus {
|
|
38588
|
-
@include fill( $bg: if($kendo-enable-color-system,
|
|
38583
|
+
@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)) );
|
|
38589
38584
|
}
|
|
38590
38585
|
|
|
38591
38586
|
.k-bottom-nav-item.k-selected {
|
|
@@ -39742,7 +39737,7 @@ $kendo-stepper-indicator-hover-border: null !default;
|
|
|
39742
39737
|
$kendo-stepper-indicator-disabled-bg: null !default;
|
|
39743
39738
|
/// The text color of the disabled Stepper indicator.
|
|
39744
39739
|
/// @group stepper
|
|
39745
|
-
$kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system,
|
|
39740
|
+
$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;
|
|
39746
39741
|
/// The border color of the disabled Stepper indicator.
|
|
39747
39742
|
/// @group stepper
|
|
39748
39743
|
$kendo-stepper-indicator-disabled-border: null !default;
|
|
@@ -39769,7 +39764,7 @@ $kendo-stepper-indicator-done-hover-border: null !default;
|
|
|
39769
39764
|
|
|
39770
39765
|
/// The background color of the Stepper's disabled done indicator.
|
|
39771
39766
|
/// @group stepper
|
|
39772
|
-
$kendo-stepper-indicator-done-disabled-bg: if($kendo-enable-color-system,
|
|
39767
|
+
$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;
|
|
39773
39768
|
/// The text color of the Stepper's disabled done indicator.
|
|
39774
39769
|
/// @group stepper
|
|
39775
39770
|
$kendo-stepper-indicator-done-disabled-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-legacy( $kendo-stepper-indicator-done-bg )) !default;
|
|
@@ -39821,7 +39816,7 @@ $kendo-stepper-label-error-text: $kendo-color-error !default;
|
|
|
39821
39816
|
$kendo-stepper-label-hover-text: if($kendo-enable-color-system, k-color( on-base ), k-try-shade( $kendo-stepper-text, 2 )) !default;
|
|
39822
39817
|
/// The text color of the disabled Stepper label.
|
|
39823
39818
|
/// @group stepper
|
|
39824
|
-
$kendo-stepper-label-disabled-text: if($kendo-enable-color-system,
|
|
39819
|
+
$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;
|
|
39825
39820
|
|
|
39826
39821
|
/// The text color of the optional Stepper label.
|
|
39827
39822
|
/// @group stepper
|
|
@@ -42838,7 +42833,7 @@ $kendo-dock-manager-dock-preview-border-style: dashed !default;
|
|
|
42838
42833
|
$kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
|
|
42839
42834
|
/// The background color of the dropping area in the DockManager component.
|
|
42840
42835
|
/// @group dock-manager
|
|
42841
|
-
$kendo-dock-manager-dock-preview-bg: if($kendo-enable-color-system,
|
|
42836
|
+
$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;
|
|
42842
42837
|
/// The border color of the dropping area in the DockManager component.
|
|
42843
42838
|
/// @group dock-manager
|
|
42844
42839
|
$kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
|
|
@@ -44163,7 +44158,7 @@ $kendo-grid-grouping-row-bg: $kendo-base-bg !default;
|
|
|
44163
44158
|
$kendo-grid-grouping-row-text: $kendo-grid-text !default;
|
|
44164
44159
|
|
|
44165
44160
|
$kendo-grid-sorted-icon-spacing: calc( #{$kendo-padding-md-x} - 1px ) !default;
|
|
44166
|
-
$kendo-grid-sorted-bg: if($kendo-enable-color-system,
|
|
44161
|
+
$kendo-grid-sorted-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 3%, transparent), rgba( k-contrast-legacy( $kendo-grid-bg ), .02 )) !default;
|
|
44167
44162
|
$kendo-grid-sorting-indicator-text: $kendo-color-primary !default;
|
|
44168
44163
|
$kendo-grid-sorting-index-font-size: $kendo-font-size-sm !default;
|
|
44169
44164
|
$kendo-grid-sorting-index-height: $kendo-icon-size !default;
|
|
@@ -44192,12 +44187,12 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
|
|
|
44192
44187
|
$kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
|
|
44193
44188
|
$kendo-grid-sticky-footer-hover-bg: $kendo-grid-hover-bg !default;
|
|
44194
44189
|
|
|
44195
|
-
$kendo-grid-sticky-selected-bg: if($kendo-enable-color-system,
|
|
44196
|
-
$kendo-grid-sticky-selected-alt-bg: if($kendo-enable-color-system,
|
|
44190
|
+
$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;
|
|
44191
|
+
$kendo-grid-sticky-selected-alt-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 24%, transparent), k-color-shade($kendo-grid-sticky-selected-bg, .4)) !default;
|
|
44197
44192
|
|
|
44198
44193
|
// Must be a solid color
|
|
44199
44194
|
$kendo-grid-sticky-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-color-darken($kendo-grid-bg, 8%)) !default;
|
|
44200
|
-
$kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system,
|
|
44195
|
+
$kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 24%, transparent), k-color-shade($kendo-grid-sticky-selected-bg, .7)) !default;
|
|
44201
44196
|
|
|
44202
44197
|
$kendo-grid-column-menu-width: 230px !default;
|
|
44203
44198
|
$kendo-grid-column-menu-max-width: 320px !default;
|
|
@@ -44248,7 +44243,7 @@ $kendo-grid-group-footer-second-cell-border: 1px !default;
|
|
|
44248
44243
|
|
|
44249
44244
|
/// Background color of the grid row resize indicator
|
|
44250
44245
|
/// @group grid
|
|
44251
|
-
$kendo-grid-row-resizer-hover-bg: if($kendo-enable-color-system,
|
|
44246
|
+
$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;
|
|
44252
44247
|
/// Active background color of the grid row resize indicator
|
|
44253
44248
|
/// @group grid
|
|
44254
44249
|
$kendo-grid-row-resizer-active-bg: $kendo-color-primary !default;
|
|
@@ -46284,7 +46279,7 @@ $kendo-listview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
|
46284
46279
|
$kendo-listview-item-selected-text: null !default;
|
|
46285
46280
|
/// The background color of the selected ListView items.
|
|
46286
46281
|
/// @group listview
|
|
46287
|
-
$kendo-listview-item-selected-bg: if($kendo-enable-color-system,
|
|
46282
|
+
$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;
|
|
46288
46283
|
/// The border color of the selected ListView items.
|
|
46289
46284
|
/// @group listview
|
|
46290
46285
|
$kendo-listview-item-selected-border: null !default;
|
|
@@ -46705,7 +46700,7 @@ $kendo-spreadsheet-view-font-size: $kendo-spreadsheet-font-size !default;
|
|
|
46705
46700
|
|
|
46706
46701
|
/// The background color of the Spreadsheet selection.
|
|
46707
46702
|
/// @group spreadsheet
|
|
46708
|
-
$kendo-spreadsheet-selection-bg: if($kendo-enable-color-system,
|
|
46703
|
+
$kendo-spreadsheet-selection-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25)) !default;
|
|
46709
46704
|
/// The text color of the Spreadsheet selection.
|
|
46710
46705
|
/// @group spreadsheet
|
|
46711
46706
|
$kendo-spreadsheet-selection-text: null !default;
|
|
@@ -46728,7 +46723,7 @@ $kendo-spreadsheet-single-selection-border: $kendo-spreadsheet-bg !default;
|
|
|
46728
46723
|
|
|
46729
46724
|
/// The background color of the Spreadsheet partial selection.
|
|
46730
46725
|
/// @group spreadsheet
|
|
46731
|
-
$kendo-spreadsheet-partial-selection-bg: if($kendo-enable-color-system,
|
|
46726
|
+
$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;
|
|
46732
46727
|
|
|
46733
46728
|
/// The background color of the Spreadsheet active cell.
|
|
46734
46729
|
/// @group spreadsheet
|
|
@@ -46739,7 +46734,7 @@ $kendo-spreadsheet-active-cell-shadow: inset 0 0 0 1px $kendo-selected-bg !defau
|
|
|
46739
46734
|
|
|
46740
46735
|
/// The background color of the Spreadsheet auto fill.
|
|
46741
46736
|
/// @group spreadsheet
|
|
46742
|
-
$kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system,
|
|
46737
|
+
$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;
|
|
46743
46738
|
/// The text color of the Spreadsheet auto fill.
|
|
46744
46739
|
/// @group spreadsheet
|
|
46745
46740
|
$kendo-spreadsheet-auto-fill-text: null !default;
|
|
@@ -46867,7 +46862,7 @@ $kendo-spreadsheet-drawing-outline-style: solid !default;
|
|
|
46867
46862
|
$kendo-spreadsheet-drawing-outline-width: 2px !default;
|
|
46868
46863
|
/// The background color of the Spreadsheet drawing anchor.
|
|
46869
46864
|
/// @group spreadsheet
|
|
46870
|
-
$kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system,
|
|
46865
|
+
$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;
|
|
46871
46866
|
|
|
46872
46867
|
/// The vertical spacing of the Spreadsheet DropZone.
|
|
46873
46868
|
/// @group spreadsheet
|
|
@@ -48104,7 +48099,7 @@ $kendo-pivotgrid-hover-bg: if($kendo-enable-color-system, k-color( base-hover ),
|
|
|
48104
48099
|
$kendo-pivotgrid-hover-text: null !default;
|
|
48105
48100
|
$kendo-pivotgrid-hover-border: null !default;
|
|
48106
48101
|
|
|
48107
|
-
$kendo-pivotgrid-selected-bg: if($kendo-enable-color-system,
|
|
48102
|
+
$kendo-pivotgrid-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25)) !default;
|
|
48108
48103
|
$kendo-pivotgrid-selected-text: null !default;
|
|
48109
48104
|
$kendo-pivotgrid-selected-border: null !default;
|
|
48110
48105
|
|
|
@@ -52154,7 +52149,7 @@ $kendo-gantt-treelist-bg: null !default;
|
|
|
52154
52149
|
$kendo-gantt-treelist-text: null !default;
|
|
52155
52150
|
$kendo-gantt-treelist-border: null !default;
|
|
52156
52151
|
|
|
52157
|
-
$kendo-gantt-nonwork-bg: if($kendo-enable-color-system,
|
|
52152
|
+
$kendo-gantt-nonwork-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 3%, transparent), rgba( k-contrast-legacy( $kendo-gantt-bg ), .025 )) !default;
|
|
52158
52153
|
$kendo-gantt-nonwork-text: null !default;
|
|
52159
52154
|
$kendo-gantt-nonwork-border: null !default;
|
|
52160
52155
|
|
|
@@ -54711,7 +54706,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
54711
54706
|
|
|
54712
54707
|
.k-scheduler-layout td.k-selected,
|
|
54713
54708
|
.k-scheduler-layout .k-scheduler-cell.k-selected {
|
|
54714
|
-
background-color: if($kendo-enable-color-system,
|
|
54709
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
|
|
54715
54710
|
}
|
|
54716
54711
|
|
|
54717
54712
|
.k-scheduler-layout-flex {
|
|
@@ -54828,7 +54823,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
54828
54823
|
|
|
54829
54824
|
// Selected
|
|
54830
54825
|
.k-scheduler-content tr.k-selected {
|
|
54831
|
-
background-color: if($kendo-enable-color-system,
|
|
54826
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
|
|
54832
54827
|
}
|
|
54833
54828
|
.k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
|
|
54834
54829
|
.k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
|
|
@@ -55784,7 +55779,7 @@ $kendo-media-player-titlebar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
55784
55779
|
$kendo-media-player-titlebar-bg: null !default;
|
|
55785
55780
|
$kendo-media-player-titlebar-text: $kendo-media-player-bg !default;
|
|
55786
55781
|
$kendo-media-player-titlebar-border: null !default;
|
|
55787
|
-
$kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, (
|
|
55782
|
+
$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;
|
|
55788
55783
|
|
|
55789
55784
|
// #endregion
|
|
55790
55785
|
// #region @import "./_layout.scss"; -> scss/mediaplayer/_layout.scss
|
|
@@ -55913,7 +55908,7 @@ $kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, ( rgba( k-
|
|
|
55913
55908
|
.k-mediaplayer-titlebar {
|
|
55914
55909
|
color: $kendo-media-player-titlebar-text;
|
|
55915
55910
|
background-image: linear-gradient( $kendo-media-player-titlebar-gradient );
|
|
55916
|
-
text-shadow: 0 0 2px if($kendo-enable-color-system,
|
|
55911
|
+
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 ));
|
|
55917
55912
|
}
|
|
55918
55913
|
|
|
55919
55914
|
}
|
|
@@ -56021,10 +56016,10 @@ $kendo-timeline-track-arrow-height: 30px !default;
|
|
|
56021
56016
|
|
|
56022
56017
|
/// The background color of the disabled Timeline track arrow.
|
|
56023
56018
|
/// @group timeline
|
|
56024
|
-
$kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system,
|
|
56019
|
+
$kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( base-subtle ) 60%, transparent), k-true-mix($kendo-button-bg, $kendo-body-bg, 65%)) !default;
|
|
56025
56020
|
/// The text color of the disabled Timeline track arrow.
|
|
56026
56021
|
/// @group timeline
|
|
56027
|
-
$kendo-timeline-track-arrow-disabled-text: if($kendo-enable-color-system,
|
|
56022
|
+
$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;
|
|
56028
56023
|
/// The border color of the disabled Timeline track arrow.
|
|
56029
56024
|
/// @group timeline
|
|
56030
56025
|
$kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, k-color( border ), k-true-mix(#000000, $kendo-body-bg, 4.8%)) !default;
|
|
@@ -58068,13 +58063,13 @@ $kendo-chart-pane-title-font-weight: $kendo-font-weight-normal !default;
|
|
|
58068
58063
|
|
|
58069
58064
|
/// The color of the Chart grid lines (major).
|
|
58070
58065
|
/// @group charts
|
|
58071
|
-
$kendo-chart-major-lines:
|
|
58066
|
+
$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;
|
|
58072
58067
|
|
|
58073
58068
|
/// The color of the Chart grid lines (minor).
|
|
58074
58069
|
/// @group charts
|
|
58075
|
-
$kendo-chart-minor-lines:
|
|
58070
|
+
$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;
|
|
58076
58071
|
|
|
58077
|
-
$kendo-chart-inactive: if($kendo-enable-color-system,
|
|
58072
|
+
$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;
|
|
58078
58073
|
$kendo-chart-area-opacity: .6 !default;
|
|
58079
58074
|
$kendo-chart-area-inactive-opacity: .1 !default;
|
|
58080
58075
|
$kendo-chart-line-inactive-opacity: .3 !default;
|
|
@@ -58085,20 +58080,20 @@ $kendo-chart-bg: $kendo-component-bg !default;
|
|
|
58085
58080
|
$kendo-chart-text: $kendo-component-text !default;
|
|
58086
58081
|
$kendo-chart-border: $kendo-component-border !default;
|
|
58087
58082
|
|
|
58088
|
-
$kendo-chart-crosshair-background:
|
|
58083
|
+
$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;
|
|
58089
58084
|
$kendo-chart-crosshair-shared-tooltip-color: $kendo-chart-text !default;
|
|
58090
58085
|
$kendo-chart-crosshair-shared-tooltip-background: if($kendo-enable-color-system, k-color( base ), k-try-shade( $kendo-chart-bg, 1 )) !default;
|
|
58091
|
-
$kendo-chart-crosshair-shared-tooltip-border:
|
|
58086
|
+
$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;
|
|
58092
58087
|
|
|
58093
|
-
$kendo-chart-notes-background:
|
|
58094
|
-
$kendo-chart-notes-border:
|
|
58095
|
-
$kendo-chart-notes-lines:
|
|
58088
|
+
$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;
|
|
58089
|
+
$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;
|
|
58090
|
+
$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;
|
|
58096
58091
|
|
|
58097
|
-
$kendo-chart-error-bars-background:
|
|
58092
|
+
$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;
|
|
58098
58093
|
|
|
58099
58094
|
$kendo-chart-selection-handle-size: 22px !default;
|
|
58100
|
-
$kendo-chart-selection-border-color:
|
|
58101
|
-
$kendo-chart-selection-shadow: inset 0 1px 7px
|
|
58095
|
+
$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;
|
|
58096
|
+
$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;
|
|
58102
58097
|
|
|
58103
58098
|
|
|
58104
58099
|
// TreeMap
|
|
@@ -58844,7 +58839,7 @@ $kendo-map-zoom-control-button-padding-y: $kendo-map-zoom-control-button-padding
|
|
|
58844
58839
|
$kendo-map-attribution-padding-x: $kendo-padding-sm-x !default;
|
|
58845
58840
|
$kendo-map-attribution-padding-y: $kendo-padding-sm-y !default;
|
|
58846
58841
|
$kendo-map-attribution-font-size: ($kendo-map-font-size * .75) !default;
|
|
58847
|
-
$kendo-map-attribution-bg: if($kendo-enable-color-system,
|
|
58842
|
+
$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;
|
|
58848
58843
|
|
|
58849
58844
|
$kendo-map-marker-fill: $kendo-color-primary !default;
|
|
58850
58845
|
|
|
@@ -59502,7 +59497,7 @@ $kendo-signature-lg-padding-y: $kendo-signature-lg-padding-x !default;
|
|
|
59502
59497
|
|
|
59503
59498
|
$kendo-signature-line-width: 1px !default;
|
|
59504
59499
|
$kendo-signature-line-style: dashed !default;
|
|
59505
|
-
$kendo-signature-line-color: if($kendo-enable-color-system,
|
|
59500
|
+
$kendo-signature-line-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( info ) 24%, transparent), rgba( $kendo-color-info, .24 )) !default;
|
|
59506
59501
|
|
|
59507
59502
|
$kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
|
|
59508
59503
|
$kendo-signature-sm-line-size: calc( 100% - 2 * #{$kendo-signature-sm-padding-x} ) !default;
|