@progress/kendo-theme-bootstrap 7.2.1-dev.6 → 7.2.1-dev.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +0 -96
- package/dist/all.scss +95 -209
- package/dist/meta/sassdoc-data.json +438 -546
- package/dist/meta/sassdoc-raw-data.json +219 -269
- package/dist/meta/variables.json +0 -8
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +5 -5
- package/scss/breadcrumb/_variables.scss +1 -1
- package/scss/button/_variables.scss +1 -1
- package/scss/calendar/_variables.scss +1 -1
- package/scss/checkbox/_variables.scss +1 -1
- package/scss/core/color-system/_swatch-legacy.scss +1 -1
- package/scss/dataviz/_variables.scss +11 -11
- package/scss/dock-manager/_variables.scss +1 -1
- package/scss/fab/_theme.scss +6 -6
- package/scss/filter/_variables.scss +1 -1
- package/scss/gantt/_variables.scss +1 -1
- package/scss/grid/_variables.scss +6 -6
- package/scss/input/_variables.scss +3 -10
- package/scss/list/_variables.scss +1 -1
- package/scss/listview/_variables.scss +2 -2
- package/scss/map/_variables.scss +1 -1
- package/scss/mediaplayer/_variables.scss +1 -1
- package/scss/menu/_variables.scss +6 -6
- package/scss/pager/_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/taskboard/_variables.scss +1 -1
- package/scss/timeline/_variables.scss +3 -3
- package/scss/toolbar/_variables.scss +1 -1
- package/scss/treeview/_variables.scss +1 -1
package/dist/all.scss
CHANGED
|
@@ -5634,7 +5634,7 @@ $kendo-palettes: (
|
|
|
5634
5634
|
color-on-subtle: k-color( #{$color}-on-subtle ),
|
|
5635
5635
|
on-color: k-color( on-#{$color} ),
|
|
5636
5636
|
color-on-surface: k-color( #{$color}-on-surface ),
|
|
5637
|
-
on-color-disabled:
|
|
5637
|
+
on-color-disabled: color-mix(in srgb, k-color( on-#{$color} ) 46%, transparent)
|
|
5638
5638
|
);
|
|
5639
5639
|
|
|
5640
5640
|
@return if( k-map-has-key( $map, $name ), k-map-get( $map, $name ), $name );
|
|
@@ -5897,15 +5897,11 @@ $_default-colors: (
|
|
|
5897
5897
|
$kendo-colors: $_default-colors !default;
|
|
5898
5898
|
$kendo-colors: k-map-merge($_default-colors, $kendo-colors);
|
|
5899
5899
|
|
|
5900
|
-
@function k-color($key
|
|
5900
|
+
@function k-color($key) {
|
|
5901
5901
|
$_color: k-map-get($kendo-colors, $key);
|
|
5902
5902
|
|
|
5903
5903
|
@if ($_color) {
|
|
5904
|
-
@
|
|
5905
|
-
@return var(--kendo-color-#{$key}-rgb, k-hex-to-rgb($_color));
|
|
5906
|
-
} @else {
|
|
5907
|
-
@return var(--kendo-color-#{$key}, $_color);
|
|
5908
|
-
}
|
|
5904
|
+
@return var(--kendo-color-#{$key}, $_color);
|
|
5909
5905
|
} @else {
|
|
5910
5906
|
@error "Color Variable \`#{$key}\` does not exists in the color collection.";
|
|
5911
5907
|
}
|
|
@@ -5916,7 +5912,6 @@ $kendo-colors: k-map-merge($_default-colors, $kendo-colors);
|
|
|
5916
5912
|
@each $key, $value in $kendo-colors {
|
|
5917
5913
|
@if($value) {
|
|
5918
5914
|
--kendo-color-#{$key}: #{$value};
|
|
5919
|
-
--kendo-color-#{$key}-rgb: #{k-hex-to-rgb($value)};
|
|
5920
5915
|
}
|
|
5921
5916
|
}
|
|
5922
5917
|
}
|
|
@@ -7638,7 +7633,7 @@ $kendo-zindex-loading: 100 !default;
|
|
|
7638
7633
|
$kendo-invalid-bg: null;
|
|
7639
7634
|
$kendo-invalid-text: $kendo-color-error;
|
|
7640
7635
|
$kendo-invalid-border: $kendo-color-error;
|
|
7641
|
-
$kendo-invalid-shadow: 0 0 0 .25rem
|
|
7636
|
+
$kendo-invalid-shadow: 0 0 0 .25rem color-mix(in srgb, k-color( error ) 25%, transparent);
|
|
7642
7637
|
|
|
7643
7638
|
$kendo-theme-colors: (
|
|
7644
7639
|
"primary": $kendo-color-primary,
|
|
@@ -18021,7 +18016,7 @@ $kendo-list-item-focus-bg: null !default;
|
|
|
18021
18016
|
$kendo-list-item-focus-text: null !default;
|
|
18022
18017
|
/// The box shadow of the focused List items.
|
|
18023
18018
|
/// @group list
|
|
18024
|
-
$kendo-list-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system,
|
|
18019
|
+
$kendo-list-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 15%, transparent), rgba( $kendo-list-text, .15 )) !default;
|
|
18025
18020
|
|
|
18026
18021
|
/// The background color of the selected List items.
|
|
18027
18022
|
/// @group list
|
|
@@ -18154,7 +18149,7 @@ $kendo-checkbox-indeterminate-border: $kendo-checkbox-checked-border !default;
|
|
|
18154
18149
|
$kendo-checkbox-focus-border: if($kendo-enable-color-system, k-color( primary-emphasis ), k-try-tint( $kendo-color-primary, 50% )) !default;
|
|
18155
18150
|
/// The box shadow of the focused CheckBox.
|
|
18156
18151
|
/// @group checkbox
|
|
18157
|
-
$kendo-checkbox-focus-shadow: 0 0 0 .25rem if($kendo-enable-color-system,
|
|
18152
|
+
$kendo-checkbox-focus-shadow: 0 0 0 .25rem if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
|
|
18158
18153
|
/// The border color of the focused and checked CheckBox.
|
|
18159
18154
|
/// @group checkbox
|
|
18160
18155
|
$kendo-checkbox-focus-checked-border: $kendo-checkbox-checked-border !default;
|
|
@@ -19930,7 +19925,7 @@ $kendo-table-group-row-border: $kendo-table-header-border !default;
|
|
|
19930
19925
|
|
|
19931
19926
|
/// Background color of alternating rows in table.
|
|
19932
19927
|
/// @group table
|
|
19933
|
-
$kendo-table-alt-row-bg: if($kendo-enable-color-system,
|
|
19928
|
+
$kendo-table-alt-row-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 5%, transparent), rgba( k-contrast-color( $kendo-table-bg ), .04 )) !default;
|
|
19934
19929
|
/// Text color of alternating rows in table.
|
|
19935
19930
|
/// @group table
|
|
19936
19931
|
$kendo-table-alt-row-text: null !default;
|
|
@@ -19941,7 +19936,7 @@ $kendo-table-alt-row-border: null !default;
|
|
|
19941
19936
|
|
|
19942
19937
|
/// Background color of hovered rows in table.
|
|
19943
19938
|
/// @group table
|
|
19944
|
-
$kendo-table-hover-bg: if($kendo-enable-color-system,
|
|
19939
|
+
$kendo-table-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 9%, transparent), rgba( k-contrast-color( $kendo-table-bg ), .08 )) !default;
|
|
19945
19940
|
/// Text color of hovered rows in table.
|
|
19946
19941
|
/// @group table
|
|
19947
19942
|
$kendo-table-hover-text: null !default;
|
|
@@ -19966,7 +19961,7 @@ $kendo-table-focus-shadow: inset 0 0 0 2px rgba( $kendo-color-black, .08) !defau
|
|
|
19966
19961
|
|
|
19967
19962
|
/// Background color of selected rows in table.
|
|
19968
19963
|
/// @group table
|
|
19969
|
-
$kendo-table-selected-bg: if($kendo-enable-color-system,
|
|
19964
|
+
$kendo-table-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
19970
19965
|
/// Text color of selected rows in table.
|
|
19971
19966
|
/// @group table
|
|
19972
19967
|
$kendo-table-selected-text: $kendo-table-text !default;
|
|
@@ -21293,7 +21288,7 @@ $kendo-button-focus-border: if($kendo-enable-color-system, k-color( base-active
|
|
|
21293
21288
|
$kendo-button-focus-gradient: null !default;
|
|
21294
21289
|
/// The base shadow of the focused Button.
|
|
21295
21290
|
/// @group button
|
|
21296
|
-
$kendo-button-focus-shadow: 0 0 0 .25rem if($kendo-enable-color-system,
|
|
21291
|
+
$kendo-button-focus-shadow: 0 0 0 .25rem if($kendo-enable-color-system, color-mix(in srgb, k-color( border ) 50%, transparent), rgba( $kendo-button-border, .5 )) !default;
|
|
21297
21292
|
|
|
21298
21293
|
/// The base background of the disabled Button.
|
|
21299
21294
|
/// @group button
|
|
@@ -21761,7 +21756,7 @@ $kendo-chip-list-sizes: (
|
|
|
21761
21756
|
|
|
21762
21757
|
&:focus,
|
|
21763
21758
|
&.k-focus {
|
|
21764
|
-
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system,
|
|
21759
|
+
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 16%, transparent), rgba( $color, .16 )) );
|
|
21765
21760
|
}
|
|
21766
21761
|
|
|
21767
21762
|
&:hover,
|
|
@@ -21815,7 +21810,7 @@ $kendo-chip-list-sizes: (
|
|
|
21815
21810
|
|
|
21816
21811
|
&:focus,
|
|
21817
21812
|
&.k-focus {
|
|
21818
|
-
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system,
|
|
21813
|
+
@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 ))) );
|
|
21819
21814
|
}
|
|
21820
21815
|
|
|
21821
21816
|
&:hover,
|
|
@@ -21841,7 +21836,7 @@ $kendo-chip-list-sizes: (
|
|
|
21841
21836
|
|
|
21842
21837
|
&:focus,
|
|
21843
21838
|
&.k-focus {
|
|
21844
|
-
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system,
|
|
21839
|
+
@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 ))) );
|
|
21845
21840
|
}
|
|
21846
21841
|
|
|
21847
21842
|
&:hover,
|
|
@@ -22905,7 +22900,7 @@ $kendo-skeleton-circle-border-radius: 9999px !default;
|
|
|
22905
22900
|
|
|
22906
22901
|
/// The background color of the Skeleton item.
|
|
22907
22902
|
/// @group skeleton
|
|
22908
|
-
$kendo-skeleton-item-bg: if($kendo-enable-color-system,
|
|
22903
|
+
$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;
|
|
22909
22904
|
/// The background color of the Skeleton wave animation.
|
|
22910
22905
|
/// @group skeleton
|
|
22911
22906
|
$kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
|
|
@@ -23630,7 +23625,7 @@ $_kendo-module-meta: (
|
|
|
23630
23625
|
&:focus,
|
|
23631
23626
|
&.k-focus {
|
|
23632
23627
|
@if ( $kendo-solid-button-shadow ) {
|
|
23633
|
-
@include focus-indicator( 0 0 $kendo-solid-button-shadow-blur $kendo-solid-button-shadow-spread if($kendo-enable-color-system,
|
|
23628
|
+
@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 );
|
|
23634
23629
|
}
|
|
23635
23630
|
}
|
|
23636
23631
|
|
|
@@ -23700,9 +23695,9 @@ $_kendo-module-meta: (
|
|
|
23700
23695
|
&.k-focus {
|
|
23701
23696
|
@if $kendo-outline-button-shadow {
|
|
23702
23697
|
@if $name == "base" {
|
|
23703
|
-
@include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system,
|
|
23698
|
+
@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 );
|
|
23704
23699
|
} @else {
|
|
23705
|
-
@include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system,
|
|
23700
|
+
@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 );
|
|
23706
23701
|
}
|
|
23707
23702
|
}
|
|
23708
23703
|
}
|
|
@@ -23785,9 +23780,9 @@ $_kendo-module-meta: (
|
|
|
23785
23780
|
&.k-focus {
|
|
23786
23781
|
@if ( $kendo-link-button-shadow ) {
|
|
23787
23782
|
@if $name == "base" {
|
|
23788
|
-
@include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system,
|
|
23783
|
+
@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 );
|
|
23789
23784
|
} @else {
|
|
23790
|
-
@include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system,
|
|
23785
|
+
@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 );
|
|
23791
23786
|
}
|
|
23792
23787
|
}
|
|
23793
23788
|
}
|
|
@@ -23945,31 +23940,31 @@ $kendo-menu-item-spacing: 0 !default;
|
|
|
23945
23940
|
$kendo-menu-item-icon-spacing: $kendo-icon-spacing !default;
|
|
23946
23941
|
|
|
23947
23942
|
$kendo-menu-item-bg: null !default;
|
|
23948
|
-
$kendo-menu-item-text: if($kendo-enable-color-system,
|
|
23943
|
+
$kendo-menu-item-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-menu-text, .5 )) !default;
|
|
23949
23944
|
$kendo-menu-item-border: null !default;
|
|
23950
23945
|
$kendo-menu-item-gradient: null !default;
|
|
23951
23946
|
|
|
23952
23947
|
$kendo-menu-item-hover-bg: null !default;
|
|
23953
|
-
$kendo-menu-item-hover-text: if($kendo-enable-color-system,
|
|
23948
|
+
$kendo-menu-item-hover-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 70%, transparent), rgba( $kendo-menu-text, .7 )) !default;
|
|
23954
23949
|
$kendo-menu-item-hover-border: null !default;
|
|
23955
23950
|
$kendo-menu-item-hover-gradient: null !default;
|
|
23956
23951
|
|
|
23957
23952
|
$kendo-menu-item-expanded-bg: null !default;
|
|
23958
|
-
$kendo-menu-item-expanded-text: if($kendo-enable-color-system,
|
|
23953
|
+
$kendo-menu-item-expanded-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 90%, transparent), rgba( $kendo-menu-text, .9 )) !default;
|
|
23959
23954
|
$kendo-menu-item-expanded-border: null !default;
|
|
23960
23955
|
$kendo-menu-item-expanded-gradient: null !default;
|
|
23961
23956
|
|
|
23962
|
-
$kendo-menu-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system,
|
|
23957
|
+
$kendo-menu-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 15%, transparent), rgba( $kendo-menu-text, .15 )) !default;
|
|
23963
23958
|
|
|
23964
23959
|
$kendo-menu-separator-spacing: k-map-get( $kendo-spacing, 1 ) !default;
|
|
23965
23960
|
|
|
23966
23961
|
$kendo-menu-scroll-button-bg: $kendo-menu-bg !default;
|
|
23967
|
-
$kendo-menu-scroll-button-text: if($kendo-enable-color-system,
|
|
23962
|
+
$kendo-menu-scroll-button-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-menu-text, .5 )) !default;
|
|
23968
23963
|
$kendo-menu-scroll-button-border: $kendo-menu-border !default;
|
|
23969
23964
|
$kendo-menu-scroll-button-gradient: null !default;
|
|
23970
23965
|
|
|
23971
23966
|
$kendo-menu-scroll-button-hover-bg: null !default;
|
|
23972
|
-
$kendo-menu-scroll-button-hover-text: if($kendo-enable-color-system,
|
|
23967
|
+
$kendo-menu-scroll-button-hover-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 70%, transparent), rgba( $kendo-menu-text, .7 )) !default;
|
|
23973
23968
|
$kendo-menu-scroll-button-hover-border: null !default;
|
|
23974
23969
|
$kendo-menu-scroll-button-hover-gradient: null !default;
|
|
23975
23970
|
|
|
@@ -24732,7 +24727,7 @@ $kendo-toolbar-input-width: 10em !default;
|
|
|
24732
24727
|
|
|
24733
24728
|
/// The box shadow of the focused Toolbar item.
|
|
24734
24729
|
/// @group toolbar
|
|
24735
|
-
$kendo-toolbar-item-shadow: 0 0 0 .25rem if($kendo-enable-color-system,
|
|
24730
|
+
$kendo-toolbar-item-shadow: 0 0 0 .25rem if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
|
|
24736
24731
|
|
|
24737
24732
|
/// Border width of the flat Toolbar.
|
|
24738
24733
|
/// @group toolbar
|
|
@@ -25502,7 +25497,7 @@ $kendo-input-outline-bg: null !default;
|
|
|
25502
25497
|
$kendo-input-outline-text: $kendo-base-text !default;
|
|
25503
25498
|
/// The border color of the outline Input components.
|
|
25504
25499
|
/// @group input
|
|
25505
|
-
$kendo-input-outline-border: if($kendo-enable-color-system,
|
|
25500
|
+
$kendo-input-outline-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-base-text, .5 )) !default;
|
|
25506
25501
|
|
|
25507
25502
|
/// The background color of the outline hovered Input components.
|
|
25508
25503
|
/// @group input
|
|
@@ -25621,13 +25616,6 @@ $kendo-input-invalid-border: $kendo-invalid-border !default;
|
|
|
25621
25616
|
/// @group input
|
|
25622
25617
|
$kendo-input-invalid-shadow: $kendo-invalid-shadow !default;
|
|
25623
25618
|
|
|
25624
|
-
/// The border color of the valid Input components.
|
|
25625
|
-
/// @group input
|
|
25626
|
-
$kendo-input-valid-border: $kendo-valid-border !default;
|
|
25627
|
-
/// The shadow of the valid Input components.
|
|
25628
|
-
/// @group input
|
|
25629
|
-
$kendo-input-valid-shadow: $kendo-valid-shadow !default;
|
|
25630
|
-
|
|
25631
25619
|
/// The background color of the Picker components.
|
|
25632
25620
|
/// @group picker
|
|
25633
25621
|
$kendo-picker-bg: $kendo-button-bg !default;
|
|
@@ -25700,7 +25688,7 @@ $kendo-picker-outline-bg: null !default;
|
|
|
25700
25688
|
$kendo-picker-outline-text: $kendo-button-text !default;
|
|
25701
25689
|
/// The border color of the outline Picker components.
|
|
25702
25690
|
/// @group picker
|
|
25703
|
-
$kendo-picker-outline-border: if($kendo-enable-color-system,
|
|
25691
|
+
$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;
|
|
25704
25692
|
|
|
25705
25693
|
/// The background color of the outline hovered Picker components.
|
|
25706
25694
|
/// @group picker
|
|
@@ -25747,7 +25735,7 @@ $kendo-picker-flat-border: $kendo-button-border !default;
|
|
|
25747
25735
|
|
|
25748
25736
|
/// The background color of the flat hovered Picker components.
|
|
25749
25737
|
/// @group picker
|
|
25750
|
-
$kendo-picker-flat-hover-bg: if($kendo-enable-color-system,
|
|
25738
|
+
$kendo-picker-flat-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), rgba( $kendo-button-text, .08 )) !default;
|
|
25751
25739
|
/// The text color of the flat hovered Picker components.
|
|
25752
25740
|
/// @group picker
|
|
25753
25741
|
$kendo-picker-flat-hover-text: null !default;
|
|
@@ -27694,23 +27682,6 @@ $_kendo-module-meta: (
|
|
|
27694
27682
|
}
|
|
27695
27683
|
}
|
|
27696
27684
|
|
|
27697
|
-
// Valid
|
|
27698
|
-
&.k-valid {
|
|
27699
|
-
@include fill( $border: $kendo-input-valid-border );
|
|
27700
|
-
|
|
27701
|
-
.k-input-validation-icon {
|
|
27702
|
-
color: $kendo-valid-text;
|
|
27703
|
-
}
|
|
27704
|
-
|
|
27705
|
-
&:focus,
|
|
27706
|
-
&.k-focus {
|
|
27707
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
27708
|
-
}
|
|
27709
|
-
&:focus-within {
|
|
27710
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
27711
|
-
}
|
|
27712
|
-
}
|
|
27713
|
-
|
|
27714
27685
|
// Prefix & Suffix
|
|
27715
27686
|
.k-input-prefix {
|
|
27716
27687
|
color: $kendo-input-prefix-text;
|
|
@@ -27799,23 +27770,6 @@ $_kendo-module-meta: (
|
|
|
27799
27770
|
@include focus-indicator( $kendo-input-invalid-shadow );
|
|
27800
27771
|
}
|
|
27801
27772
|
}
|
|
27802
|
-
|
|
27803
|
-
// Valid
|
|
27804
|
-
&.k-valid {
|
|
27805
|
-
@include fill( $border: $kendo-input-valid-border );
|
|
27806
|
-
|
|
27807
|
-
.k-input-validation-icon {
|
|
27808
|
-
color: $kendo-valid-text;
|
|
27809
|
-
}
|
|
27810
|
-
|
|
27811
|
-
&:focus,
|
|
27812
|
-
&.k-focus {
|
|
27813
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
27814
|
-
}
|
|
27815
|
-
&:focus-within {
|
|
27816
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
27817
|
-
}
|
|
27818
|
-
}
|
|
27819
27773
|
}
|
|
27820
27774
|
|
|
27821
27775
|
|
|
@@ -27901,23 +27855,6 @@ $_kendo-module-meta: (
|
|
|
27901
27855
|
}
|
|
27902
27856
|
}
|
|
27903
27857
|
|
|
27904
|
-
// Valid
|
|
27905
|
-
&.k-valid {
|
|
27906
|
-
@include fill( $border: $kendo-input-valid-border );
|
|
27907
|
-
|
|
27908
|
-
.k-input-validation-icon {
|
|
27909
|
-
color: $kendo-valid-text;
|
|
27910
|
-
}
|
|
27911
|
-
|
|
27912
|
-
&:focus,
|
|
27913
|
-
&.k-focus {
|
|
27914
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
27915
|
-
}
|
|
27916
|
-
&:focus-within {
|
|
27917
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
27918
|
-
}
|
|
27919
|
-
}
|
|
27920
|
-
|
|
27921
27858
|
// Prefix & Suffix
|
|
27922
27859
|
.k-input-prefix {
|
|
27923
27860
|
color: $kendo-input-prefix-text;
|
|
@@ -28012,23 +27949,6 @@ $_kendo-module-meta: (
|
|
|
28012
27949
|
@include focus-indicator( $kendo-input-invalid-shadow );
|
|
28013
27950
|
}
|
|
28014
27951
|
}
|
|
28015
|
-
|
|
28016
|
-
// Valid
|
|
28017
|
-
&.k-valid {
|
|
28018
|
-
@include fill( $border: $kendo-input-valid-border );
|
|
28019
|
-
|
|
28020
|
-
.k-input-validation-icon {
|
|
28021
|
-
color: $kendo-valid-text;
|
|
28022
|
-
}
|
|
28023
|
-
|
|
28024
|
-
&:focus,
|
|
28025
|
-
&.k-focus {
|
|
28026
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
28027
|
-
}
|
|
28028
|
-
&:focus-within {
|
|
28029
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
28030
|
-
}
|
|
28031
|
-
}
|
|
28032
27952
|
}
|
|
28033
27953
|
|
|
28034
27954
|
|
|
@@ -28101,23 +28021,6 @@ $_kendo-module-meta: (
|
|
|
28101
28021
|
}
|
|
28102
28022
|
}
|
|
28103
28023
|
|
|
28104
|
-
// Valid
|
|
28105
|
-
&.k-valid {
|
|
28106
|
-
@include fill( $border: $kendo-input-valid-border );
|
|
28107
|
-
|
|
28108
|
-
.k-input-validation-icon {
|
|
28109
|
-
color: $kendo-valid-text;
|
|
28110
|
-
}
|
|
28111
|
-
|
|
28112
|
-
&:focus,
|
|
28113
|
-
&.k-focus {
|
|
28114
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
28115
|
-
}
|
|
28116
|
-
&:focus-within {
|
|
28117
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
28118
|
-
}
|
|
28119
|
-
}
|
|
28120
|
-
|
|
28121
28024
|
// Prefix & Suffix
|
|
28122
28025
|
.k-input-prefix {
|
|
28123
28026
|
color: $kendo-input-prefix-text;
|
|
@@ -28212,23 +28115,6 @@ $_kendo-module-meta: (
|
|
|
28212
28115
|
@include focus-indicator( $kendo-input-invalid-shadow );
|
|
28213
28116
|
}
|
|
28214
28117
|
}
|
|
28215
|
-
|
|
28216
|
-
// Valid
|
|
28217
|
-
&.k-valid {
|
|
28218
|
-
@include fill( $border: $kendo-input-valid-border );
|
|
28219
|
-
|
|
28220
|
-
.k-input-validation-icon {
|
|
28221
|
-
color: $kendo-valid-text;
|
|
28222
|
-
}
|
|
28223
|
-
|
|
28224
|
-
&:focus,
|
|
28225
|
-
&.k-focus {
|
|
28226
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
28227
|
-
}
|
|
28228
|
-
&:focus-within {
|
|
28229
|
-
@include focus-indicator( $kendo-input-valid-shadow );
|
|
28230
|
-
}
|
|
28231
|
-
}
|
|
28232
28118
|
}
|
|
28233
28119
|
|
|
28234
28120
|
}
|
|
@@ -29641,7 +29527,7 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
|
29641
29527
|
|
|
29642
29528
|
.k-progressbar-indeterminate {
|
|
29643
29529
|
@include fill( $kendo-progressbar-indeterminate-text, $kendo-progressbar-indeterminate-bg, $kendo-progressbar-indeterminate-border );
|
|
29644
|
-
@include striped-gradient( if($kendo-enable-color-system,
|
|
29530
|
+
@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)) );
|
|
29645
29531
|
background-size: $kendo-progressbar-height $kendo-progressbar-height;
|
|
29646
29532
|
animation: kendo-progressbar-indeterminate-animation $kendo-progressbar-animation-timing;
|
|
29647
29533
|
}
|
|
@@ -30408,7 +30294,7 @@ $kendo-slider-draghandle-pressed-gradient: null !default;
|
|
|
30408
30294
|
|
|
30409
30295
|
/// The shadow of the focused Slider drag handle.
|
|
30410
30296
|
/// @group slider
|
|
30411
|
-
$kendo-slider-draghandle-focus-shadow: 0 0 0 3px if($kendo-enable-color-system,
|
|
30297
|
+
$kendo-slider-draghandle-focus-shadow: 0 0 0 3px if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 50%, transparent), rgba( $kendo-color-primary, .5 )) !default;
|
|
30412
30298
|
|
|
30413
30299
|
/// The transition speed of the Slider.
|
|
30414
30300
|
/// @group slider
|
|
@@ -31086,7 +30972,7 @@ $kendo-calendar-cell-selected-hover-border: $kendo-selected-hover-border !defaul
|
|
|
31086
30972
|
$kendo-calendar-cell-selected-hover-gradient: null !default;
|
|
31087
30973
|
|
|
31088
30974
|
$kendo-calendar-cell-focus-shadow: inset $kendo-button-focus-shadow !default;
|
|
31089
|
-
$kendo-calendar-cell-selected-focus-shadow: inset 0 0 0 2px if($kendo-enable-color-system,
|
|
30975
|
+
$kendo-calendar-cell-selected-focus-shadow: inset 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( primary-active ) 50%, transparent), rgba( k-color-darken( $kendo-color-primary, 12.5% ), .5 )) !default;
|
|
31090
30976
|
|
|
31091
30977
|
|
|
31092
30978
|
// Calendar navigation
|
|
@@ -31837,7 +31723,7 @@ $kendo-calendar-sizes: (
|
|
|
31837
31723
|
.k-calendar { // stylelint-disable-line
|
|
31838
31724
|
|
|
31839
31725
|
$kendo-calendar-range-gap: 1px !default;
|
|
31840
|
-
$kendo-calendar-range-bg: if($kendo-enable-color-system,
|
|
31726
|
+
$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 ));
|
|
31841
31727
|
$kendo-calendar-range-split-size: 5px !default;
|
|
31842
31728
|
|
|
31843
31729
|
.k-range-start,
|
|
@@ -35443,7 +35329,7 @@ $kendo-treeview-item-selected-gradient: null !default;
|
|
|
35443
35329
|
|
|
35444
35330
|
/// The box shadow of focused TreeView items.
|
|
35445
35331
|
/// @group treeview
|
|
35446
|
-
$kendo-treeview-item-focus-shadow: inset 0 0 0 2px if($kendo-enable-color-system,
|
|
35332
|
+
$kendo-treeview-item-focus-shadow: inset 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 15%, transparent), rgba( $kendo-treeview-text, .15 )) !default;
|
|
35447
35333
|
|
|
35448
35334
|
/// The background color of the Load More button in the TreeView.
|
|
35449
35335
|
/// @group treeview
|
|
@@ -36505,7 +36391,7 @@ $kendo-switch-off-track-focus-border: if($kendo-enable-color-system, k-color( pr
|
|
|
36505
36391
|
$kendo-switch-off-track-focus-gradient: null !default;
|
|
36506
36392
|
/// The ring around the track when the focused Switch is not checked.
|
|
36507
36393
|
/// @group switch
|
|
36508
|
-
$kendo-switch-off-track-focus-ring: .25rem solid if($kendo-enable-color-system,
|
|
36394
|
+
$kendo-switch-off-track-focus-ring: .25rem solid if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
|
|
36509
36395
|
|
|
36510
36396
|
/// The background of the track when the disabled Switch is not checked.
|
|
36511
36397
|
/// @group switch
|
|
@@ -36587,7 +36473,7 @@ $kendo-switch-on-track-focus-border: null !default;
|
|
|
36587
36473
|
$kendo-switch-on-track-focus-gradient: null !default;
|
|
36588
36474
|
/// The ring around the track when the focused Switch is checked.
|
|
36589
36475
|
/// @group switch
|
|
36590
|
-
$kendo-switch-on-track-focus-ring: .25rem solid if($kendo-enable-color-system,
|
|
36476
|
+
$kendo-switch-on-track-focus-ring: .25rem solid if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-switch-on-track-border, .25 )) !default;
|
|
36591
36477
|
|
|
36592
36478
|
/// The background of the track when the disabled Switch is checked.
|
|
36593
36479
|
/// @group switch
|
|
@@ -36868,7 +36754,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
36868
36754
|
$kendo-switch-off-track-focus-gradient
|
|
36869
36755
|
);
|
|
36870
36756
|
@if $kendo-enable-focus-contrast {
|
|
36871
|
-
@include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface
|
|
36757
|
+
@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 )) );
|
|
36872
36758
|
} @else {
|
|
36873
36759
|
outline: $kendo-switch-off-track-focus-ring;
|
|
36874
36760
|
}
|
|
@@ -36948,7 +36834,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
36948
36834
|
$kendo-switch-on-track-focus-gradient
|
|
36949
36835
|
);
|
|
36950
36836
|
@if $kendo-enable-focus-contrast {
|
|
36951
|
-
@include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface
|
|
36837
|
+
@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 )) );
|
|
36952
36838
|
} @else {
|
|
36953
36839
|
outline: $kendo-switch-on-track-focus-ring;
|
|
36954
36840
|
}
|
|
@@ -38449,7 +38335,7 @@ $kendo-fab-item-outline-color: $kendo-button-bg !default;
|
|
|
38449
38335
|
@if $kendo-enable-focus-contrast {
|
|
38450
38336
|
@include box-shadow( inset 0 0 0 2px currentColor );
|
|
38451
38337
|
} @else {
|
|
38452
|
-
outline: $kendo-fab-outline-style $kendo-fab-outline-width if($kendo-enable-color-system,
|
|
38338
|
+
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 ));
|
|
38453
38339
|
}
|
|
38454
38340
|
}
|
|
38455
38341
|
}
|
|
@@ -38470,8 +38356,8 @@ $kendo-fab-item-outline-color: $kendo-button-bg !default;
|
|
|
38470
38356
|
.k-disabled.k-fab-solid-#{$name},
|
|
38471
38357
|
.k-fab-solid-#{$name}:disabled {
|
|
38472
38358
|
@include box-shadow($kendo-fab-disabled-shadow);
|
|
38473
|
-
background-color: if($kendo-enable-color-system,
|
|
38474
|
-
color: if($kendo-enable-color-system,
|
|
38359
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 60%, transparent), k-try-tint( $color, 5 ));
|
|
38360
|
+
color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-#{$name} ) 60%, transparent), k-try-tint( k-contrast-legacy( $color ), 5 ));
|
|
38475
38361
|
opacity: 1;
|
|
38476
38362
|
}
|
|
38477
38363
|
}
|
|
@@ -38510,7 +38396,7 @@ $kendo-fab-item-outline-color: $kendo-button-bg !default;
|
|
|
38510
38396
|
.k-fab-item.k-focus .k-fab-item-text,
|
|
38511
38397
|
.k-fab-item.k-focus .k-fab-item-icon {
|
|
38512
38398
|
@if $kendo-enable-focus-contrast {
|
|
38513
|
-
@include box-shadow( inset 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface
|
|
38399
|
+
@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 )) );
|
|
38514
38400
|
} @else {
|
|
38515
38401
|
outline: $kendo-fab-item-outline-style $kendo-fab-item-outline-width $kendo-fab-item-outline-color;
|
|
38516
38402
|
}
|
|
@@ -38532,8 +38418,8 @@ $kendo-fab-item-outline-color: $kendo-button-bg !default;
|
|
|
38532
38418
|
.k-fab-item-text,
|
|
38533
38419
|
.k-fab-item-icon {
|
|
38534
38420
|
@include box-shadow($kendo-fab-item-disabled-shadow);
|
|
38535
|
-
background-color: if($kendo-enable-color-system,
|
|
38536
|
-
color: if($kendo-enable-color-system,
|
|
38421
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 60%, transparent), k-try-tint( $kendo-fab-item-bg, 5 ));
|
|
38422
|
+
color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 60%, transparent), k-try-tint( $kendo-fab-item-text, 5 ));
|
|
38537
38423
|
}
|
|
38538
38424
|
}
|
|
38539
38425
|
|
|
@@ -38580,7 +38466,7 @@ $kendo-fab-item-outline-color: $kendo-button-bg !default;
|
|
|
38580
38466
|
@each $name, $color in $kendo-fab-theme-colors {
|
|
38581
38467
|
.k-fab-solid-#{$name}:focus,
|
|
38582
38468
|
.k-fab-solid-#{$name}.k-focus {
|
|
38583
|
-
outline: $kendo-fab-outline-width $kendo-fab-outline-style if($kendo-enable-color-system,
|
|
38469
|
+
outline: $kendo-fab-outline-width $kendo-fab-outline-style if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 50%, transparent), rgba( $color, .5 ));
|
|
38584
38470
|
}
|
|
38585
38471
|
}
|
|
38586
38472
|
|
|
@@ -38601,8 +38487,8 @@ $kendo-fab-item-outline-color: $kendo-button-bg !default;
|
|
|
38601
38487
|
.k-fab-solid-#{$name}:disabled,
|
|
38602
38488
|
.k-fab-solid-#{$name}.k-disabled {
|
|
38603
38489
|
@include box-shadow( $kendo-fab-disabled-shadow );
|
|
38604
|
-
background-color: if($kendo-enable-color-system,
|
|
38605
|
-
color: if($kendo-enable-color-system,
|
|
38490
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 65%, transparent), k-try-tint( $color, 4.5 ));
|
|
38491
|
+
color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-#{$name} ) 65%, transparent), k-try-tint( k-contrast-color( $color ), 5 ));
|
|
38606
38492
|
opacity: 1;
|
|
38607
38493
|
}
|
|
38608
38494
|
}
|
|
@@ -38643,7 +38529,7 @@ $kendo-fab-item-outline-color: $kendo-button-bg !default;
|
|
|
38643
38529
|
.k-fab-item.k-focus .k-fab-item-text,
|
|
38644
38530
|
.k-fab-item:focus .k-fab-item-icon,
|
|
38645
38531
|
.k-fab-item.k-focus .k-fab-item-icon {
|
|
38646
|
-
outline: $kendo-fab-item-outline-width $kendo-fab-item-outline-style if($kendo-enable-color-system,
|
|
38532
|
+
outline: $kendo-fab-item-outline-width $kendo-fab-item-outline-style if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 50%, transparent), rgba( $kendo-fab-item-icon-border, .5 ));
|
|
38647
38533
|
}
|
|
38648
38534
|
|
|
38649
38535
|
// Active state
|
|
@@ -38665,8 +38551,8 @@ $kendo-fab-item-outline-color: $kendo-button-bg !default;
|
|
|
38665
38551
|
.k-fab-item-text,
|
|
38666
38552
|
.k-fab-item-icon {
|
|
38667
38553
|
@include box-shadow( $kendo-fab-item-disabled-shadow );
|
|
38668
|
-
background-color: if($kendo-enable-color-system,
|
|
38669
|
-
color: if($kendo-enable-color-system,
|
|
38554
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 65%, transparent), k-try-tint( $kendo-fab-item-bg, 8 ));
|
|
38555
|
+
color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 65%, transparent), k-try-tint( $kendo-fab-item-text, 8 ));
|
|
38670
38556
|
}
|
|
38671
38557
|
}
|
|
38672
38558
|
|
|
@@ -41939,13 +41825,13 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
41939
41825
|
@each $name, $color in $kendo-theme-colors {
|
|
41940
41826
|
.k-bottom-nav-solid-#{$name} {
|
|
41941
41827
|
@include fill(
|
|
41942
|
-
$color: if($kendo-enable-color-system,
|
|
41828
|
+
$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%)),
|
|
41943
41829
|
$bg: $color
|
|
41944
41830
|
);
|
|
41945
41831
|
|
|
41946
41832
|
.k-bottom-nav-item.k-focus,
|
|
41947
41833
|
.k-bottom-nav-item:focus {
|
|
41948
|
-
@include fill( $bg: if($kendo-enable-color-system,
|
|
41834
|
+
@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)));
|
|
41949
41835
|
}
|
|
41950
41836
|
|
|
41951
41837
|
.k-bottom-nav-item.k-selected {
|
|
@@ -41969,7 +41855,7 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
41969
41855
|
|
|
41970
41856
|
.k-bottom-nav-item.k-focus,
|
|
41971
41857
|
.k-bottom-nav-item:focus {
|
|
41972
|
-
@include fill( $bg: if($kendo-enable-color-system,
|
|
41858
|
+
@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)) );
|
|
41973
41859
|
}
|
|
41974
41860
|
|
|
41975
41861
|
.k-bottom-nav-item.k-selected {
|
|
@@ -42213,7 +42099,7 @@ $kendo-breadcrumb-link-focus-text: null !default;
|
|
|
42213
42099
|
$kendo-breadcrumb-link-focus-border: null !default;
|
|
42214
42100
|
/// The box shadow of the focused Breadcrumb link.
|
|
42215
42101
|
/// @group breadcrumb
|
|
42216
|
-
$kendo-breadcrumb-link-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system,
|
|
42102
|
+
$kendo-breadcrumb-link-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 25%, transparent), rgba( $kendo-breadcrumb-text, .25 )) !default;
|
|
42217
42103
|
|
|
42218
42104
|
/// The background color of the Breadcrumb root link.
|
|
42219
42105
|
/// @group breadcrumb
|
|
@@ -42752,7 +42638,7 @@ $kendo-pager-item-focus-opacity: null !default;
|
|
|
42752
42638
|
$kendo-pager-item-focus-bg: $kendo-pager-item-bg !default;
|
|
42753
42639
|
/// The box shadow of the focused Pager items.
|
|
42754
42640
|
/// @group pager
|
|
42755
|
-
$kendo-pager-item-focus-shadow: 0 0 0 3px if($kendo-enable-color-system,
|
|
42641
|
+
$kendo-pager-item-focus-shadow: 0 0 0 3px if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-color-primary, .25)) !default;
|
|
42756
42642
|
|
|
42757
42643
|
/// The border radius of the Pager numbers.
|
|
42758
42644
|
/// @group pager
|
|
@@ -43199,7 +43085,7 @@ $kendo-stepper-indicator-hover-border: null !default;
|
|
|
43199
43085
|
$kendo-stepper-indicator-disabled-bg: null !default;
|
|
43200
43086
|
/// The text color of the disabled Stepper indicator.
|
|
43201
43087
|
/// @group stepper
|
|
43202
|
-
$kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system,
|
|
43088
|
+
$kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 65%, transparent), $kendo-disabled-text) !default;
|
|
43203
43089
|
/// The border color of the disabled Stepper indicator.
|
|
43204
43090
|
/// @group stepper
|
|
43205
43091
|
$kendo-stepper-indicator-disabled-border: null !default;
|
|
@@ -43226,7 +43112,7 @@ $kendo-stepper-indicator-done-hover-border: null !default;
|
|
|
43226
43112
|
|
|
43227
43113
|
/// The background color of the Stepper's disabled done indicator.
|
|
43228
43114
|
/// @group stepper
|
|
43229
|
-
$kendo-stepper-indicator-done-disabled-bg: if($kendo-enable-color-system,
|
|
43115
|
+
$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;
|
|
43230
43116
|
/// The text color of the Stepper's disabled done indicator.
|
|
43231
43117
|
/// @group stepper
|
|
43232
43118
|
$kendo-stepper-indicator-done-disabled-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-color( $kendo-stepper-indicator-done-bg )) !default;
|
|
@@ -43278,7 +43164,7 @@ $kendo-stepper-label-error-text: $kendo-color-error !default;
|
|
|
43278
43164
|
$kendo-stepper-label-hover-text: null !default;
|
|
43279
43165
|
/// The text color of the disabled Stepper label.
|
|
43280
43166
|
/// @group stepper
|
|
43281
|
-
$kendo-stepper-label-disabled-text: if($kendo-enable-color-system,
|
|
43167
|
+
$kendo-stepper-label-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 65%, transparent), $kendo-disabled-text) !default;
|
|
43282
43168
|
|
|
43283
43169
|
/// The text color of the optional Stepper label.
|
|
43284
43170
|
/// @group stepper
|
|
@@ -46404,7 +46290,7 @@ $kendo-dock-manager-dock-preview-border-style: dashed !default;
|
|
|
46404
46290
|
$kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
|
|
46405
46291
|
/// The background color of the dropping area in the DockManager component.
|
|
46406
46292
|
/// @group dock-manager
|
|
46407
|
-
$kendo-dock-manager-dock-preview-bg: if($kendo-enable-color-system,
|
|
46293
|
+
$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;
|
|
46408
46294
|
/// The border color of the dropping area in the DockManager component.
|
|
46409
46295
|
/// @group dock-manager
|
|
46410
46296
|
$kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
|
|
@@ -47759,7 +47645,7 @@ $kendo-grid-selection-aggregates-font-weight: $kendo-font-weight-bold !default;
|
|
|
47759
47645
|
$kendo-grid-grouping-row-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-grid-bg )) !default;
|
|
47760
47646
|
$kendo-grid-grouping-row-text: $kendo-grid-text !default;
|
|
47761
47647
|
|
|
47762
|
-
$kendo-grid-sorted-bg: if($kendo-enable-color-system,
|
|
47648
|
+
$kendo-grid-sorted-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 2%, transparent), rgba( k-contrast-color( $kendo-grid-bg ), .02 )) !default;
|
|
47763
47649
|
$kendo-grid-sorting-indicator-text: $kendo-color-primary !default;
|
|
47764
47650
|
$kendo-grid-sorting-index-font-size: ($kendo-icon-size * .75) !default;
|
|
47765
47651
|
$kendo-grid-sorting-index-height: $kendo-icon-size !default;
|
|
@@ -47777,7 +47663,7 @@ $kendo-grid-command-cell-padding-y: calc( #{$kendo-grid-cell-padding-y} - (#{$ke
|
|
|
47777
47663
|
// Must be a solid color
|
|
47778
47664
|
$kendo-grid-sticky-bg: $kendo-grid-bg !default;
|
|
47779
47665
|
$kendo-grid-sticky-text: $kendo-grid-text !default;
|
|
47780
|
-
$kendo-grid-sticky-border: if($kendo-enable-color-system,
|
|
47666
|
+
$kendo-grid-sticky-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba($kendo-grid-text, .5)) !default;
|
|
47781
47667
|
|
|
47782
47668
|
// Must be a solid color
|
|
47783
47669
|
$kendo-grid-sticky-alt-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-grid-bg, .5 )) !default;
|
|
@@ -47789,12 +47675,12 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
|
|
|
47789
47675
|
$kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
|
|
47790
47676
|
$kendo-grid-sticky-footer-hover-bg: $kendo-grid-sticky-footer-bg !default;
|
|
47791
47677
|
|
|
47792
|
-
$kendo-grid-sticky-selected-bg: if($kendo-enable-color-system,
|
|
47793
|
-
$kendo-grid-sticky-selected-alt-bg: if($kendo-enable-color-system,
|
|
47678
|
+
$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, $kendo-grid-bg, 25% )) !default;
|
|
47679
|
+
$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;
|
|
47794
47680
|
|
|
47795
47681
|
// Must be a solid color
|
|
47796
47682
|
$kendo-grid-sticky-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), k-try-shade( $kendo-grid-bg )) !default;
|
|
47797
|
-
$kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system,
|
|
47683
|
+
$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;
|
|
47798
47684
|
|
|
47799
47685
|
$kendo-grid-column-menu-width: 250px !default;
|
|
47800
47686
|
$kendo-grid-column-menu-max-width: 320px !default;
|
|
@@ -47845,7 +47731,7 @@ $kendo-grid-group-footer-second-cell-border: 1px !default;
|
|
|
47845
47731
|
|
|
47846
47732
|
/// Background color of the grid row resize indicator
|
|
47847
47733
|
/// @group grid
|
|
47848
|
-
$kendo-grid-row-resizer-hover-bg: if($kendo-enable-color-system,
|
|
47734
|
+
$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;
|
|
47849
47735
|
/// Active background color of the grid row resize indicator
|
|
47850
47736
|
/// @group grid
|
|
47851
47737
|
$kendo-grid-row-resizer-active-bg: $kendo-color-primary !default;
|
|
@@ -50414,7 +50300,7 @@ $kendo-listview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
|
50414
50300
|
$kendo-listview-item-selected-text: null !default;
|
|
50415
50301
|
/// The background color of the selected ListView items.
|
|
50416
50302
|
/// @group listview
|
|
50417
|
-
$kendo-listview-item-selected-bg: if($kendo-enable-color-system,
|
|
50303
|
+
$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;
|
|
50418
50304
|
/// The border color of the selected ListView items.
|
|
50419
50305
|
/// @group listview
|
|
50420
50306
|
$kendo-listview-item-selected-border: null !default;
|
|
@@ -50430,7 +50316,7 @@ $kendo-listview-item-focus-bg: null !default;
|
|
|
50430
50316
|
$kendo-listview-item-focus-border: null !default;
|
|
50431
50317
|
/// The box shadow of the focused ListView items.
|
|
50432
50318
|
/// @group listview
|
|
50433
|
-
$kendo-listview-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system,
|
|
50319
|
+
$kendo-listview-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 15%, transparent), rgba( $kendo-listview-text, .15 )) !default;
|
|
50434
50320
|
|
|
50435
50321
|
// #endregion
|
|
50436
50322
|
// #region @import "./_layout.scss"; -> scss/listview/_layout.scss
|
|
@@ -50851,7 +50737,7 @@ $kendo-spreadsheet-view-font-size: $kendo-spreadsheet-font-size !default;
|
|
|
50851
50737
|
|
|
50852
50738
|
/// The background color of the Spreadsheet selection.
|
|
50853
50739
|
/// @group spreadsheet
|
|
50854
|
-
$kendo-spreadsheet-selection-bg: if($kendo-enable-color-system,
|
|
50740
|
+
$kendo-spreadsheet-selection-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
50855
50741
|
/// The text color of the Spreadsheet selection.
|
|
50856
50742
|
/// @group spreadsheet
|
|
50857
50743
|
$kendo-spreadsheet-selection-text: null !default;
|
|
@@ -50874,7 +50760,7 @@ $kendo-spreadsheet-single-selection-border: $kendo-spreadsheet-bg !default;
|
|
|
50874
50760
|
|
|
50875
50761
|
/// The background color of the Spreadsheet partial selection.
|
|
50876
50762
|
/// @group spreadsheet
|
|
50877
|
-
$kendo-spreadsheet-partial-selection-bg: if($kendo-enable-color-system,
|
|
50763
|
+
$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;
|
|
50878
50764
|
|
|
50879
50765
|
/// The background color of the Spreadsheet active cell.
|
|
50880
50766
|
/// @group spreadsheet
|
|
@@ -50885,7 +50771,7 @@ $kendo-spreadsheet-active-cell-shadow: inset 0 0 0 1px $kendo-selected-bg !defau
|
|
|
50885
50771
|
|
|
50886
50772
|
/// The background color of the Spreadsheet auto fill.
|
|
50887
50773
|
/// @group spreadsheet
|
|
50888
|
-
$kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system,
|
|
50774
|
+
$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;
|
|
50889
50775
|
/// The text color of the Spreadsheet auto fill.
|
|
50890
50776
|
/// @group spreadsheet
|
|
50891
50777
|
$kendo-spreadsheet-auto-fill-text: null !default;
|
|
@@ -51015,7 +50901,7 @@ $kendo-spreadsheet-drawing-outline-width: 2px !default;
|
|
|
51015
50901
|
|
|
51016
50902
|
/// The background color of the Spreadsheet drawing anchor.
|
|
51017
50903
|
/// @group spreadsheet
|
|
51018
|
-
$kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system,
|
|
50904
|
+
$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;
|
|
51019
50905
|
|
|
51020
50906
|
/// The vertical spacing of the Spreadsheet DropZone.
|
|
51021
50907
|
/// @group spreadsheet
|
|
@@ -52287,7 +52173,7 @@ $kendo-pivotgrid-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-h
|
|
|
52287
52173
|
$kendo-pivotgrid-hover-text: null !default;
|
|
52288
52174
|
$kendo-pivotgrid-hover-border: null !default;
|
|
52289
52175
|
|
|
52290
|
-
$kendo-pivotgrid-selected-bg: if($kendo-enable-color-system,
|
|
52176
|
+
$kendo-pivotgrid-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
52291
52177
|
$kendo-pivotgrid-selected-text: null !default;
|
|
52292
52178
|
$kendo-pivotgrid-selected-border: null !default;
|
|
52293
52179
|
|
|
@@ -53640,7 +53526,7 @@ $kendo-filter-preview-operator-text: $kendo-subtle-text !default;
|
|
|
53640
53526
|
|
|
53641
53527
|
/// The box shadow of the focused Filter toolbar.
|
|
53642
53528
|
/// @group filter
|
|
53643
|
-
$kendo-filter-toolbar-focus-shadow: 0 0 0 .25rem if($kendo-enable-color-system,
|
|
53529
|
+
$kendo-filter-toolbar-focus-shadow: 0 0 0 .25rem if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
|
|
53644
53530
|
|
|
53645
53531
|
// #endregion
|
|
53646
53532
|
// #region @import "./_layout.scss"; -> scss/filter/_layout.scss
|
|
@@ -54763,7 +54649,7 @@ $kendo-taskboard-drag-placeholder-border-width: 1px !default;
|
|
|
54763
54649
|
$kendo-taskboard-drag-placeholder-border-radius: $kendo-taskboard-card-border-radius !default;
|
|
54764
54650
|
/// The background color of the TaskBoard Card placeholder.
|
|
54765
54651
|
/// @group taskboard
|
|
54766
|
-
$kendo-taskboard-drag-placeholder-bg:
|
|
54652
|
+
$kendo-taskboard-drag-placeholder-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 10%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .1 )) !default;
|
|
54767
54653
|
/// The border color of the TaskBoard Card placeholder.
|
|
54768
54654
|
/// @group taskboard
|
|
54769
54655
|
$kendo-taskboard-drag-placeholder-border: $kendo-component-border !default;
|
|
@@ -56478,7 +56364,7 @@ $kendo-gantt-treelist-bg: null !default;
|
|
|
56478
56364
|
$kendo-gantt-treelist-text: null !default;
|
|
56479
56365
|
$kendo-gantt-treelist-border: null !default;
|
|
56480
56366
|
|
|
56481
|
-
$kendo-gantt-nonwork-bg: if($kendo-enable-color-system,
|
|
56367
|
+
$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;
|
|
56482
56368
|
$kendo-gantt-nonwork-text: null !default;
|
|
56483
56369
|
$kendo-gantt-nonwork-border: null !default;
|
|
56484
56370
|
|
|
@@ -59092,7 +58978,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
59092
58978
|
|
|
59093
58979
|
.k-scheduler-layout td.k-selected,
|
|
59094
58980
|
.k-scheduler-layout .k-scheduler-cell.k-selected {
|
|
59095
|
-
background-color: if($kendo-enable-color-system,
|
|
58981
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
|
|
59096
58982
|
}
|
|
59097
58983
|
|
|
59098
58984
|
.k-scheduler-layout-flex {
|
|
@@ -59209,7 +59095,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
59209
59095
|
|
|
59210
59096
|
// Selected
|
|
59211
59097
|
.k-scheduler-content tr.k-selected {
|
|
59212
|
-
background-color: if($kendo-enable-color-system,
|
|
59098
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
|
|
59213
59099
|
}
|
|
59214
59100
|
.k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
|
|
59215
59101
|
.k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
|
|
@@ -60188,7 +60074,7 @@ $kendo-media-player-titlebar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
60188
60074
|
$kendo-media-player-titlebar-bg: null !default;
|
|
60189
60075
|
$kendo-media-player-titlebar-text: $kendo-media-player-bg !default;
|
|
60190
60076
|
$kendo-media-player-titlebar-border: null !default;
|
|
60191
|
-
$kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, (
|
|
60077
|
+
$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;
|
|
60192
60078
|
|
|
60193
60079
|
// #endregion
|
|
60194
60080
|
// #region @import "./_layout.scss"; -> scss/mediaplayer/_layout.scss
|
|
@@ -60326,7 +60212,7 @@ $kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, ( rgba( k-
|
|
|
60326
60212
|
.k-mediaplayer-titlebar {
|
|
60327
60213
|
color: $kendo-media-player-titlebar-text;
|
|
60328
60214
|
background-image: linear-gradient( $kendo-media-player-titlebar-gradient );
|
|
60329
|
-
text-shadow: 0 0 2px if($kendo-enable-color-system,
|
|
60215
|
+
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 ));
|
|
60330
60216
|
}
|
|
60331
60217
|
|
|
60332
60218
|
}
|
|
@@ -60441,13 +60327,13 @@ $kendo-timeline-track-arrow-height: 38px !default;
|
|
|
60441
60327
|
|
|
60442
60328
|
/// The background color of the disabled Timeline track arrow.
|
|
60443
60329
|
/// @group timeline
|
|
60444
|
-
$kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system,
|
|
60330
|
+
$kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( base-subtle ) 65%, transparent), k-true-mix( $kendo-button-bg, $kendo-body-bg, 65% )) !default;
|
|
60445
60331
|
/// The text color of the disabled Timeline track arrow.
|
|
60446
60332
|
/// @group timeline
|
|
60447
|
-
$kendo-timeline-track-arrow-disabled-text: if($kendo-enable-color-system,
|
|
60333
|
+
$kendo-timeline-track-arrow-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 65%, transparent), k-true-mix( $kendo-button-text, $kendo-body-bg, 65% )) !default;
|
|
60448
60334
|
/// The border color of the disabled Timeline track arrow.
|
|
60449
60335
|
/// @group timeline
|
|
60450
|
-
$kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system,
|
|
60336
|
+
$kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( border ) 15%, transparent), k-true-mix( $kendo-button-border, $kendo-body-bg, 65% )) !default;
|
|
60451
60337
|
|
|
60452
60338
|
/// The size of the Timeline track.
|
|
60453
60339
|
/// @group timeline
|
|
@@ -62656,13 +62542,13 @@ $kendo-chart-pane-title-font-weight: $kendo-font-weight-normal !default;
|
|
|
62656
62542
|
|
|
62657
62543
|
/// The color of the Chart grid lines (major).
|
|
62658
62544
|
/// @group charts
|
|
62659
|
-
$kendo-chart-major-lines:
|
|
62545
|
+
$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;
|
|
62660
62546
|
|
|
62661
62547
|
/// The color of the Chart grid lines (minor).
|
|
62662
62548
|
/// @group charts
|
|
62663
|
-
$kendo-chart-minor-lines:
|
|
62549
|
+
$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;
|
|
62664
62550
|
|
|
62665
|
-
$kendo-chart-inactive:
|
|
62551
|
+
$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;
|
|
62666
62552
|
$kendo-chart-area-opacity: .6 !default;
|
|
62667
62553
|
$kendo-chart-area-inactive-opacity: .1 !default;
|
|
62668
62554
|
$kendo-chart-line-inactive-opacity: .3 !default;
|
|
@@ -62673,20 +62559,20 @@ $kendo-chart-bg: $kendo-component-bg !default;
|
|
|
62673
62559
|
$kendo-chart-text: $kendo-component-text !default;
|
|
62674
62560
|
$kendo-chart-border: $kendo-component-border !default;
|
|
62675
62561
|
|
|
62676
|
-
$kendo-chart-crosshair-background:
|
|
62562
|
+
$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;
|
|
62677
62563
|
$kendo-chart-crosshair-shared-tooltip-color: $kendo-chart-text !default;
|
|
62678
62564
|
$kendo-chart-crosshair-shared-tooltip-background: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-chart-bg, 1 )) !default;
|
|
62679
|
-
$kendo-chart-crosshair-shared-tooltip-border:
|
|
62565
|
+
$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;
|
|
62680
62566
|
|
|
62681
|
-
$kendo-chart-notes-background:
|
|
62682
|
-
$kendo-chart-notes-border:
|
|
62683
|
-
$kendo-chart-notes-lines:
|
|
62567
|
+
$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;
|
|
62568
|
+
$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;
|
|
62569
|
+
$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;
|
|
62684
62570
|
|
|
62685
|
-
$kendo-chart-error-bars-background:
|
|
62571
|
+
$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;
|
|
62686
62572
|
|
|
62687
62573
|
$kendo-chart-selection-handle-size: 22px !default;
|
|
62688
|
-
$kendo-chart-selection-border-color:
|
|
62689
|
-
$kendo-chart-selection-shadow: inset 0 1px 7px
|
|
62574
|
+
$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;
|
|
62575
|
+
$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;
|
|
62690
62576
|
|
|
62691
62577
|
|
|
62692
62578
|
// TreeMap
|
|
@@ -63448,7 +63334,7 @@ $kendo-map-zoom-control-button-padding-y: $kendo-map-zoom-control-button-padding
|
|
|
63448
63334
|
$kendo-map-attribution-padding-x: $kendo-padding-sm-x !default;
|
|
63449
63335
|
$kendo-map-attribution-padding-y: $kendo-padding-sm-y !default;
|
|
63450
63336
|
$kendo-map-attribution-font-size: ($kendo-map-font-size * .75) !default;
|
|
63451
|
-
$kendo-map-attribution-bg: if($kendo-enable-color-system,
|
|
63337
|
+
$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;
|
|
63452
63338
|
|
|
63453
63339
|
$kendo-map-marker-fill: $kendo-color-primary !default;
|
|
63454
63340
|
|
|
@@ -64140,7 +64026,7 @@ $kendo-signature-lg-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
64140
64026
|
|
|
64141
64027
|
$kendo-signature-line-width: 1px !default;
|
|
64142
64028
|
$kendo-signature-line-style: dashed !default;
|
|
64143
|
-
$kendo-signature-line-color: if($kendo-enable-color-system,
|
|
64029
|
+
$kendo-signature-line-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( info ) 24%, transparent), rgba( $kendo-color-info, .24 )) !default;
|
|
64144
64030
|
|
|
64145
64031
|
$kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
|
|
64146
64032
|
$kendo-signature-sm-line-size: calc( 100% - 2 * #{$kendo-signature-sm-padding-x} ) !default;
|