@progress/kendo-theme-classic 6.8.0-dev.2 → 7.0.0-dev.0

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.
Files changed (39) hide show
  1. package/dist/all.css +152 -89
  2. package/dist/all.scss +193 -93
  3. package/dist/meta/sassdoc-data.json +318 -210
  4. package/dist/meta/sassdoc-raw-data.json +113 -63
  5. package/dist/meta/variables.json +96 -100
  6. package/lib/swatches/classic-green-dark.json +1 -1
  7. package/lib/swatches/classic-green.json +1 -1
  8. package/lib/swatches/classic-lavender-dark.json +1 -1
  9. package/lib/swatches/classic-lavender.json +1 -1
  10. package/lib/swatches/classic-main-dark.json +1 -1
  11. package/lib/swatches/classic-main.json +1 -1
  12. package/lib/swatches/classic-metro-dark.json +1 -1
  13. package/lib/swatches/classic-metro.json +1 -1
  14. package/lib/swatches/classic-moonlight.json +1 -1
  15. package/lib/swatches/classic-opal-dark.json +1 -1
  16. package/lib/swatches/classic-opal.json +1 -1
  17. package/lib/swatches/classic-silver-dark.json +1 -1
  18. package/lib/swatches/classic-silver.json +1 -1
  19. package/lib/swatches/classic-uniform.json +1 -1
  20. package/package.json +5 -5
  21. package/scss/action-sheet/_variables.scss +1 -1
  22. package/scss/appbar/_variables.scss +2 -2
  23. package/scss/bottom-navigation/_variables.scss +2 -2
  24. package/scss/card/_variables.scss +2 -2
  25. package/scss/chat/_variables.scss +6 -6
  26. package/scss/coloreditor/_variables.scss +2 -2
  27. package/scss/colorgradient/_variables.scss +14 -8
  28. package/scss/common/_index.scss +1 -0
  29. package/scss/common/_indicators.scss +1 -0
  30. package/scss/core/_index.scss +3 -0
  31. package/scss/fab/_variables.scss +2 -2
  32. package/scss/pdf-viewer/_variables.scss +1 -1
  33. package/scss/pivotgrid/_variables.scss +5 -4
  34. package/scss/popup/_variables.scss +1 -1
  35. package/scss/scheduler/_variables.scss +1 -3
  36. package/scss/tabstrip/_variables.scss +1 -1
  37. package/scss/timeline/_variables.scss +1 -1
  38. package/scss/tooltip/_variables.scss +2 -0
  39. package/scss/window/_variables.scss +2 -2
