@progress/kendo-theme-material 7.2.1-dev.7 → 7.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +8 -1
- package/dist/all.scss +79 -80
- package/dist/meta/sassdoc-data.json +48 -48
- package/dist/meta/sassdoc-raw-data.json +24 -24
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +5 -5
- package/scss/checkbox/_variables.scss +1 -1
- package/scss/dataviz/_variables.scss +11 -11
- package/scss/dock-manager/_variables.scss +1 -1
- package/scss/fab/_theme.scss +2 -2
- package/scss/gantt/_variables.scss +1 -1
- package/scss/grid/_variables.scss +5 -5
- package/scss/input/_variables.scss +4 -4
- package/scss/map/_variables.scss +1 -1
- package/scss/mediaplayer/_variables.scss +1 -1
- package/scss/orgchart/_variables.scss +1 -1
- package/scss/pivotgrid/_variables.scss +2 -2
- package/scss/scheduler/_theme.scss +2 -2
- package/scss/signature/_variables.scss +1 -1
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/slider/_variables.scss +1 -1
- package/scss/spreadsheet/_variables.scss +4 -4
- package/scss/stepper/_variables.scss +3 -3
- package/scss/switch/_variables.scss +2 -2
- package/scss/table/_variables.scss +2 -2
- package/scss/treeview/_variables.scss +1 -1
package/dist/all.css
CHANGED
|
@@ -27571,12 +27571,15 @@ kendo-sortable {
|
|
|
27571
27571
|
outline: none;
|
|
27572
27572
|
}
|
|
27573
27573
|
|
|
27574
|
+
.k-table-list .k-table-row {
|
|
27575
|
+
position: relative;
|
|
27576
|
+
}
|
|
27577
|
+
|
|
27574
27578
|
.k-table-list .k-table-row,
|
|
27575
27579
|
.k-table-list .k-table-group-row {
|
|
27576
27580
|
width: 100%;
|
|
27577
27581
|
box-sizing: border-box;
|
|
27578
27582
|
display: table-row;
|
|
27579
|
-
position: relative;
|
|
27580
27583
|
}
|
|
27581
27584
|
|
|
27582
27585
|
.k-table-list .k-table-row.k-first {
|
|
@@ -27588,6 +27591,10 @@ kendo-sortable {
|
|
|
27588
27591
|
vertical-align: middle;
|
|
27589
27592
|
}
|
|
27590
27593
|
|
|
27594
|
+
.k-table-list .k-table-group-row {
|
|
27595
|
+
position: sticky;
|
|
27596
|
+
}
|
|
27597
|
+
|
|
27591
27598
|
.k-table-list .k-table-group-row::before {
|
|
27592
27599
|
content: "\200b";
|
|
27593
27600
|
padding-inline: 0;
|
package/dist/all.scss
CHANGED
|
@@ -4764,7 +4764,7 @@ $kendo-palettes: (
|
|
|
4764
4764
|
color-on-subtle: k-color( #{$color}-on-subtle ),
|
|
4765
4765
|
on-color: k-color( on-#{$color} ),
|
|
4766
4766
|
color-on-surface: k-color( #{$color}-on-surface ),
|
|
4767
|
-
on-color-disabled:
|
|
4767
|
+
on-color-disabled: color-mix(in srgb, k-color( on-#{$color} ) 46%, transparent)
|
|
4768
4768
|
);
|
|
4769
4769
|
|
|
4770
4770
|
@return if( k-map-has-key( $map, $name ), k-map-get( $map, $name ), $name );
|
|
@@ -5027,15 +5027,11 @@ $_default-colors: (
|
|
|
5027
5027
|
$kendo-colors: $_default-colors !default;
|
|
5028
5028
|
$kendo-colors: k-map-merge($_default-colors, $kendo-colors);
|
|
5029
5029
|
|
|
5030
|
-
@function k-color($key
|
|
5030
|
+
@function k-color($key) {
|
|
5031
5031
|
$_color: k-map-get($kendo-colors, $key);
|
|
5032
5032
|
|
|
5033
5033
|
@if ($_color) {
|
|
5034
|
-
@
|
|
5035
|
-
@return var(--kendo-color-#{$key}-rgb, k-hex-to-rgb($_color));
|
|
5036
|
-
} @else {
|
|
5037
|
-
@return var(--kendo-color-#{$key}, $_color);
|
|
5038
|
-
}
|
|
5034
|
+
@return var(--kendo-color-#{$key}, $_color);
|
|
5039
5035
|
} @else {
|
|
5040
5036
|
@error "Color Variable \`#{$key}\` does not exists in the color collection.";
|
|
5041
5037
|
}
|
|
@@ -5046,7 +5042,6 @@ $kendo-colors: k-map-merge($_default-colors, $kendo-colors);
|
|
|
5046
5042
|
@each $key, $value in $kendo-colors {
|
|
5047
5043
|
@if($value) {
|
|
5048
5044
|
--kendo-color-#{$key}: #{$value};
|
|
5049
|
-
--kendo-color-#{$key}-rgb: #{k-hex-to-rgb($value)};
|
|
5050
5045
|
}
|
|
5051
5046
|
}
|
|
5052
5047
|
}
|
|
@@ -17177,7 +17172,7 @@ $kendo-checkbox-bg: null !default;
|
|
|
17177
17172
|
$kendo-checkbox-text: null !default;
|
|
17178
17173
|
/// The border color of the CheckBox.
|
|
17179
17174
|
/// @group checkbox
|
|
17180
|
-
$kendo-checkbox-border:
|
|
17175
|
+
$kendo-checkbox-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 54%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .54 )) !default;
|
|
17181
17176
|
|
|
17182
17177
|
/// The background color of the hovered CheckBox.
|
|
17183
17178
|
/// @group checkbox
|
|
@@ -19005,7 +19000,7 @@ $kendo-table-alt-row-border: null !default;
|
|
|
19005
19000
|
|
|
19006
19001
|
/// Background color of hovered rows in table.
|
|
19007
19002
|
/// @group table
|
|
19008
|
-
$kendo-table-hover-bg: if($kendo-enable-color-system,
|
|
19003
|
+
$kendo-table-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), rgba( k-contrast-color( $kendo-table-bg ), .07 )) !default;
|
|
19009
19004
|
/// Text color of hovered rows in table.
|
|
19010
19005
|
/// @group table
|
|
19011
19006
|
$kendo-table-hover-text: null !default;
|
|
@@ -19030,7 +19025,7 @@ $kendo-table-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
|
19030
19025
|
|
|
19031
19026
|
/// Background color of selected rows in table.
|
|
19032
19027
|
/// @group table
|
|
19033
|
-
$kendo-table-selected-bg: if($kendo-enable-color-system,
|
|
19028
|
+
$kendo-table-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 12%, transparent), rgba( k-contrast-color( $kendo-table-bg ), .04 )) !default;
|
|
19034
19029
|
/// Text color of selected rows in table.
|
|
19035
19030
|
/// @group table
|
|
19036
19031
|
$kendo-table-selected-text: null !default;
|
|
@@ -19156,12 +19151,15 @@ $kendo-table-selected-border: null !default;
|
|
|
19156
19151
|
list-style: none;
|
|
19157
19152
|
outline: none;
|
|
19158
19153
|
|
|
19154
|
+
.k-table-row {
|
|
19155
|
+
position: relative;
|
|
19156
|
+
}
|
|
19157
|
+
|
|
19159
19158
|
.k-table-row,
|
|
19160
19159
|
.k-table-group-row {
|
|
19161
19160
|
width: 100%;
|
|
19162
19161
|
box-sizing: border-box;
|
|
19163
19162
|
display: table-row;
|
|
19164
|
-
position: relative;
|
|
19165
19163
|
}
|
|
19166
19164
|
.k-table-row.k-first {
|
|
19167
19165
|
border-top: 1px solid currentColor;
|
|
@@ -19173,6 +19171,7 @@ $kendo-table-selected-border: null !default;
|
|
|
19173
19171
|
}
|
|
19174
19172
|
|
|
19175
19173
|
.k-table-group-row {
|
|
19174
|
+
position: sticky;
|
|
19176
19175
|
|
|
19177
19176
|
&::before {
|
|
19178
19177
|
content: "\200b";
|
|
@@ -20889,7 +20888,7 @@ $kendo-chip-list-sizes: (
|
|
|
20889
20888
|
|
|
20890
20889
|
&:focus,
|
|
20891
20890
|
&.k-focus {
|
|
20892
|
-
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system,
|
|
20891
|
+
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 16%, transparent), rgba( $color, .16 )) );
|
|
20893
20892
|
}
|
|
20894
20893
|
|
|
20895
20894
|
&:hover,
|
|
@@ -20943,7 +20942,7 @@ $kendo-chip-list-sizes: (
|
|
|
20943
20942
|
|
|
20944
20943
|
&:focus,
|
|
20945
20944
|
&.k-focus {
|
|
20946
|
-
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system,
|
|
20945
|
+
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 16%, transparent), if( $kendo-is-dark-theme, rgba( k-color-tint( $color, 50% ), .32 ), rgba( $color, .16 ))) );
|
|
20947
20946
|
}
|
|
20948
20947
|
|
|
20949
20948
|
&:hover,
|
|
@@ -20969,7 +20968,7 @@ $kendo-chip-list-sizes: (
|
|
|
20969
20968
|
|
|
20970
20969
|
&:focus,
|
|
20971
20970
|
&.k-focus {
|
|
20972
|
-
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system,
|
|
20971
|
+
@include focus-indicator( 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 16%, transparent), if( $kendo-is-dark-theme, rgba( k-color-tint( $color, 50% ), .32 ), rgba( $color, .16 ))) );
|
|
20973
20972
|
}
|
|
20974
20973
|
|
|
20975
20974
|
&:hover,
|
|
@@ -22073,7 +22072,7 @@ $kendo-skeleton-circle-border-radius: 9999px !default;
|
|
|
22073
22072
|
|
|
22074
22073
|
/// The background color of the Skeleton item.
|
|
22075
22074
|
/// @group skeleton
|
|
22076
|
-
$kendo-skeleton-item-bg: if($kendo-enable-color-system,
|
|
22075
|
+
$kendo-skeleton-item-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 20%, transparent), rgba( $kendo-color-inverse, .2 )) !default;
|
|
22077
22076
|
/// The background color of the Skeleton wave animation.
|
|
22078
22077
|
/// @group skeleton
|
|
22079
22078
|
$kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
|
|
@@ -22879,7 +22878,7 @@ $_kendo-module-meta: (
|
|
|
22879
22878
|
&:focus,
|
|
22880
22879
|
&.k-focus {
|
|
22881
22880
|
@if ( $kendo-solid-button-shadow ) {
|
|
22882
|
-
@include focus-indicator( 0 0 $kendo-solid-button-shadow-blur $kendo-solid-button-shadow-spread if($kendo-enable-color-system,
|
|
22881
|
+
@include focus-indicator( 0 0 $kendo-solid-button-shadow-blur $kendo-solid-button-shadow-spread if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) ( $kendo-solid-button-shadow-opacity * 100% ), transparent), rgba( $_button-border, $kendo-solid-button-shadow-opacity )), true, true );
|
|
22883
22882
|
}
|
|
22884
22883
|
}
|
|
22885
22884
|
|
|
@@ -22949,9 +22948,9 @@ $_kendo-module-meta: (
|
|
|
22949
22948
|
&.k-focus {
|
|
22950
22949
|
@if $kendo-outline-button-shadow {
|
|
22951
22950
|
@if $name == "base" {
|
|
22952
|
-
@include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system,
|
|
22951
|
+
@include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) ( $kendo-outline-button-shadow-opacity * 100% ), transparent), rgba( $color, $kendo-outline-button-shadow-opacity )), true, true );
|
|
22953
22952
|
} @else {
|
|
22954
|
-
@include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system,
|
|
22953
|
+
@include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) ( $kendo-outline-button-shadow-opacity * 100% ), transparent), rgba( $color, $kendo-outline-button-shadow-opacity )), true, true );
|
|
22955
22954
|
}
|
|
22956
22955
|
}
|
|
22957
22956
|
}
|
|
@@ -23034,9 +23033,9 @@ $_kendo-module-meta: (
|
|
|
23034
23033
|
&.k-focus {
|
|
23035
23034
|
@if ( $kendo-link-button-shadow ) {
|
|
23036
23035
|
@if $name == "base" {
|
|
23037
|
-
@include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system,
|
|
23036
|
+
@include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) ( $kendo-link-button-shadow-opacity * 100% ), transparent), rgba( $color, $kendo-link-button-shadow-opacity )), true, true );
|
|
23038
23037
|
} @else {
|
|
23039
|
-
@include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system,
|
|
23038
|
+
@include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) ( $kendo-link-button-shadow-opacity * 100% ), transparent), rgba( $color, $kendo-link-button-shadow-opacity )), true, true );
|
|
23040
23039
|
}
|
|
23041
23040
|
}
|
|
23042
23041
|
}
|
|
@@ -24952,7 +24951,7 @@ $kendo-input-bg: if($kendo-enable-color-system, k-color( surface ), k-try-shade(
|
|
|
24952
24951
|
$kendo-input-text: $kendo-component-text !default;
|
|
24953
24952
|
/// The border color of the Input components.
|
|
24954
24953
|
/// @group input
|
|
24955
|
-
$kendo-input-border: if($kendo-enable-color-system,
|
|
24954
|
+
$kendo-input-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 44%, transparent), rgba( $kendo-component-border, .38 )) !default;
|
|
24956
24955
|
/// The shadow of the Input components.
|
|
24957
24956
|
/// @group input
|
|
24958
24957
|
$kendo-input-shadow: null !default;
|
|
@@ -24991,13 +24990,13 @@ $kendo-input-selected-bg: null !default;
|
|
|
24991
24990
|
$kendo-input-selected-text: null !default;
|
|
24992
24991
|
/// The background color of the disabled Input components.
|
|
24993
24992
|
/// @group input
|
|
24994
|
-
$kendo-input-disabled-bg: if($kendo-enable-color-system,
|
|
24993
|
+
$kendo-input-disabled-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 3%, transparent), k-try-shade( $kendo-component-bg, .25 )) !default;
|
|
24995
24994
|
/// The text color of the disabled Input components.
|
|
24996
24995
|
/// @group input
|
|
24997
|
-
$kendo-input-disabled-text: if($kendo-enable-color-system,
|
|
24996
|
+
$kendo-input-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 27%, transparent), $kendo-disabled-text) !default;
|
|
24998
24997
|
/// The border color of the disabled Input components.
|
|
24999
24998
|
/// @group input
|
|
25000
|
-
$kendo-input-disabled-border: if($kendo-enable-color-system,
|
|
24999
|
+
$kendo-input-disabled-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 3%, transparent), rgba( $kendo-component-border, k-math-div( k-color-alpha( $kendo-component-border ), 2 ) )) !default;
|
|
25001
25000
|
/// The gradient of the disabled Input components.
|
|
25002
25001
|
/// @group input
|
|
25003
25002
|
$kendo-input-disabled-gradient: null !default;
|
|
@@ -29251,7 +29250,7 @@ $kendo-circular-progressbar-scale-stroke: $kendo-progressbar-bg !default;
|
|
|
29251
29250
|
|
|
29252
29251
|
.k-progressbar-indeterminate {
|
|
29253
29252
|
@include fill( $kendo-progressbar-indeterminate-text, $kendo-progressbar-indeterminate-bg, $kendo-progressbar-indeterminate-border );
|
|
29254
|
-
@include striped-gradient( if($kendo-enable-color-system,
|
|
29253
|
+
@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)) );
|
|
29255
29254
|
background-size: $kendo-progressbar-height $kendo-progressbar-height;
|
|
29256
29255
|
animation: kendo-progressbar-indeterminate-animation $kendo-progressbar-animation-timing;
|
|
29257
29256
|
}
|
|
@@ -30087,7 +30086,7 @@ $kendo-slider-draghandle-pressed-gradient: null !default;
|
|
|
30087
30086
|
|
|
30088
30087
|
/// The shadow of the focused Slider drag handle.
|
|
30089
30088
|
/// @group slider
|
|
30090
|
-
$kendo-slider-draghandle-focus-shadow: 0 0 0 11px if($kendo-enable-color-system,
|
|
30089
|
+
$kendo-slider-draghandle-focus-shadow: 0 0 0 11px if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
|
|
30091
30090
|
|
|
30092
30091
|
/// The transition speed of the Slider.
|
|
30093
30092
|
/// @group slider
|
|
@@ -31625,7 +31624,7 @@ $kendo-calendar-sizes: (
|
|
|
31625
31624
|
.k-calendar { // stylelint-disable-line
|
|
31626
31625
|
|
|
31627
31626
|
$kendo-calendar-range-gap: 1px !default;
|
|
31628
|
-
$kendo-calendar-range-bg: if($kendo-enable-color-system,
|
|
31627
|
+
$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 ));
|
|
31629
31628
|
$kendo-calendar-range-split-size: 5px !default;
|
|
31630
31629
|
|
|
31631
31630
|
.k-range-start,
|
|
@@ -35244,7 +35243,7 @@ $kendo-treeview-border: null !default;
|
|
|
35244
35243
|
|
|
35245
35244
|
/// The background color of hovered TreeView.
|
|
35246
35245
|
/// @group treeview
|
|
35247
|
-
$kendo-treeview-item-hover-bg: if($kendo-enable-color-system,
|
|
35246
|
+
$kendo-treeview-item-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 7%, transparent), rgba( $kendo-treeview-text, .07 )) !default;
|
|
35248
35247
|
/// The text color of hovered TreeView items.
|
|
35249
35248
|
/// @group treeview
|
|
35250
35249
|
$kendo-treeview-item-hover-text: null !default;
|
|
@@ -36329,7 +36328,7 @@ $kendo-switch-sizes: (
|
|
|
36329
36328
|
|
|
36330
36329
|
/// The background of the track when the Switch is not checked.
|
|
36331
36330
|
/// @group switch
|
|
36332
|
-
$kendo-switch-off-track-bg:
|
|
36331
|
+
$kendo-switch-off-track-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 38%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .38 )) !default;
|
|
36333
36332
|
/// The text color of the track when the Switch is not checked.
|
|
36334
36333
|
/// @group switch
|
|
36335
36334
|
$kendo-switch-off-track-text: null !default;
|
|
@@ -36411,7 +36410,7 @@ $kendo-switch-off-thumb-hover-gradient: null !default;
|
|
|
36411
36410
|
|
|
36412
36411
|
/// The background of the track when the Switch is checked.
|
|
36413
36412
|
/// @group switch
|
|
36414
|
-
$kendo-switch-on-track-bg: if($kendo-enable-color-system,
|
|
36413
|
+
$kendo-switch-on-track-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 54%, transparent), rgba( $kendo-color-primary, .54 )) !default;
|
|
36415
36414
|
/// The text color of the track when the Switch is checked.
|
|
36416
36415
|
/// @group switch
|
|
36417
36416
|
$kendo-switch-on-track-text: null !default;
|
|
@@ -36762,7 +36761,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
36762
36761
|
$kendo-switch-off-track-focus-gradient
|
|
36763
36762
|
);
|
|
36764
36763
|
@if $kendo-enable-focus-contrast {
|
|
36765
|
-
@include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface
|
|
36764
|
+
@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 )) );
|
|
36766
36765
|
} @else {
|
|
36767
36766
|
outline: $kendo-switch-off-track-focus-ring;
|
|
36768
36767
|
}
|
|
@@ -36842,7 +36841,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
36842
36841
|
$kendo-switch-on-track-focus-gradient
|
|
36843
36842
|
);
|
|
36844
36843
|
@if $kendo-enable-focus-contrast {
|
|
36845
|
-
@include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface
|
|
36844
|
+
@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 )) );
|
|
36846
36845
|
} @else {
|
|
36847
36846
|
outline: $kendo-switch-on-track-focus-ring;
|
|
36848
36847
|
}
|
|
@@ -38363,7 +38362,7 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
38363
38362
|
@if $kendo-enable-focus-contrast {
|
|
38364
38363
|
@include box-shadow( inset 0 0 0 2px currentColor );
|
|
38365
38364
|
} @else {
|
|
38366
|
-
outline: $kendo-fab-outline-style $kendo-fab-outline-width if($kendo-enable-color-system,
|
|
38365
|
+
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 ));
|
|
38367
38366
|
}
|
|
38368
38367
|
}
|
|
38369
38368
|
}
|
|
@@ -38384,8 +38383,8 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
38384
38383
|
.k-disabled.k-fab-solid-#{$name},
|
|
38385
38384
|
.k-fab-solid-#{$name}:disabled {
|
|
38386
38385
|
@include box-shadow($kendo-fab-disabled-shadow);
|
|
38387
|
-
background-color: if($kendo-enable-color-system,
|
|
38388
|
-
color: if($kendo-enable-color-system,
|
|
38386
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 60%, transparent), k-try-tint( $color, 5 ));
|
|
38387
|
+
color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-#{$name} ) 60%, transparent), k-try-tint( k-contrast-legacy( $color ), 5 ));
|
|
38389
38388
|
opacity: 1;
|
|
38390
38389
|
}
|
|
38391
38390
|
}
|
|
@@ -38424,7 +38423,7 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
38424
38423
|
.k-fab-item.k-focus .k-fab-item-text,
|
|
38425
38424
|
.k-fab-item.k-focus .k-fab-item-icon {
|
|
38426
38425
|
@if $kendo-enable-focus-contrast {
|
|
38427
|
-
@include box-shadow( inset 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface
|
|
38426
|
+
@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 )) );
|
|
38428
38427
|
} @else {
|
|
38429
38428
|
outline: $kendo-fab-item-outline-style $kendo-fab-item-outline-width $kendo-fab-item-outline-color;
|
|
38430
38429
|
}
|
|
@@ -38446,8 +38445,8 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
38446
38445
|
.k-fab-item-text,
|
|
38447
38446
|
.k-fab-item-icon {
|
|
38448
38447
|
@include box-shadow($kendo-fab-item-disabled-shadow);
|
|
38449
|
-
background-color: if($kendo-enable-color-system,
|
|
38450
|
-
color: if($kendo-enable-color-system,
|
|
38448
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 60%, transparent), k-try-tint( $kendo-fab-item-bg, 5 ));
|
|
38449
|
+
color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 60%, transparent), k-try-tint( $kendo-fab-item-text, 5 ));
|
|
38451
38450
|
}
|
|
38452
38451
|
}
|
|
38453
38452
|
|
|
@@ -38569,8 +38568,8 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
38569
38568
|
.k-fab-item-text,
|
|
38570
38569
|
.k-fab-item-icon {
|
|
38571
38570
|
@include box-shadow($kendo-fab-item-disabled-shadow);
|
|
38572
|
-
background-color: if($kendo-enable-color-system,
|
|
38573
|
-
color: if($kendo-enable-color-system,
|
|
38571
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 60%, transparent), k-try-tint( $kendo-fab-item-bg, 8 ));
|
|
38572
|
+
color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 60%, transparent), k-try-tint( $kendo-fab-item-text, 8 ));
|
|
38574
38573
|
}
|
|
38575
38574
|
}
|
|
38576
38575
|
|
|
@@ -41891,13 +41890,13 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
41891
41890
|
@each $name, $color in $kendo-theme-colors {
|
|
41892
41891
|
.k-bottom-nav-solid-#{$name} {
|
|
41893
41892
|
@include fill(
|
|
41894
|
-
$color: if($kendo-enable-color-system,
|
|
41893
|
+
$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%)),
|
|
41895
41894
|
$bg: $color
|
|
41896
41895
|
);
|
|
41897
41896
|
|
|
41898
41897
|
.k-bottom-nav-item.k-focus,
|
|
41899
41898
|
.k-bottom-nav-item:focus {
|
|
41900
|
-
@include fill( $bg: if($kendo-enable-color-system,
|
|
41899
|
+
@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)));
|
|
41901
41900
|
}
|
|
41902
41901
|
|
|
41903
41902
|
.k-bottom-nav-item.k-selected {
|
|
@@ -41921,7 +41920,7 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
|
|
|
41921
41920
|
|
|
41922
41921
|
.k-bottom-nav-item.k-focus,
|
|
41923
41922
|
.k-bottom-nav-item:focus {
|
|
41924
|
-
@include fill( $bg: if($kendo-enable-color-system,
|
|
41923
|
+
@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)) );
|
|
41925
41924
|
}
|
|
41926
41925
|
|
|
41927
41926
|
.k-bottom-nav-item.k-selected {
|
|
@@ -43153,7 +43152,7 @@ $kendo-stepper-indicator-hover-border: null !default;
|
|
|
43153
43152
|
$kendo-stepper-indicator-disabled-bg: null !default;
|
|
43154
43153
|
/// The text color of the disabled Stepper indicator.
|
|
43155
43154
|
/// @group stepper
|
|
43156
|
-
$kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system,
|
|
43155
|
+
$kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 32%, transparent), $kendo-disabled-text) !default;
|
|
43157
43156
|
/// The border color of the disabled Stepper indicator.
|
|
43158
43157
|
/// @group stepper
|
|
43159
43158
|
$kendo-stepper-indicator-disabled-border: null !default;
|
|
@@ -43180,7 +43179,7 @@ $kendo-stepper-indicator-done-hover-border: null !default;
|
|
|
43180
43179
|
|
|
43181
43180
|
/// The background color of the Stepper's disabled done indicator.
|
|
43182
43181
|
/// @group stepper
|
|
43183
|
-
$kendo-stepper-indicator-done-disabled-bg: if($kendo-enable-color-system,
|
|
43182
|
+
$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;
|
|
43184
43183
|
/// The text color of the Stepper's disabled done indicator.
|
|
43185
43184
|
/// @group stepper
|
|
43186
43185
|
$kendo-stepper-indicator-done-disabled-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-color( $kendo-stepper-indicator-done-bg )) !default;
|
|
@@ -43232,7 +43231,7 @@ $kendo-stepper-label-error-text: $kendo-color-error !default;
|
|
|
43232
43231
|
$kendo-stepper-label-hover-text: null !default;
|
|
43233
43232
|
/// The text color of the disabled Stepper label.
|
|
43234
43233
|
/// @group stepper
|
|
43235
|
-
$kendo-stepper-label-disabled-text: if($kendo-enable-color-system,
|
|
43234
|
+
$kendo-stepper-label-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 32%, transparent), k-map-get( $theme, disabled-text )) !default;
|
|
43236
43235
|
|
|
43237
43236
|
/// The text color of the optional Stepper label.
|
|
43238
43237
|
/// @group stepper
|
|
@@ -46382,7 +46381,7 @@ $kendo-dock-manager-dock-preview-border-style: dashed !default;
|
|
|
46382
46381
|
$kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
|
|
46383
46382
|
/// The background color of the dropping area in the DockManager component.
|
|
46384
46383
|
/// @group dock-manager
|
|
46385
|
-
$kendo-dock-manager-dock-preview-bg: if($kendo-enable-color-system,
|
|
46384
|
+
$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;
|
|
46386
46385
|
/// The border color of the dropping area in the DockManager component.
|
|
46387
46386
|
/// @group dock-manager
|
|
46388
46387
|
$kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
|
|
@@ -47738,7 +47737,7 @@ $kendo-grid-grouping-row-bg: transparent !default;
|
|
|
47738
47737
|
$kendo-grid-grouping-row-text: $kendo-grid-text !default;
|
|
47739
47738
|
|
|
47740
47739
|
$kendo-grid-sorted-icon-spacing: 4px !default;
|
|
47741
|
-
$kendo-grid-sorted-bg: if($kendo-enable-color-system,
|
|
47740
|
+
$kendo-grid-sorted-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 5%, transparent), rgba( k-contrast-color( $kendo-grid-bg ), .04 )) !default;
|
|
47742
47741
|
$kendo-grid-sorting-indicator-text: $kendo-grid-header-text !default;
|
|
47743
47742
|
$kendo-grid-sorting-index-font-size: $kendo-font-size-sm !default;
|
|
47744
47743
|
$kendo-grid-sorting-index-height: $kendo-icon-size !default;
|
|
@@ -47754,7 +47753,7 @@ $kendo-grid-command-cell-padding-y: calc( #{$kendo-grid-cell-padding-y} - (#{$ke
|
|
|
47754
47753
|
// Must be a solid color
|
|
47755
47754
|
$kendo-grid-sticky-bg: $kendo-grid-bg !default;
|
|
47756
47755
|
$kendo-grid-sticky-text: $kendo-grid-text !default;
|
|
47757
|
-
$kendo-grid-sticky-border: if($kendo-enable-color-system,
|
|
47756
|
+
$kendo-grid-sticky-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( k-contrast-color( $kendo-grid-bg ), .5 )) !default;
|
|
47758
47757
|
|
|
47759
47758
|
// Must be a solid color
|
|
47760
47759
|
$kendo-grid-sticky-alt-bg: $kendo-grid-sticky-bg !default;
|
|
@@ -47766,12 +47765,12 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
|
|
|
47766
47765
|
$kendo-grid-sticky-footer-bg: $kendo-grid-sticky-header-bg !default;
|
|
47767
47766
|
$kendo-grid-sticky-footer-hover-bg: $kendo-grid-sticky-footer-bg !default;
|
|
47768
47767
|
|
|
47769
|
-
$kendo-grid-sticky-selected-bg: if($kendo-enable-color-system,
|
|
47768
|
+
$kendo-grid-sticky-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 12%, transparent), k-try-shade($kendo-grid-bg, 4%)) !default;
|
|
47770
47769
|
$kendo-grid-sticky-selected-alt-bg: $kendo-grid-sticky-selected-bg !default;
|
|
47771
47770
|
|
|
47772
47771
|
// Must be a solid color
|
|
47773
47772
|
$kendo-grid-sticky-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-try-shade($kendo-grid-bg, 7%)) !default;
|
|
47774
|
-
$kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system,
|
|
47773
|
+
$kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 12%, transparent), k-try-shade($kendo-grid-sticky-selected-bg, .87)) !default;
|
|
47775
47774
|
|
|
47776
47775
|
$kendo-grid-column-menu-width: 250px !default;
|
|
47777
47776
|
$kendo-grid-column-menu-max-width: 320px !default;
|
|
@@ -47824,7 +47823,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
47824
47823
|
|
|
47825
47824
|
/// Background color of the grid row resize indicator
|
|
47826
47825
|
/// @group grid
|
|
47827
|
-
$kendo-grid-row-resizer-hover-bg: if($kendo-enable-color-system,
|
|
47826
|
+
$kendo-grid-row-resizer-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 20%, transparent), rgba( k-contrast-color( $kendo-grid-bg ), .24 )) !default;
|
|
47828
47827
|
/// Active background color of the grid row resize indicator
|
|
47829
47828
|
/// @group grid
|
|
47830
47829
|
$kendo-grid-row-resizer-active-bg: $kendo-color-primary !default;
|
|
@@ -50680,7 +50679,7 @@ $kendo-spreadsheet-view-font-size: $kendo-spreadsheet-font-size !default;
|
|
|
50680
50679
|
|
|
50681
50680
|
/// The background color of the Spreadsheet selection.
|
|
50682
50681
|
/// @group spreadsheet
|
|
50683
|
-
$kendo-spreadsheet-selection-bg: if($kendo-enable-color-system,
|
|
50682
|
+
$kendo-spreadsheet-selection-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
|
|
50684
50683
|
/// The text color of the Spreadsheet selection.
|
|
50685
50684
|
/// @group spreadsheet
|
|
50686
50685
|
$kendo-spreadsheet-selection-text: null !default;
|
|
@@ -50714,7 +50713,7 @@ $kendo-spreadsheet-active-cell-shadow: inset 0 0 0 1px $kendo-color-primary !def
|
|
|
50714
50713
|
|
|
50715
50714
|
/// The background color of the Spreadsheet auto fill.
|
|
50716
50715
|
/// @group spreadsheet
|
|
50717
|
-
$kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system,
|
|
50716
|
+
$kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
|
|
50718
50717
|
/// The text color of the Spreadsheet auto fill.
|
|
50719
50718
|
/// @group spreadsheet
|
|
50720
50719
|
$kendo-spreadsheet-auto-fill-text: null !default;
|
|
@@ -50726,7 +50725,7 @@ $kendo-spreadsheet-auto-fill-border: $kendo-color-primary !default;
|
|
|
50726
50725
|
$kendo-spreadsheet-auto-fill-shadow: inset 0 0 0 1px $kendo-color-primary !default;
|
|
50727
50726
|
/// The background color of the Spreadsheet auto fill punch.
|
|
50728
50727
|
/// @group spreadsheet
|
|
50729
|
-
$kendo-spreadsheet-auto-fill-punch-bg: if($kendo-enable-color-system,
|
|
50728
|
+
$kendo-spreadsheet-auto-fill-punch-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( app-surface ) 50%, transparent), rgba( $kendo-component-bg, .5 )) !default;
|
|
50730
50729
|
|
|
50731
50730
|
/// The vertical padding of the Spreadsheet cell.
|
|
50732
50731
|
/// @group spreadsheet
|
|
@@ -50844,7 +50843,7 @@ $kendo-spreadsheet-drawing-outline-width: 2px !default;
|
|
|
50844
50843
|
|
|
50845
50844
|
/// The background color of the Spreadsheet drawing anchor.
|
|
50846
50845
|
/// @group spreadsheet
|
|
50847
|
-
$kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system,
|
|
50846
|
+
$kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( secondary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
50848
50847
|
|
|
50849
50848
|
/// The vertical spacing of the Spreadsheet DropZone.
|
|
50850
50849
|
/// @group spreadsheet
|
|
@@ -52157,7 +52156,7 @@ $kendo-pivotgrid-border: $kendo-component-border !default;
|
|
|
52157
52156
|
|
|
52158
52157
|
$kendo-pivotgrid-alt-border: if($kendo-enable-color-system, k-color( border-alt ), k-try-shade( $kendo-pivotgrid-border, 2 )) !default;
|
|
52159
52158
|
|
|
52160
|
-
$kendo-pivotgrid-headers-bg: if($kendo-enable-color-system,
|
|
52159
|
+
$kendo-pivotgrid-headers-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( app-surface ) 2%, transparent), rgba( $kendo-component-header-bg, .02 )) !default;
|
|
52161
52160
|
$kendo-pivotgrid-headers-text: $kendo-component-header-text !default;
|
|
52162
52161
|
$kendo-pivotgrid-headers-border: $kendo-component-header-border !default;
|
|
52163
52162
|
|
|
@@ -52169,7 +52168,7 @@ $kendo-pivotgrid-hover-bg: if($kendo-enable-color-system, k-color( base-hover ),
|
|
|
52169
52168
|
$kendo-pivotgrid-hover-text: null !default;
|
|
52170
52169
|
$kendo-pivotgrid-hover-border: null !default;
|
|
52171
52170
|
|
|
52172
|
-
$kendo-pivotgrid-selected-bg: if($kendo-enable-color-system,
|
|
52171
|
+
$kendo-pivotgrid-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( base-active ) 25%, transparent), rgba( k-contrast-color( $kendo-pivotgrid-bg ), .04 )) !default;
|
|
52173
52172
|
$kendo-pivotgrid-selected-text: null !default;
|
|
52174
52173
|
$kendo-pivotgrid-selected-border: null !default;
|
|
52175
52174
|
|
|
@@ -56410,7 +56409,7 @@ $kendo-gantt-treelist-bg: null !default;
|
|
|
56410
56409
|
$kendo-gantt-treelist-text: null !default;
|
|
56411
56410
|
$kendo-gantt-treelist-border: null !default;
|
|
56412
56411
|
|
|
56413
|
-
$kendo-gantt-nonwork-bg: if($kendo-enable-color-system,
|
|
56412
|
+
$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;
|
|
56414
56413
|
$kendo-gantt-nonwork-text: null !default;
|
|
56415
56414
|
$kendo-gantt-nonwork-border: null !default;
|
|
56416
56415
|
|
|
@@ -59174,7 +59173,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
59174
59173
|
|
|
59175
59174
|
.k-scheduler-layout td.k-selected,
|
|
59176
59175
|
.k-scheduler-layout .k-scheduler-cell.k-selected {
|
|
59177
|
-
background-color: if($kendo-enable-color-system,
|
|
59176
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
|
|
59178
59177
|
}
|
|
59179
59178
|
|
|
59180
59179
|
.k-scheduler-layout-flex {
|
|
@@ -59291,7 +59290,7 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
59291
59290
|
|
|
59292
59291
|
// Selected
|
|
59293
59292
|
.k-scheduler-content tr.k-selected {
|
|
59294
|
-
background-color: if($kendo-enable-color-system,
|
|
59293
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
|
|
59295
59294
|
}
|
|
59296
59295
|
.k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
|
|
59297
59296
|
.k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
|
|
@@ -59352,13 +59351,13 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
|
|
|
59352
59351
|
|
|
59353
59352
|
.k-scheduler-layout td.k-selected,
|
|
59354
59353
|
.k-scheduler-layout .k-scheduler-cell.k-selected {
|
|
59355
|
-
background-color: if($kendo-enable-color-system,
|
|
59354
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( secondary ) 25%, transparent), rgba($kendo-selected-bg, .25));
|
|
59356
59355
|
}
|
|
59357
59356
|
|
|
59358
59357
|
// Agenda view
|
|
59359
59358
|
.k-scheduler-agendaview {
|
|
59360
59359
|
.k-scheduler-content tr.k-selected {
|
|
59361
|
-
background-color: if($kendo-enable-color-system,
|
|
59360
|
+
background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( secondary ) 25%, transparent), rgba($kendo-selected-bg, .25));
|
|
59362
59361
|
}
|
|
59363
59362
|
}
|
|
59364
59363
|
|
|
@@ -60306,7 +60305,7 @@ $kendo-media-player-titlebar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
60306
60305
|
$kendo-media-player-titlebar-bg: null !default;
|
|
60307
60306
|
$kendo-media-player-titlebar-text: $kendo-media-player-bg !default;
|
|
60308
60307
|
$kendo-media-player-titlebar-border: null !default;
|
|
60309
|
-
$kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, (
|
|
60308
|
+
$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;
|
|
60310
60309
|
|
|
60311
60310
|
// #endregion
|
|
60312
60311
|
// #region @import "./_layout.scss"; -> scss/mediaplayer/_layout.scss
|
|
@@ -60444,7 +60443,7 @@ $kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, ( rgba( k-
|
|
|
60444
60443
|
.k-mediaplayer-titlebar {
|
|
60445
60444
|
color: $kendo-media-player-titlebar-text;
|
|
60446
60445
|
background-image: linear-gradient( $kendo-media-player-titlebar-gradient );
|
|
60447
|
-
text-shadow: 0 0 2px if($kendo-enable-color-system,
|
|
60446
|
+
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 ));
|
|
60448
60447
|
}
|
|
60449
60448
|
|
|
60450
60449
|
}
|
|
@@ -62705,13 +62704,13 @@ $kendo-chart-pane-title-font-weight: $kendo-font-weight-normal !default;
|
|
|
62705
62704
|
|
|
62706
62705
|
/// The color of the Chart grid lines (major).
|
|
62707
62706
|
/// @group charts
|
|
62708
|
-
$kendo-chart-major-lines:
|
|
62707
|
+
$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;
|
|
62709
62708
|
|
|
62710
62709
|
/// The color of the Chart grid lines (minor).
|
|
62711
62710
|
/// @group charts
|
|
62712
|
-
$kendo-chart-minor-lines:
|
|
62711
|
+
$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;
|
|
62713
62712
|
|
|
62714
|
-
$kendo-chart-inactive: if($kendo-enable-color-system,
|
|
62713
|
+
$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;
|
|
62715
62714
|
$kendo-chart-area-opacity: .6 !default;
|
|
62716
62715
|
$kendo-chart-area-inactive-opacity: .1 !default;
|
|
62717
62716
|
$kendo-chart-line-inactive-opacity: .3 !default;
|
|
@@ -62722,20 +62721,20 @@ $kendo-chart-bg: $kendo-component-bg !default;
|
|
|
62722
62721
|
$kendo-chart-text: $kendo-component-text !default;
|
|
62723
62722
|
$kendo-chart-border: $kendo-component-border !default;
|
|
62724
62723
|
|
|
62725
|
-
$kendo-chart-crosshair-background:
|
|
62724
|
+
$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;
|
|
62726
62725
|
$kendo-chart-crosshair-shared-tooltip-color: $kendo-chart-text !default;
|
|
62727
62726
|
$kendo-chart-crosshair-shared-tooltip-background: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-chart-bg, 1 )) !default;
|
|
62728
|
-
$kendo-chart-crosshair-shared-tooltip-border:
|
|
62727
|
+
$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;
|
|
62729
62728
|
|
|
62730
|
-
$kendo-chart-notes-background:
|
|
62731
|
-
$kendo-chart-notes-border:
|
|
62732
|
-
$kendo-chart-notes-lines:
|
|
62729
|
+
$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;
|
|
62730
|
+
$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;
|
|
62731
|
+
$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;
|
|
62733
62732
|
|
|
62734
|
-
$kendo-chart-error-bars-background:
|
|
62733
|
+
$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;
|
|
62735
62734
|
|
|
62736
62735
|
$kendo-chart-selection-handle-size: 22px !default;
|
|
62737
|
-
$kendo-chart-selection-border-color:
|
|
62738
|
-
$kendo-chart-selection-shadow: inset 0 1px 7px
|
|
62736
|
+
$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;
|
|
62737
|
+
$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;
|
|
62739
62738
|
|
|
62740
62739
|
|
|
62741
62740
|
// TreeMap
|
|
@@ -63497,7 +63496,7 @@ $kendo-map-zoom-control-button-padding-y: $kendo-map-zoom-control-button-padding
|
|
|
63497
63496
|
$kendo-map-attribution-padding-x: $kendo-padding-sm-x !default;
|
|
63498
63497
|
$kendo-map-attribution-padding-y: $kendo-padding-sm-y !default;
|
|
63499
63498
|
$kendo-map-attribution-font-size: ($kendo-map-font-size * .75) !default;
|
|
63500
|
-
$kendo-map-attribution-bg: if($kendo-enable-color-system,
|
|
63499
|
+
$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;
|
|
63501
63500
|
|
|
63502
63501
|
$kendo-map-marker-fill: $kendo-color-primary !default;
|
|
63503
63502
|
|
|
@@ -63843,7 +63842,7 @@ $kendo-orgchart-node-group-border: $kendo-base-border !default;
|
|
|
63843
63842
|
$kendo-orgchart-node-group-focus-border: $kendo-card-focus-border !default;
|
|
63844
63843
|
/// The shadow of the focused OrgChart node group.
|
|
63845
63844
|
/// @group orgchart
|
|
63846
|
-
$kendo-orgchart-node-group-focus-shadow: 0 2px 4px -1px
|
|
63845
|
+
$kendo-orgchart-node-group-focus-shadow: 0 2px 4px -1px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 20%, transparent), rgba( $elevation, .2 )), 0 4px 5px 0 if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 14%, transparent), rgba( $elevation, .14 )), 0 1px 10px 0 if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 12%, transparent), rgba( $elevation, .12 )) !default;
|
|
63847
63846
|
|
|
63848
63847
|
/// The font size of the OrgChart node group title.
|
|
63849
63848
|
/// @group orgchart
|
|
@@ -64187,7 +64186,7 @@ $kendo-signature-lg-padding-y: $kendo-signature-lg-padding-x !default;
|
|
|
64187
64186
|
|
|
64188
64187
|
$kendo-signature-line-width: 1px !default;
|
|
64189
64188
|
$kendo-signature-line-style: dashed !default;
|
|
64190
|
-
$kendo-signature-line-color: if($kendo-enable-color-system,
|
|
64189
|
+
$kendo-signature-line-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( info ) 24%, transparent), rgba( $kendo-color-info, .24 )) !default;
|
|
64191
64190
|
|
|
64192
64191
|
$kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
|
|
64193
64192
|
$kendo-signature-sm-line-size: calc( 100% - 2 * #{$kendo-signature-sm-padding-x} ) !default;
|