package/dist/all.scss CHANGED
@@ -1242,7 +1242,7 @@ $_kendo-escape-class-name: (
1242
1242
  /// @debug k-map-deep-merge( ( "foo": ("bar": "baz", "baz": "qux" ) ), ( "foo": ("bar": "foo") ) ); // => ( "foo": ("bar": "foo", "baz": "qux" ))
1243
1243
  @function k-map-deep-merge($maps...) {
1244
1244
  $merged: ();
1245
-
1245
+
1246
1246
  @each $map in $maps {
1247
1247
  @each $key, $val in $map {
1248
1248
  @if (k-meta-type-of($val) == 'map') {
@@ -1260,7 +1260,7 @@ $_kendo-escape-class-name: (
1260
1260
  }
1261
1261
  $merged: k-map-merge($merged, $map);
1262
1262
  }
1263
-
1263
+
1264
1264
  @return $merged;
1265
1265
  }
1266
1266
 
@@ -3324,21 +3324,6 @@ $kendo-focus-outline: k-get-theme-color-var( neutral-130 ) !default;
3324
3324
 
3325
3325
  $kendo-subtle-text: k-get-theme-color-var( neutral-130 ) !default;
3326
3326
 
3327
- // Shadows
3328
-
3329
- /// Shadow for cards and grid item thumbnails.
3330
- /// Equivalent to fluent depth 4.
3331
- $kendo-box-shadow-depth-1: 0 1.6px 3.6px rgba( $kendo-color-black, 0.132 ), 0 0.3px 0.9px rgba( $kendo-color-black, 0.108 ) !default;
3332
- /// Shadow for command bars and dropdowns.
3333
- /// Equivalent to fluent depth 8.
3334
- $kendo-box-shadow-depth-2: 0 3.2px 7.2px rgba( $kendo-color-black, 0.132 ), 0 0.6px 1.8px rgba( $kendo-color-black, 0.108 ) !default;
3335
- /// Shadow for teaching callouts and hover cards / tooltips.
3336
- /// Equivalent to fluent depth 16.
3337
- $kendo-box-shadow-depth-3: 0 6.4px 14.4px rgba( $kendo-color-black, 0.132 ), 0 1.2px 3.6px rgba( $kendo-color-black, 0.108 ) !default;
3338
- /// Shadow for panels and pop up dialogs.
3339
- /// Equivalent to fluent depth 64.
3340
- $kendo-box-shadow-depth-4: 0 25.6px 57.6px rgba( $kendo-color-black, 0.22 ), 0 4.8px 14.4px rgba( $kendo-color-black, 0.18 ) !default;
3341
-
3342
3327
  // Link
3343
3328
  $kendo-link-text: k-get-theme-color-var( primary-100 ) !default;
3344
3329
  $kendo-link-hover-text: k-get-theme-color-var( primary-120 ) !default;
@@ -3401,11 +3386,6 @@ $kendo-theme-colors: (
3401
3386
  --kendo-component-text: #{$kendo-component-text};
3402
3387
  --kendo-component-border: #{$kendo-component-border};
3403
3388
 
3404
- --kendo-box-shadow-depth-1: #{$kendo-box-shadow-depth-1};
3405
- --kendo-box-shadow-depth-2: #{$kendo-box-shadow-depth-2};
3406
- --kendo-box-shadow-depth-3: #{$kendo-box-shadow-depth-3};
3407
- --kendo-box-shadow-depth-4: #{$kendo-box-shadow-depth-4};
3408
-
3409
3389
  --kendo-link-text: #{$kendo-link-text};
3410
3390
  --kendo-link-hover-text: #{$kendo-link-hover-text};
3411
3391
 
@@ -4862,6 +4842,75 @@ $_imported: () !default;
4862
4842
  @include kendo-core--styles--selection();
4863
4843
  }
4864
4844
 
4845
+ // #endregion
4846
+ // #region @import "./elevation/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/elevation/index.import.scss
4847
+ // #region @import "../functions/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
4848
+ // File already imported_once. Skipping output.
4849
+ // #endregion
4850
+
4851
+ $_default-elevation: (
4852
+ 1: (
4853
+ 0 2px 3px rgba(0, 0, 0, .04),
4854
+ 0 4px 16px rgba(0, 0, 0, .12)
4855
+ ),
4856
+ 2: (
4857
+ 0 4px 6px rgba(0, 0, 0, .06),
4858
+ 0 4px 16px rgba(0, 0, 0, .12)
4859
+ ),
4860
+ 3: (
4861
+ 0 6px 8px rgba(0, 0, 0, .08),
4862
+ 0 4px 16px rgba(0, 0, 0, .12)
4863
+ ),
4864
+ 4: (
4865
+ 0 8px 10px rgba(0, 0, 0, .12),
4866
+ 0 4px 16px rgba(0, 0, 0, .12)
4867
+ ),
4868
+ 5: (
4869
+ 0 10px 12px rgba(0, 0, 0, .16),
4870
+ 0 4px 16px rgba(0, 0, 0, .12)
4871
+ ),
4872
+ 6: (
4873
+ 0 12px 14px rgba(0, 0, 0, .2),
4874
+ 0 4px 16px rgba(0, 0, 0, .12)
4875
+ ),
4876
+ 7: (
4877
+ 0 14px 16px rgba(0, 0, 0, .24),
4878
+ 0 4px 16px rgba(0, 0, 0, .12)
4879
+ ),
4880
+ 8: (
4881
+ 0 16px 18px rgba(0, 0, 0, .28),
4882
+ 0 4px 16px rgba(0, 0, 0, .12)
4883
+ ),
4884
+ 9: (
4885
+ 0 32px 34px rgba(0, 0, 0, .32),
4886
+ 0 4px 16px rgba(0, 0, 0, .12)
4887
+ )
4888
+ ) !default;
4889
+
4890
+ $kendo-elevation: $_default-elevation !default;
4891
+ $kendo-elevation: k-map-merge($_default-elevation, $kendo-elevation);
4892
+
4893
+ @function k-shadow-filter($shadow) {
4894
+ $result: '';
4895
+ @each $value in $shadow {
4896
+ $result: $result + "drop-shadow(" + $value + ") ";
4897
+ }
4898
+ @return #{$result};
4899
+ }
4900
+
4901
+ @function k-elevation($level) {
4902
+ @return var(--kendo-elevation-#{$level}, k-map-get($kendo-elevation, $level));
4903
+ }
4904
+
4905
+
4906
+ @mixin kendo-elevation--styles() {
4907
+ :root {
4908
+ @each $level, $shadow in $kendo-elevation {
4909
+ --kendo-elevation-#{$level}: #{$shadow};
4910
+ }
4911
+ }
4912
+ }
4913
+
4865
4914
  // #endregion
4866
4915
  // #region @import "./_variables.scss"; -> node_modules/@progress/kendo-theme-core/scss/_variables.scss
4867
4916
  // #region @import "./functions/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
@@ -4953,6 +5002,9 @@ $kendo-zindex-loading: 100 !default;
4953
5002
  // Expose
4954
5003
  @include exports("kendo-core-styles") {
4955
5004
  @include kendo-core--styles();
5005
+
5006
+ // Elevation System
5007
+ @include kendo-elevation--styles();
4956
5008
  }
4957
5009
 
4958
5010
  // #endregion
@@ -5878,6 +5930,51 @@ $kendo-zindex-loading: 100 !default;
5878
5930
 
5879
5931
  // #endregion
5880
5932
 
5933
+ // #endregion
5934
+ // #region @import "./_indicators.scss"; -> scss/common/_indicators.scss
5935
+ // #region @import "@progress/kendo-theme-default/scss/common/_indicators.scss"; -> node_modules/@progress/kendo-theme-default/scss/common/_indicators.scss
5936
+ @include exports( "common/indicators/current-time" ) {
5937
+
5938
+ $kendo-current-time-width: 1px !default;
5939
+ $kendo-current-time-color: #ff0000 !default;
5940
+
5941
+ // Layout
5942
+ .k-current-time {
5943
+ width: $kendo-current-time-width;
5944
+ position: absolute;
5945
+
5946
+ &.k-current-time-arrow-left,
5947
+ &.k-current-time-arrow-right,
5948
+ &.k-current-time-arrow-down {
5949
+ width: 0;
5950
+ height: 0;
5951
+ background: transparent;
5952
+ border: 4px solid transparent;
5953
+ }
5954
+ }
5955
+
5956
+
5957
+ // Theme
5958
+ .k-current-time {
5959
+ background: $kendo-current-time-color;
5960
+
5961
+ &.k-current-time-arrow-left {
5962
+ border-right-color: $kendo-current-time-color;
5963
+ }
5964
+
5965
+ &.k-current-time-arrow-right {
5966
+ border-left-color: $kendo-current-time-color;
5967
+ }
5968
+
5969
+ &.k-current-time-arrow-down {
5970
+ border-top-color: $kendo-current-time-color;
5971
+ }
5972
+ }
5973
+
5974
+ }
5975
+
5976
+ // #endregion
5977
+
5881
5978
  // #endregion
5882
5979
  // #region @import "./_resizing.scss"; -> scss/common/_resizing.scss
5883
5980
  // #region @import "@progress/kendo-theme-default/scss/common/_resizing.scss"; -> node_modules/@progress/kendo-theme-default/scss/common/_resizing.scss
@@ -13911,6 +14008,21 @@ $kendo-utils: (
13911
14008
 
13912
14009
  // #endregion
13913
14010
 
14011
+ // #region @import "./elevation/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/elevation/index.import.scss
14012
+ // #region @import "@progress/kendo-theme-core/scss/elevation/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/elevation/index.import.scss
14013
+ // File already imported_once. Skipping output.
14014
+ // #endregion
14015
+
14016
+ @mixin kendo-utils--elevation {
14017
+ @each $level, $elevation in $kendo-elevation {
14018
+ .k-elevation-#{$level} {
14019
+ box-shadow: $elevation;
14020
+ }
14021
+ }
14022
+ }
14023
+
14024
+ // #endregion
14025
+
13914
14026
 
13915
14027
  // Mixin for all styles
13916
14028
  @mixin kendo-utils() {
@@ -13928,6 +14040,8 @@ $kendo-utils: (
13928
14040
  @include kendo-utils--transform();
13929
14041
  @include kendo-utils--interactivity();
13930
14042
  @include kendo-utils--svg();
14043
+
14044
+ @include kendo-utils--elevation();
13931
14045
  }
13932
14046
 
13933
14047
  // #endregion
@@ -17861,7 +17975,7 @@ $kendo-popup-text: $kendo-component-text !default;
17861
17975
  $kendo-popup-border: $kendo-component-border !default;
17862
17976
  /// Box shadow of the popup.
17863
17977
  /// @group popup
17864
- $kendo-popup-shadow: 0 2px 4px 0 rgba( black, .03 ), 0 4px 5px 0 rgba( black, .04 ) !default;
17978
+ $kendo-popup-shadow: k-elevation(4) !default;
17865
17979
 
17866
17980
  // #endregion
17867
17981
  // #region @import "./_layout.scss"; -> scss/popup/_layout.scss
@@ -24091,6 +24205,8 @@ $kendo-tooltip-bg: rgba( k-contrast-color( $kendo-body-bg ), .75 ) !default;
24091
24205
  $kendo-tooltip-text: k-contrast-color( $kendo-tooltip-bg ) !default;
24092
24206
  $kendo-tooltip-border: $kendo-tooltip-bg !default;
24093
24207
 
24208
+ $kendo-tooltip-shadow: k-elevation(2) !default;
24209
+
24094
24210
  $kendo-tooltip-primary-bg: $kendo-color-primary !default;
24095
24211
  $kendo-tooltip-primary-text: k-contrast-legacy( $kendo-tooltip-primary-bg ) !default;
24096
24212
  $kendo-tooltip-primary-border: $kendo-tooltip-primary-bg !default;
@@ -24192,10 +24308,10 @@ $kendo-window-text: $kendo-component-text !default;
24192
24308
  $kendo-window-border: $kendo-component-border !default;
24193
24309
  /// The box shadow of the Window.
24194
24310
  /// @group window
24195
- $kendo-window-shadow: 1px 1px 7px 1px rgba( black, .12 ) !default;
24311
+ $kendo-window-shadow: k-elevation(8) !default;
24196
24312
  /// The box shadow of the focused Window.
24197
24313
  /// @group window
24198
- $kendo-window-focus-shadow: 1px 1px 7px 1px rgba( black, .25 ) !default;
24314
+ $kendo-window-focus-shadow: k-elevation(9) !default;
24199
24315
 
24200
24316
  /// The background color of the Window titlebar.
24201
24317
  /// @group window
@@ -25072,7 +25188,7 @@ $_kendo-module-meta: (
25072
25188
 
25073
25189
  .k-tooltip-wrapper {
25074
25190
  .k-tooltip {
25075
- box-shadow: $kendo-popup-shadow;
25191
+ box-shadow: $kendo-tooltip-shadow;
25076
25192
  }
25077
25193
  }
25078
25194
 
@@ -29714,6 +29830,7 @@ $kendo-calendar-sizes: (
29714
29830
  );
29715
29831
 
29716
29832
 
29833
+ // TODO: do we even use this?
29717
29834
  // Header / footer
29718
29835
  .k-header {
29719
29836
  @include fill(
@@ -31151,7 +31268,7 @@ $kendo-color-gradient-border: $kendo-component-border !default;
31151
31268
  $kendo-color-gradient-focus-border: null !default;
31152
31269
  /// The box shadow of the focused ColorGradient.
31153
31270
  /// @group cologradient
31154
- $kendo-color-gradient-focus-shadow: 1px 1px 7px 1px rgba( black, .3 ) !default;
31271
+ $kendo-color-gradient-focus-shadow: k-elevation(3) !default;
31155
31272
 
31156
31273
  /// The border radius of the ColorGradient canvas.
31157
31274
  /// @group cologradient
@@ -31189,6 +31306,9 @@ $kendo-color-gradient-draghandle-height: 14px !default;
31189
31306
  /// The width of the border around the ColorGradient canvas drag handle.
31190
31307
  /// @group cologradient
31191
31308
  $kendo-color-gradient-draghandle-border-width: 1px !default;
31309
+ /// The width of the outline around the ColorGradient canvas drag handle.
31310
+ /// @group cologradient
31311
+ $kendo-color-gradient-draghandle-outline-width: 1px !default;
31192
31312
  /// The border radius of the ColorGradient canvas drag handle.
31193
31313
  /// @group cologradient
31194
31314
  $kendo-color-gradient-draghandle-border-radius: 50% !default;
@@ -31201,15 +31321,18 @@ $kendo-color-gradient-draghandle-bg: transparent !default;
31201
31321
  /// The color of the border around the ColorGradient canvas drag handle.
31202
31322
  /// @group cologradient
31203
31323
  $kendo-color-gradient-draghandle-border: rgba( white, .8) !default;
31204
- /// The box shadow of the ColorGradient canvas drag handle.
31324
+ /// The color of the outline around the ColorGradient canvas drag handle.
31205
31325
  /// @group cologradient
31206
- $kendo-color-gradient-draghandle-shadow: 0 1px 4px rgba( black, .5 ) !default;
31207
- /// The box shadow of the focused ColorGradient canvas drag handle.
31326
+ $kendo-color-gradient-draghandle-shadow: rgba( $kendo-color-black, .5) !default;
31327
+ /// The focus color of the outline around the ColorGradient canvas drag handle.
31208
31328
  /// @group cologradient
31209
- $kendo-color-gradient-draghandle-focus-shadow: 0 1px 4px black !default;
31210
- /// The box shadow of the hovered ColorGradient canvas drag handle.
31329
+ $kendo-color-gradient-draghandle-focus-shadow: $kendo-color-black !default;
31330
+ /// The outline color of the outline around the ColorGradient canvas drag handle.
31331
+ /// @group cologradient
31332
+ $kendo-color-gradient-draghandle-hover-shadow: $kendo-color-black !default;
31333
+ /// The box shadow of the ColorGradient canvas drag handle.
31211
31334
  /// @group cologradient
31212
- $kendo-color-gradient-draghandle-hover-shadow: $kendo-color-gradient-draghandle-focus-shadow !default;
31335
+ $kendo-color-gradient-draghandle-shadow: k-elevation(2) !default;
31213
31336
 
31214
31337
  /// The vertical margin of the ColorGradient canvas drag handle.
31215
31338
  /// @group cologradient
@@ -31237,6 +31360,7 @@ $kendo-color-gradient-contrast-ratio-font-weight: $kendo-font-weight-bold !defau
31237
31360
  /// The spacing between the items in the ColorGradient contrast tool.
31238
31361
  /// @group cologradient
31239
31362
  $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer, 1.5 ) !default;
31363
+
31240
31364
  // #endregion
31241
31365
  // #region @import "./_layout.scss"; -> scss/colorgradient/_layout.scss
31242
31366
  // #region @import "@progress/kendo-theme-default/scss/colorgradient/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/colorgradient/_layout.scss
@@ -31309,6 +31433,8 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
31309
31433
  height: $kendo-color-gradient-draghandle-height;
31310
31434
  border-width: $kendo-color-gradient-draghandle-border-width;
31311
31435
  border-style: solid;
31436
+ outline-width: $kendo-color-gradient-draghandle-outline-width;
31437
+ outline-style: solid;
31312
31438
  box-sizing: border-box;
31313
31439
  }
31314
31440
 
@@ -31474,12 +31600,14 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
31474
31600
  $kendo-color-gradient-draghandle-bg,
31475
31601
  $kendo-color-gradient-draghandle-border
31476
31602
  );
31603
+ outline-color: $kendo-color-gradient-draghandle-focus-shadow;
31477
31604
  @include box-shadow( $kendo-color-gradient-draghandle-shadow );
31478
31605
 
31479
31606
  &:focus,
31480
31607
  &.k-focus {
31481
31608
  @include fill( $bg: transparent, $border: $kendo-color-white );
31482
- @include focus-indicator( $kendo-color-gradient-draghandle-focus-shadow );
31609
+ outline-color: $kendo-color-gradient-draghandle-focus-shadow;
31610
+ @include focus-indicator( $kendo-color-gradient-draghandle-shadow );
31483
31611
  }
31484
31612
 
31485
31613
  &:hover,
@@ -31487,7 +31615,7 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
31487
31615
  &.k-active,
31488
31616
  &:active {
31489
31617
  @include fill( $bg: transparent, $border: $kendo-color-white );
31490
- @include box-shadow( $kendo-color-gradient-draghandle-hover-shadow );
31618
+ outline-color: $kendo-color-gradient-draghandle-hover-shadow;
31491
31619
  }
31492
31620
  }
31493
31621
 
@@ -31642,7 +31770,7 @@ $kendo-color-editor-border: $kendo-component-border !default;
31642
31770
  $kendo-color-editor-focus-border: null !default;
31643
31771
  /// The box shadow of the focused ColorEditor.
31644
31772
  /// @group coloreditor
31645
- $kendo-color-editor-focus-shadow: 1px 1px 7px 1px rgba( black, .3 ) !default;
31773
+ $kendo-color-editor-focus-shadow: k-elevation(3) !default;
31646
31774
 
31647
31775
  /// The vertical padding of the ColorEditor header.
31648
31776
  /// @group coloreditor
@@ -31683,6 +31811,7 @@ $kendo-color-editor-color-gradient-focus-outline: 2px !default;
31683
31811
  /// The outline offset of the focused ColorGradient.
31684
31812
  /// @group coloreditor
31685
31813
  $kendo-color-editor-color-gradient-focus-outline-offset: 4px !default;
31814
+
31686
31815
  // #endregion
31687
31816
  // #region @import "./_layout.scss"; -> scss/coloreditor/_layout.scss
31688
31817
  // #region @import "@progress/kendo-theme-default/scss/coloreditor/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/coloreditor/_layout.scss
@@ -34181,14 +34310,14 @@ $kendo-rating-icon-focus-selected-shadow: 0 2px 4px rgba( black, .1) !default;
34181
34310
  text-shadow: $kendo-rating-icon-focus-shadow;
34182
34311
  }
34183
34312
  > .k-svg-icon {
34184
- filter: drop-shadow( $kendo-rating-icon-focus-shadow );
34313
+ filter: k-shadow-filter($kendo-rating-icon-focus-selected-shadow);
34185
34314
  }
34186
34315
 
34187
34316
  &.k-selected > .k-icon {
34188
34317
  text-shadow: $kendo-rating-icon-focus-selected-shadow;
34189
34318
  }
34190
34319
  &.k-selected > .k-svg-icon {
34191
- filter: drop-shadow( $kendo-rating-icon-focus-selected-shadow );
34320
+ filter: k-shadow-filter($kendo-rating-icon-focus-selected-shadow);
34192
34321
  }
34193
34322
  }
34194
34323
  }
@@ -35750,10 +35879,11 @@ $kendo-appbar-dark-text: k-contrast-color( $kendo-color-dark ) !default;
35750
35879
 
35751
35880
  /// The box shadow of the AppBar.
35752
35881
  /// @group appbar
35753
- $kendo-appbar-box-shadow: 0px 1px 1px rgba( black, .16 ) !default;
35882
+ $kendo-appbar-box-shadow: k-elevation(4) !default;
35754
35883
  /// The box shadow of the AppBar with bottom position.
35755
35884
  /// @group appbar
35756
- $kendo-appbar-bottom-box-shadow: 0px -1px 1px rgba( black, .16 ) !default;
35885
+ $kendo-appbar-bottom-box-shadow: k-elevation(4) !default;
35886
+
35757
35887
  // #endregion
35758
35888
  // #region @import "./_layout.scss"; -> scss/appbar/_layout.scss
35759
35889
  // #region @import "@progress/kendo-theme-default/scss/appbar/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/appbar/_layout.scss
@@ -36104,10 +36234,10 @@ $kendo-fab-sizes: (
36104
36234
 
36105
36235
  /// The base shadow of the FAB.
36106
36236
  /// @group floating-action-button
36107
- $kendo-fab-shadow: 0 6px 10px rgba( black, .14 ), 0 1px 18px rgba( black, .12 ), 0 3px 5px rgba( black, .2 ) !default;
36237
+ $kendo-fab-shadow: k-elevation(5) !default;
36108
36238
  /// The shadow of the disabled FAB.
36109
36239
  /// @group floating-action-button
36110
- $kendo-fab-disabled-shadow: 0 6px 10px k-try-tint( rgba( black, .14 ), .5 ), 0 1px 18px k-try-tint( rgba( black, .12 ), .5 ), 0 3px 5px k-try-tint( rgba( black, .2 ), .5 ) !default;
36240
+ $kendo-fab-disabled-shadow: k-elevation(5) !default;
36111
36241
  /// The shadow of the active FAB.
36112
36242
  /// @group floating-action-button
36113
36243
  $kendo-fab-active-shadow: null !default;
@@ -36543,7 +36673,7 @@ $kendo-actionsheet-line-height: $kendo-line-height-md !default;
36543
36673
  $kendo-actionsheet-bg: $kendo-component-bg !default;
36544
36674
  $kendo-actionsheet-text: $kendo-component-text !default;
36545
36675
  $kendo-actionsheet-border: $kendo-component-border !default;
36546
- $kendo-actionsheet-shadow: 0 8px 10px -5px rgba( black, .2 ), 0 16px 24px 2px rgba( black, .14 ), 0 6px 30px 5px rgba( black, .12 ) !default;
36676
+ $kendo-actionsheet-shadow: k-elevation(7) !default;
36547
36677
 
36548
36678
 
36549
36679
  // Actionsheet header
@@ -38405,12 +38535,12 @@ $kendo-card-deck-gap: k-map-get( $kendo-spacing, 4 ) !default;
38405
38535
  $kendo-card-bg: $kendo-component-bg !default;
38406
38536
  $kendo-card-text: $kendo-component-text !default;
38407
38537
  $kendo-card-border: $kendo-component-border !default;
38408
- $kendo-card-shadow: null !default;
38538
+ $kendo-card-shadow: k-elevation(1) !default;
38409
38539
 
38410
38540
  $kendo-card-focus-bg: null !default;
38411
38541
  $kendo-card-focus-text: null !default;
38412
38542
  $kendo-card-focus-border: rgba( black, .15 ) !default;
38413
- $kendo-card-focus-shadow: 0 3px 4px 0 rgba( black, .06 ) !default;
38543
+ $kendo-card-focus-shadow: k-elevation(3) !default;
38414
38544
 
38415
38545
  $kendo-card-header-padding-x: $kendo-card-padding-x !default;
38416
38546
  $kendo-card-header-padding-y: $kendo-card-padding-y !default;
@@ -39491,7 +39621,7 @@ $kendo-bottom-nav-item-gap: 0 k-map-get( $kendo-spacing, 1 ) !default;
39491
39621
 
39492
39622
  /// The box shadow of the BottomNavigation.
39493
39623
  /// @group bottom-navigation
39494
- $kendo-bottom-nav-shadow: 0px 0px 5px rgba( black, .12 ) !default;
39624
+ $kendo-bottom-nav-shadow: k-elevation(4) !default;
39495
39625
 
39496
39626
  /// The text color of the flat BottomNavigation.
39497
39627
  /// @group bottom-navigation
@@ -39502,6 +39632,7 @@ $kendo-bottom-nav-flat-bg: $kendo-component-bg !default;
39502
39632
  /// The border color of the flat BottomNavigation.
39503
39633
  /// @group bottom-navigation
39504
39634
  $kendo-bottom-nav-flat-border: $kendo-component-border !default;
39635
+
39505
39636
  // #endregion
39506
39637
  // #region @import "./_layout.scss"; -> scss/bottom-navigation/_layout.scss
39507
39638
  // #region @import "@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss
@@ -39540,6 +39671,7 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
39540
39671
  border-width: $kendo-bottom-nav-border-width;
39541
39672
  }
39542
39673
 
39674
+ // TODO: do we even use this?
39543
39675
  .k-bottom-nav-shadow {
39544
39676
  box-shadow: $kendo-bottom-nav-shadow;
39545
39677
  }
@@ -41505,7 +41637,7 @@ $kendo-tabstrip-item-selected-gradient: false !default;
41505
41637
 
41506
41638
  $kendo-tabstrip-item-focus-shadow: $kendo-list-item-focus-shadow !default;
41507
41639
 
41508
- $kendo-tabstrip-item-dragging-shadow: 0px 3px 4px rgba( black, .15 ) !default;
41640
+ $kendo-tabstrip-item-dragging-shadow: k-elevation(3) !default;
41509
41641
 
41510
41642
  $kendo-tabstrip-item-disabled-bg: null !default;
41511
41643
  $kendo-tabstrip-item-disabled-text: null !default;
@@ -49031,10 +49163,11 @@ $kendo-pivotgrid-configurator-header-bg: null !default;
49031
49163
  $kendo-pivotgrid-configurator-header-text: $kendo-component-header-text !default;
49032
49164
  $kendo-pivotgrid-configurator-header-border: null !default;
49033
49165
 
49034
- $kendo-pivotgrid-configurator-end-shadow: -3px 0px 6px rgba( black, .16 ) !default;
49035
- $kendo-pivotgrid-configurator-start-shadow: 3px 0px 6px rgba( black, .16 ) !default;
49036
- $kendo-pivotgrid-configurator-top-shadow: 0px -3px 6px rgba( black, .16 ) !default;
49037
- $kendo-pivotgrid-configurator-bottom-shadow: 0px 3px 6px rgba( black, .16 ) !default;
49166
+ $kendo-pivotgrid-configurator-shadow: k-elevation(3);
49167
+ $kendo-pivotgrid-configurator-end-shadow: $kendo-pivotgrid-configurator-shadow !default;
49168
+ $kendo-pivotgrid-configurator-start-shadow: $kendo-pivotgrid-configurator-shadow !default;
49169
+ $kendo-pivotgrid-configurator-top-shadow: $kendo-pivotgrid-configurator-shadow !default;
49170
+ $kendo-pivotgrid-configurator-bottom-shadow: $kendo-pivotgrid-configurator-shadow !default;
49038
49171
 
49039
49172
  $kendo-pivotgrid-configurator-button-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
49040
49173
  $kendo-pivotgrid-configurator-button-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
@@ -54293,8 +54426,6 @@ $kendo-scheduler-cell-height: $kendo-line-height-em !default;
54293
54426
  $kendo-scheduler-datecolumn-width: 12em !default;
54294
54427
  $kendo-scheduler-timecolumn-width: 11em !default;
54295
54428
 
54296
- $kendo-scheduler-current-time-color: #ff0000 !default;
54297
-
54298
54429
  $kendo-scheduler-nonwork-bg: k-try-shade( $kendo-scheduler-bg, .5 ) !default;
54299
54430
  $kendo-scheduler-nonwork-text: null !default;
54300
54431
 
@@ -54322,7 +54453,7 @@ $kendo-scheduler-tooltip-border-width: 0 !default;
54322
54453
  $kendo-scheduler-tooltip-bg: $kendo-color-primary-contrast !default;
54323
54454
  $kendo-scheduler-tooltip-text: $kendo-base-text !default;
54324
54455
  $kendo-scheduler-tooltip-border: null !default;
54325
- $kendo-scheduler-tooltip-shadow: 0px 0px 10px rgba( black, .2 ) !default;
54456
+ $kendo-scheduler-tooltip-shadow: k-elevation(2) !default;
54326
54457
 
54327
54458
 
54328
54459
  // TODO: use 3
@@ -54881,20 +55012,6 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
54881
55012
  }
54882
55013
  }
54883
55014
 
54884
- // Current time
54885
- .k-current-time {
54886
- position: absolute;
54887
-
54888
- &.k-current-time-arrow-left,
54889
- &.k-current-time-arrow-right,
54890
- &.k-current-time-arrow-down {
54891
- width: 0;
54892
- height: 0;
54893
- background: transparent;
54894
- border: 4px solid transparent;
54895
- }
54896
- }
54897
-
54898
55015
  // Draging hint
54899
55016
  .k-event-drag-hint {
54900
55017
  opacity: .5;
@@ -55418,23 +55535,6 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
55418
55535
  );
55419
55536
  }
55420
55537
 
55421
- // Current time
55422
- .k-current-time {
55423
- background: $kendo-scheduler-current-time-color;
55424
-
55425
- &.k-current-time-arrow-left {
55426
- border-right-color: $kendo-scheduler-current-time-color;
55427
- }
55428
-
55429
- &.k-current-time-arrow-right {
55430
- border-left-color: $kendo-scheduler-current-time-color;
55431
- }
55432
-
55433
- &.k-current-time-arrow-down {
55434
- border-top-color: $kendo-scheduler-current-time-color;
55435
- }
55436
- }
55437
-
55438
55538
  // Header and footer
55439
55539
  .k-scheduler-toolbar {
55440
55540
  @include fill(
@@ -55794,16 +55894,16 @@ $kendo-chat-border: $kendo-app-border !default;
55794
55894
  $kendo-chat-bubble-bg: $kendo-component-bg !default;
55795
55895
  $kendo-chat-bubble-text: $kendo-component-text !default;
55796
55896
  $kendo-chat-bubble-border: $kendo-chat-bubble-bg !default;
55797
- $kendo-chat-bubble-shadow: 0 1px 2px rgba( black, .08 ) !default;
55798
- $kendo-chat-bubble-hover-shadow: 0 1px 2px rgba( black, .16 ) !default;
55799
- $kendo-chat-bubble-selected-shadow: 0 3px 10px rgba( black, .16 ) !default;
55897
+ $kendo-chat-bubble-shadow: k-elevation(1) !default;
55898
+ $kendo-chat-bubble-hover-shadow: k-elevation(2) !default;
55899
+ $kendo-chat-bubble-selected-shadow: k-elevation(3) !default;
55800
55900
 
55801
55901
  $kendo-chat-alt-bubble-bg: $kendo-color-primary !default;
55802
55902
  $kendo-chat-alt-bubble-text: k-contrast-legacy( $kendo-chat-alt-bubble-bg ) !default;
55803
55903
  $kendo-chat-alt-bubble-border: $kendo-chat-alt-bubble-bg !default;
55804
- $kendo-chat-alt-bubble-shadow: 0 1px 2px rgba( $kendo-chat-alt-bubble-bg, .2 ) !default;
55805
- $kendo-chat-alt-bubble-hover-shadow: 0 1px 2px rgba( $kendo-chat-alt-bubble-bg, .2 ) !default;
55806
- $kendo-chat-alt-bubble-selected-shadow: 0 3px 10px rgba( $kendo-chat-alt-bubble-bg, .4 ) !default;
55904
+ $kendo-chat-alt-bubble-shadow: k-elevation(1) !default;
55905
+ $kendo-chat-alt-bubble-hover-shadow: k-elevation(2) !default;
55906
+ $kendo-chat-alt-bubble-selected-shadow: k-elevation(3) !default;
55807
55907
 
55808
55908
  $kendo-chat-quick-reply-bg: transparent !default;
55809
55909
  $kendo-chat-quick-reply-text: $kendo-color-primary !default;
@@ -56718,7 +56818,7 @@ $kendo-timeline-track-end-calc: calc(#{$kendo-timeline-track-arrow-width} - 2 *
56718
56818
  $kendo-timeline-track-bg: $kendo-button-bg !default;
56719
56819
  $kendo-timeline-track-border-color: $kendo-button-border !default;
56720
56820
 
56721
- $kendo-timeline-track-item-focus-shadow: 0 3px 4px 0 rgba( $kendo-color-primary, .4 ) !default;
56821
+ $kendo-timeline-track-item-focus-shadow: k-elevation(2) !default;
56722
56822
 
56723
56823
  $kendo-timeline-track-event-offset: 36px !default;
56724
56824
 
@@ -57401,7 +57501,7 @@ $kendo-pdf-viewer-page-spacing: 30px !default;
57401
57501
  $kendo-pdf-viewer-page-bg: white !default;
57402
57502
  $kendo-pdf-viewer-page-text: $kendo-component-text !default;
57403
57503
  $kendo-pdf-viewer-page-border: $kendo-component-border !default;
57404
- $kendo-pdf-viewer-page-shadow: 0 0 k-math-div( $kendo-pdf-viewer-page-spacing, 2 ) $kendo-pdf-viewer-page-border !default;
57504
+ $kendo-pdf-viewer-page-shadow: k-elevation(3) !default;
57405
57505
 
57406
57506
  $kendo-pdf-viewer-search-panel-padding-x: $kendo-toolbar-md-padding-x !default;
57407
57507
  $kendo-pdf-viewer-search-panel-padding-y: k-map-get( $kendo-spacing, 3 ) !default;