@progress/kendo-theme-classic 6.8.0-dev.1 → 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 (44) hide show
  1. package/dist/all.css +422 -116
  2. package/dist/all.scss +684 -134
  3. package/dist/meta/sassdoc-data.json +15929 -13925
  4. package/dist/meta/sassdoc-raw-data.json +988 -63
  5. package/dist/meta/variables.json +249 -113
  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/dock-manager/_index.scss +38 -0
  32. package/scss/dock-manager/_layout.scss +6 -0
  33. package/scss/dock-manager/_theme.scss +6 -0
  34. package/scss/dock-manager/_variables.scss +113 -0
  35. package/scss/fab/_variables.scss +2 -2
  36. package/scss/index.scss +2 -0
  37. package/scss/pdf-viewer/_variables.scss +4 -5
  38. package/scss/pivotgrid/_variables.scss +5 -4
  39. package/scss/popup/_variables.scss +1 -1
  40. package/scss/scheduler/_variables.scss +1 -3
  41. package/scss/tabstrip/_variables.scss +1 -1
  42. package/scss/timeline/_variables.scss +1 -1
  43. package/scss/tooltip/_variables.scss +2 -0
  44. 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
 
@@ -3831,6 +3811,7 @@ $kendo-components: (
3831
3811
  "panelbar",
3832
3812
  "splitter",
3833
3813
  "tile-layout",
3814
+ "dock-manager",
3834
3815
 
3835
3816
  // Data management
3836
3817
  "grid",
@@ -4003,6 +3984,11 @@ $_kendo-dependencies: (
4003
3984
  "treeview"
4004
3985
  ),
4005
3986
  dropzone: (),
3987
+ dock-manager: (
3988
+ "splitter",
3989
+ "toolbar",
3990
+ "tabstrip"
3991
+ ),
4006
3992
  editor: (
4007
3993
  "button",
4008
3994
  "checkbox",
@@ -4856,6 +4842,75 @@ $_imported: () !default;
4856
4842
  @include kendo-core--styles--selection();
4857
4843
  }
4858
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
+
4859
4914
  // #endregion
4860
4915
  // #region @import "./_variables.scss"; -> node_modules/@progress/kendo-theme-core/scss/_variables.scss
4861
4916
  // #region @import "./functions/index.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
@@ -4947,6 +5002,9 @@ $kendo-zindex-loading: 100 !default;
4947
5002
  // Expose
4948
5003
  @include exports("kendo-core-styles") {
4949
5004
  @include kendo-core--styles();
5005
+
5006
+ // Elevation System
5007
+ @include kendo-elevation--styles();
4950
5008
  }
4951
5009
 
4952
5010
  // #endregion
@@ -5872,6 +5930,51 @@ $kendo-zindex-loading: 100 !default;
5872
5930
 
5873
5931
  // #endregion
5874
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
+
5875
5978
  // #endregion
5876
5979
  // #region @import "./_resizing.scss"; -> scss/common/_resizing.scss
5877
5980
  // #region @import "@progress/kendo-theme-default/scss/common/_resizing.scss"; -> node_modules/@progress/kendo-theme-default/scss/common/_resizing.scss
@@ -13905,6 +14008,21 @@ $kendo-utils: (
13905
14008
 
13906
14009
  // #endregion
13907
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
+
13908
14026
 
13909
14027
  // Mixin for all styles
13910
14028
  @mixin kendo-utils() {
@@ -13922,6 +14040,8 @@ $kendo-utils: (
13922
14040
  @include kendo-utils--transform();
13923
14041
  @include kendo-utils--interactivity();
13924
14042
  @include kendo-utils--svg();
14043
+
14044
+ @include kendo-utils--elevation();
13925
14045
  }
13926
14046
 
13927
14047
  // #endregion
@@ -17855,7 +17975,7 @@ $kendo-popup-text: $kendo-component-text !default;
17855
17975
  $kendo-popup-border: $kendo-component-border !default;
17856
17976
  /// Box shadow of the popup.
17857
17977
  /// @group popup
17858
- $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;
17859
17979
 
17860
17980
  // #endregion
17861
17981
  // #region @import "./_layout.scss"; -> scss/popup/_layout.scss
@@ -24085,6 +24205,8 @@ $kendo-tooltip-bg: rgba( k-contrast-color( $kendo-body-bg ), .75 ) !default;
24085
24205
  $kendo-tooltip-text: k-contrast-color( $kendo-tooltip-bg ) !default;
24086
24206
  $kendo-tooltip-border: $kendo-tooltip-bg !default;
24087
24207
 
24208
+ $kendo-tooltip-shadow: k-elevation(2) !default;
24209
+
24088
24210
  $kendo-tooltip-primary-bg: $kendo-color-primary !default;
24089
24211
  $kendo-tooltip-primary-text: k-contrast-legacy( $kendo-tooltip-primary-bg ) !default;
24090
24212
  $kendo-tooltip-primary-border: $kendo-tooltip-primary-bg !default;
@@ -24186,10 +24308,10 @@ $kendo-window-text: $kendo-component-text !default;
24186
24308
  $kendo-window-border: $kendo-component-border !default;
24187
24309
  /// The box shadow of the Window.
24188
24310
  /// @group window
24189
- $kendo-window-shadow: 1px 1px 7px 1px rgba( black, .12 ) !default;
24311
+ $kendo-window-shadow: k-elevation(8) !default;
24190
24312
  /// The box shadow of the focused Window.
24191
24313
  /// @group window
24192
- $kendo-window-focus-shadow: 1px 1px 7px 1px rgba( black, .25 ) !default;
24314
+ $kendo-window-focus-shadow: k-elevation(9) !default;
24193
24315
 
24194
24316
  /// The background color of the Window titlebar.
24195
24317
  /// @group window
@@ -25066,7 +25188,7 @@ $_kendo-module-meta: (
25066
25188
 
25067
25189
  .k-tooltip-wrapper {
25068
25190
  .k-tooltip {
25069
- box-shadow: $kendo-popup-shadow;
25191
+ box-shadow: $kendo-tooltip-shadow;
25070
25192
  }
25071
25193
  }
25072
25194
 
@@ -29708,6 +29830,7 @@ $kendo-calendar-sizes: (
29708
29830
  );
29709
29831
 
29710
29832
 
29833
+ // TODO: do we even use this?
29711
29834
  // Header / footer
29712
29835
  .k-header {
29713
29836
  @include fill(
@@ -31145,7 +31268,7 @@ $kendo-color-gradient-border: $kendo-component-border !default;
31145
31268
  $kendo-color-gradient-focus-border: null !default;
31146
31269
  /// The box shadow of the focused ColorGradient.
31147
31270
  /// @group cologradient
31148
- $kendo-color-gradient-focus-shadow: 1px 1px 7px 1px rgba( black, .3 ) !default;
31271
+ $kendo-color-gradient-focus-shadow: k-elevation(3) !default;
31149
31272
 
31150
31273
  /// The border radius of the ColorGradient canvas.
31151
31274
  /// @group cologradient
@@ -31183,6 +31306,9 @@ $kendo-color-gradient-draghandle-height: 14px !default;
31183
31306
  /// The width of the border around the ColorGradient canvas drag handle.
31184
31307
  /// @group cologradient
31185
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;
31186
31312
  /// The border radius of the ColorGradient canvas drag handle.
31187
31313
  /// @group cologradient
31188
31314
  $kendo-color-gradient-draghandle-border-radius: 50% !default;
@@ -31195,15 +31321,18 @@ $kendo-color-gradient-draghandle-bg: transparent !default;
31195
31321
  /// The color of the border around the ColorGradient canvas drag handle.
31196
31322
  /// @group cologradient
31197
31323
  $kendo-color-gradient-draghandle-border: rgba( white, .8) !default;
31198
- /// The box shadow of the ColorGradient canvas drag handle.
31324
+ /// The color of the outline around the ColorGradient canvas drag handle.
31199
31325
  /// @group cologradient
31200
- $kendo-color-gradient-draghandle-shadow: 0 1px 4px rgba( black, .5 ) !default;
31201
- /// 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.
31202
31328
  /// @group cologradient
31203
- $kendo-color-gradient-draghandle-focus-shadow: 0 1px 4px black !default;
31204
- /// 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.
31205
31331
  /// @group cologradient
31206
- $kendo-color-gradient-draghandle-hover-shadow: $kendo-color-gradient-draghandle-focus-shadow !default;
31332
+ $kendo-color-gradient-draghandle-hover-shadow: $kendo-color-black !default;
31333
+ /// The box shadow of the ColorGradient canvas drag handle.
31334
+ /// @group cologradient
31335
+ $kendo-color-gradient-draghandle-shadow: k-elevation(2) !default;
31207
31336
 
31208
31337
  /// The vertical margin of the ColorGradient canvas drag handle.
31209
31338
  /// @group cologradient
@@ -31231,6 +31360,7 @@ $kendo-color-gradient-contrast-ratio-font-weight: $kendo-font-weight-bold !defau
31231
31360
  /// The spacing between the items in the ColorGradient contrast tool.
31232
31361
  /// @group cologradient
31233
31362
  $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer, 1.5 ) !default;
31363
+
31234
31364
  // #endregion
31235
31365
  // #region @import "./_layout.scss"; -> scss/colorgradient/_layout.scss
31236
31366
  // #region @import "@progress/kendo-theme-default/scss/colorgradient/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/colorgradient/_layout.scss
@@ -31303,6 +31433,8 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
31303
31433
  height: $kendo-color-gradient-draghandle-height;
31304
31434
  border-width: $kendo-color-gradient-draghandle-border-width;
31305
31435
  border-style: solid;
31436
+ outline-width: $kendo-color-gradient-draghandle-outline-width;
31437
+ outline-style: solid;
31306
31438
  box-sizing: border-box;
31307
31439
  }
31308
31440
 
@@ -31468,12 +31600,14 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
31468
31600
  $kendo-color-gradient-draghandle-bg,
31469
31601
  $kendo-color-gradient-draghandle-border
31470
31602
  );
31603
+ outline-color: $kendo-color-gradient-draghandle-focus-shadow;
31471
31604
  @include box-shadow( $kendo-color-gradient-draghandle-shadow );
31472
31605
 
31473
31606
  &:focus,
31474
31607
  &.k-focus {
31475
31608
  @include fill( $bg: transparent, $border: $kendo-color-white );
31476
- @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 );
31477
31611
  }
31478
31612
 
31479
31613
  &:hover,
@@ -31481,7 +31615,7 @@ $kendo-color-gradient-contrast-spacer: k-math-div( $kendo-color-gradient-spacer,
31481
31615
  &.k-active,
31482
31616
  &:active {
31483
31617
  @include fill( $bg: transparent, $border: $kendo-color-white );
31484
- @include box-shadow( $kendo-color-gradient-draghandle-hover-shadow );
31618
+ outline-color: $kendo-color-gradient-draghandle-hover-shadow;
31485
31619
  }
31486
31620
  }
31487
31621
 
@@ -31636,7 +31770,7 @@ $kendo-color-editor-border: $kendo-component-border !default;
31636
31770
  $kendo-color-editor-focus-border: null !default;
31637
31771
  /// The box shadow of the focused ColorEditor.
31638
31772
  /// @group coloreditor
31639
- $kendo-color-editor-focus-shadow: 1px 1px 7px 1px rgba( black, .3 ) !default;
31773
+ $kendo-color-editor-focus-shadow: k-elevation(3) !default;
31640
31774
 
31641
31775
  /// The vertical padding of the ColorEditor header.
31642
31776
  /// @group coloreditor
@@ -31677,6 +31811,7 @@ $kendo-color-editor-color-gradient-focus-outline: 2px !default;
31677
31811
  /// The outline offset of the focused ColorGradient.
31678
31812
  /// @group coloreditor
31679
31813
  $kendo-color-editor-color-gradient-focus-outline-offset: 4px !default;
31814
+
31680
31815
  // #endregion
31681
31816
  // #region @import "./_layout.scss"; -> scss/coloreditor/_layout.scss
31682
31817
  // #region @import "@progress/kendo-theme-default/scss/coloreditor/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/coloreditor/_layout.scss
@@ -34175,14 +34310,14 @@ $kendo-rating-icon-focus-selected-shadow: 0 2px 4px rgba( black, .1) !default;
34175
34310
  text-shadow: $kendo-rating-icon-focus-shadow;
34176
34311
  }
34177
34312
  > .k-svg-icon {
34178
- filter: drop-shadow( $kendo-rating-icon-focus-shadow );
34313
+ filter: k-shadow-filter($kendo-rating-icon-focus-selected-shadow);
34179
34314
  }
34180
34315
 
34181
34316
  &.k-selected > .k-icon {
34182
34317
  text-shadow: $kendo-rating-icon-focus-selected-shadow;
34183
34318
  }
34184
34319
  &.k-selected > .k-svg-icon {
34185
- filter: drop-shadow( $kendo-rating-icon-focus-selected-shadow );
34320
+ filter: k-shadow-filter($kendo-rating-icon-focus-selected-shadow);
34186
34321
  }
34187
34322
  }
34188
34323
  }
@@ -35744,10 +35879,11 @@ $kendo-appbar-dark-text: k-contrast-color( $kendo-color-dark ) !default;
35744
35879
 
35745
35880
  /// The box shadow of the AppBar.
35746
35881
  /// @group appbar
35747
- $kendo-appbar-box-shadow: 0px 1px 1px rgba( black, .16 ) !default;
35882
+ $kendo-appbar-box-shadow: k-elevation(4) !default;
35748
35883
  /// The box shadow of the AppBar with bottom position.
35749
35884
  /// @group appbar
35750
- $kendo-appbar-bottom-box-shadow: 0px -1px 1px rgba( black, .16 ) !default;
35885
+ $kendo-appbar-bottom-box-shadow: k-elevation(4) !default;
35886
+
35751
35887
  // #endregion
35752
35888
  // #region @import "./_layout.scss"; -> scss/appbar/_layout.scss
35753
35889
  // #region @import "@progress/kendo-theme-default/scss/appbar/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/appbar/_layout.scss
@@ -36098,10 +36234,10 @@ $kendo-fab-sizes: (
36098
36234
 
36099
36235
  /// The base shadow of the FAB.
36100
36236
  /// @group floating-action-button
36101
- $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;
36102
36238
  /// The shadow of the disabled FAB.
36103
36239
  /// @group floating-action-button
36104
- $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;
36105
36241
  /// The shadow of the active FAB.
36106
36242
  /// @group floating-action-button
36107
36243
  $kendo-fab-active-shadow: null !default;
@@ -36537,7 +36673,7 @@ $kendo-actionsheet-line-height: $kendo-line-height-md !default;
36537
36673
  $kendo-actionsheet-bg: $kendo-component-bg !default;
36538
36674
  $kendo-actionsheet-text: $kendo-component-text !default;
36539
36675
  $kendo-actionsheet-border: $kendo-component-border !default;
36540
- $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;
36541
36677
 
36542
36678
 
36543
36679
  // Actionsheet header
@@ -38399,12 +38535,12 @@ $kendo-card-deck-gap: k-map-get( $kendo-spacing, 4 ) !default;
38399
38535
  $kendo-card-bg: $kendo-component-bg !default;
38400
38536
  $kendo-card-text: $kendo-component-text !default;
38401
38537
  $kendo-card-border: $kendo-component-border !default;
38402
- $kendo-card-shadow: null !default;
38538
+ $kendo-card-shadow: k-elevation(1) !default;
38403
38539
 
38404
38540
  $kendo-card-focus-bg: null !default;
38405
38541
  $kendo-card-focus-text: null !default;
38406
38542
  $kendo-card-focus-border: rgba( black, .15 ) !default;
38407
- $kendo-card-focus-shadow: 0 3px 4px 0 rgba( black, .06 ) !default;
38543
+ $kendo-card-focus-shadow: k-elevation(3) !default;
38408
38544
 
38409
38545
  $kendo-card-header-padding-x: $kendo-card-padding-x !default;
38410
38546
  $kendo-card-header-padding-y: $kendo-card-padding-y !default;
@@ -39485,7 +39621,7 @@ $kendo-bottom-nav-item-gap: 0 k-map-get( $kendo-spacing, 1 ) !default;
39485
39621
 
39486
39622
  /// The box shadow of the BottomNavigation.
39487
39623
  /// @group bottom-navigation
39488
- $kendo-bottom-nav-shadow: 0px 0px 5px rgba( black, .12 ) !default;
39624
+ $kendo-bottom-nav-shadow: k-elevation(4) !default;
39489
39625
 
39490
39626
  /// The text color of the flat BottomNavigation.
39491
39627
  /// @group bottom-navigation
@@ -39496,6 +39632,7 @@ $kendo-bottom-nav-flat-bg: $kendo-component-bg !default;
39496
39632
  /// The border color of the flat BottomNavigation.
39497
39633
  /// @group bottom-navigation
39498
39634
  $kendo-bottom-nav-flat-border: $kendo-component-border !default;
39635
+
39499
39636
  // #endregion
39500
39637
  // #region @import "./_layout.scss"; -> scss/bottom-navigation/_layout.scss
39501
39638
  // #region @import "@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/bottom-navigation/_layout.scss
@@ -39534,6 +39671,7 @@ $kendo-bottom-nav-flat-border: $kendo-component-border !default;
39534
39671
  border-width: $kendo-bottom-nav-border-width;
39535
39672
  }
39536
39673
 
39674
+ // TODO: do we even use this?
39537
39675
  .k-bottom-nav-shadow {
39538
39676
  box-shadow: $kendo-bottom-nav-shadow;
39539
39677
  }
@@ -41499,7 +41637,7 @@ $kendo-tabstrip-item-selected-gradient: false !default;
41499
41637
 
41500
41638
  $kendo-tabstrip-item-focus-shadow: $kendo-list-item-focus-shadow !default;
41501
41639
 
41502
- $kendo-tabstrip-item-dragging-shadow: 0px 3px 4px rgba( black, .15 ) !default;
41640
+ $kendo-tabstrip-item-dragging-shadow: k-elevation(3) !default;
41503
41641
 
41504
41642
  $kendo-tabstrip-item-disabled-bg: null !default;
41505
41643
  $kendo-tabstrip-item-disabled-text: null !default;
@@ -43246,6 +43384,7 @@ $kendo-splitbar-selected-text: $kendo-selected-text !default;
43246
43384
  // Pane
43247
43385
  .k-pane {
43248
43386
  overflow: hidden;
43387
+ box-sizing: border-box;
43249
43388
  }
43250
43389
  .k-scrollable {
43251
43390
  overflow: auto;
@@ -43687,6 +43826,471 @@ $kendo-tile-layout-hint-bg: rgba( white, .2 ) !default;
43687
43826
  @include kendo-tile-layout--styles();
43688
43827
  }
43689
43828
 
43829
+ // #endregion
43830
+ // #region @import "./dock-manager/_index.scss"; -> scss/dock-manager/_index.scss
43831
+ // #region @import "../core/_index.scss"; -> scss/core/_index.scss
43832
+ // File already imported_once. Skipping output.
43833
+ // #endregion
43834
+ // #region @import "../utils/_index.scss"; -> scss/utils/_index.scss
43835
+ // File already imported_once. Skipping output.
43836
+ // #endregion
43837
+
43838
+ // Module meta
43839
+ $_kendo-module-meta: (
43840
+ name: "dock-manager",
43841
+ dependencies: (
43842
+ "splitter",
43843
+ "toolbar",
43844
+ "tabstrip"
43845
+ )
43846
+ );
43847
+
43848
+ // Dependencies
43849
+ // #region @import "../splitter/_index.scss"; -> scss/splitter/_index.scss
43850
+ // File already imported_once. Skipping output.
43851
+ // #endregion
43852
+ // #region @import "../toolbar/_index.scss"; -> scss/toolbar/_index.scss
43853
+ // File already imported_once. Skipping output.
43854
+ // #endregion
43855
+ // #region @import "../tabstrip/_index.scss"; -> scss/tabstrip/_index.scss
43856
+ // File already imported_once. Skipping output.
43857
+ // #endregion
43858
+
43859
+ // Component
43860
+ // #region @import "./_variables.scss"; -> scss/dock-manager/_variables.scss
43861
+ /// The width of the border around the DockManager component.
43862
+ /// @group dock-manager
43863
+ $kendo-dock-manager-border-width: 1px !default;
43864
+ /// The style of the border around the DockManager component.
43865
+ /// @group dock-manager
43866
+ $kendo-dock-manager-border-style: solid !default;
43867
+ /// The color of the border around the DockManager component.
43868
+ /// @group dock-manager
43869
+ $kendo-dock-manager-border: $kendo-base-border !default;
43870
+
43871
+ /// The vertical padding of the pane header in the DockManager component.
43872
+ /// @group dock-manager
43873
+ $kendo-dock-manager-pane-header-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
43874
+ /// The horizontal padding of the pane header in the DockManager component.
43875
+ /// @group dock-manager
43876
+ $kendo-dock-manager-pane-header-padding-x: k-map-get( $kendo-spacing, 4 ) !default;
43877
+ /// The width of the border around the pane header in the DockManager component.
43878
+ /// @group dock-manager
43879
+ $kendo-dock-manager-pane-header-border-width: $kendo-dock-manager-border-width !default;
43880
+ /// The style of the border around the pane header in the DockManager component.
43881
+ /// @group dock-manager
43882
+ $kendo-dock-manager-pane-header-border-style: solid !default;
43883
+ /// The background color of the pane header in the DockManager component.
43884
+ /// @group dock-manager
43885
+ $kendo-dock-manager-pane-header-bg: $kendo-component-header-bg !default;
43886
+
43887
+ /// The vertical padding of the pane title in the DockManager component.
43888
+ /// @group dock-manager
43889
+ $kendo-dock-manager-pane-title-padding-y: null !default;
43890
+ /// The horizontal padding of the pane title in the DockManager component.
43891
+ /// @group dock-manager
43892
+ $kendo-dock-manager-pane-title-padding-x: null !default;
43893
+ /// The font family of the pane title in the DockManager component.
43894
+ /// @group dock-manager
43895
+ $kendo-dock-manager-pane-title-font-family: $kendo-font-family !default;
43896
+ /// The font size of the pane title in the DockManager component.
43897
+ /// @group dock-manager
43898
+ $kendo-dock-manager-pane-title-font-size: $kendo-font-size-lg !default;
43899
+ /// The line height of the pane title in the DockManager component.
43900
+ /// @group dock-manager
43901
+ $kendo-dock-manager-pane-title-line-height: $kendo-line-height-sm !default;
43902
+ /// The font weight of the pane title in the DockManager component.
43903
+ /// @group dock-manager
43904
+ $kendo-dock-manager-pane-title-font-weight: $kendo-font-weight-normal !default;
43905
+
43906
+ /// The horizontal padding of the pane content in the DockManager component.
43907
+ /// @group dock-manager
43908
+ $kendo-dock-manager-pane-content-padding-x: $kendo-dock-manager-pane-header-padding-x !default;
43909
+ /// The vertical padding of the pane content in the DockManager component.
43910
+ /// @group dock-manager
43911
+ $kendo-dock-manager-pane-content-padding-y: $kendo-dock-manager-pane-header-padding-x !default;
43912
+
43913
+ /// The horizontal padding of the tabbed pane in the DockManager component.
43914
+ /// @group dock-manager
43915
+ $kendo-dock-manager-tabbed-pane-padding-y: k-map-get( $kendo-spacing, 4 ) !default;
43916
+ /// The horizontal padding of the tabbed pane in the DockManager component.
43917
+ /// @group dock-manager
43918
+ $kendo-dock-manager-tabbed-pane-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
43919
+
43920
+ /// The width of the unpinned pane container in the DockManager component.
43921
+ /// @group dock-manager
43922
+ $kendo-dock-manager-unpinned-container-width: 300px !default;
43923
+ /// The background-color of the unpinned pane container in the DockManager component.
43924
+ /// @group dock-manager
43925
+ $kendo-dock-manager-unpinned-container-bg: $kendo-color-white !default;
43926
+ /// The box shadow of the unpinned pane container in the DockManager component.
43927
+ /// @group dock-manager
43928
+ $kendo-dock-manager-unpinned-container-shadow: 4px 0px 5px 0px rgba(0, 0, 0, 0.04), 2px 0px 4px 0px rgba(0, 0, 0, 0.03) !default;
43929
+
43930
+ /// The padding of the dock indicator in the DockManager component.
43931
+ /// @group dock-manager
43932
+ $kendo-dock-indicator-padding: k-map-get( $kendo-spacing, 1.5 ) !default;
43933
+ /// The background color of the dock indicator in the DockManager component.
43934
+ /// @group dock-manager
43935
+ $kendo-dock-indicator-bg: #f5f5f5 !default;
43936
+ /// The text color of the dock indicator in the DockManager component.
43937
+ /// @group dock-manager
43938
+ $kendo-dock-indicator-text: $kendo-color-primary !default;
43939
+ /// The outline width of the dock indicator in the DockManager component.
43940
+ /// @group dock-manager
43941
+ $kendo-dock-indicator-outline-width: 1px !default;
43942
+ /// The outline style of the dock indicator in the DockManager component.
43943
+ /// @group dock-manager
43944
+ $kendo-dock-indicator-outline-style: solid !default;
43945
+ /// The outline color of the dock indicator in the DockManager component.
43946
+ /// @group dock-manager
43947
+ $kendo-dock-indicator-outline: $kendo-dock-indicator-text !default;
43948
+ /// The box shadow of the dock indicator in the DockManager component.
43949
+ /// @group dock-manager
43950
+ $kendo-dock-indicator-shadow: drop-shadow( 0px 1px 18px rgba(0, 0, 0, 0.12) ) drop-shadow( 0px 6px 10px rgba(0, 0, 0, 0.14) ) drop-shadow( 0px 3px 5px rgba(0, 0, 0, 0.20) ) !default;
43951
+
43952
+ /// The background color of the hovered dock indicator in the DockManager component.
43953
+ /// @group dock-manager
43954
+ $kendo-dock-indicator-hover-bg: $kendo-color-primary !default;
43955
+ /// The text color of the hovered dock indicator in the DockManager component.
43956
+ /// @group dock-manager
43957
+ $kendo-dock-indicator-hover-text: $kendo-color-white !default;
43958
+
43959
+ /// The width of the border around the dropping area in the DockManager component.
43960
+ /// @group dock-manager
43961
+ $kendo-dock-manager-dock-preview-border-width: 1px !default;
43962
+ /// The style of the border around the dropping area in the DockManager component.
43963
+ /// @group dock-manager
43964
+ $kendo-dock-manager-dock-preview-border-style: dashed !default;
43965
+ /// The border radius of the dropping area in the DockManager component.
43966
+ /// @group dock-manager
43967
+ $kendo-dock-manager-dock-preview-border-radius: $kendo-border-radius-sm !default;
43968
+ /// The background color of the dropping area in the DockManager component.
43969
+ /// @group dock-manager
43970
+ $kendo-dock-manager-dock-preview-bg: rgba( $kendo-color-primary, .16 ) !default;
43971
+ /// The border color of the dropping area in the DockManager component.
43972
+ /// @group dock-manager
43973
+ $kendo-dock-manager-dock-preview-border: $kendo-color-primary !default;
43974
+
43975
+ // #endregion
43976
+ // #region @import "./_layout.scss"; -> scss/dock-manager/_layout.scss
43977
+ // #region @import "@progress/kendo-theme-default/scss/dock-manager/_layout.scss"; -> node_modules/@progress/kendo-theme-default/scss/dock-manager/_layout.scss
43978
+ @mixin kendo-dock-manager--layout-base() {
43979
+
43980
+ // DockManager
43981
+ .k-dock-manager {
43982
+ width: 100%;
43983
+ height: 100%;
43984
+ border-width: $kendo-dock-manager-border-width;
43985
+ border-style: $kendo-dock-manager-border-style;
43986
+ position: relative;
43987
+ display: flex;
43988
+ flex-flow: row nowrap;
43989
+ overflow: auto;
43990
+ box-sizing: border-box;
43991
+ }
43992
+
43993
+ // Toolbar
43994
+ .k-dock-manager-toolbar {
43995
+ border-width: 0 $kendo-dock-manager-border-width 0 0;
43996
+ border-color: inherit;
43997
+ flex-shrink: 0;
43998
+ writing-mode: vertical-lr;
43999
+ box-shadow: none;
44000
+
44001
+ &::before {
44002
+ height: 0;
44003
+ }
44004
+
44005
+ .k-separator-horizontal {
44006
+ width: $kendo-line-height-em;
44007
+ height: 0;
44008
+ border-width: $kendo-dock-manager-border-width 0 0;
44009
+ }
44010
+
44011
+ // Needed because of a bug in Chrome - Issue 1473554
44012
+ // A fix will be shipped likely in milestone 118 and then we can revisit this
44013
+ @supports (not (-ms-ime-mode: none)) and (not (overflow: -webkit-marquee)) and (not (-moz-appearance:none)) {
44014
+ .k-toolbar-button {
44015
+ padding-block: $kendo-button-padding-x;
44016
+ padding-inline: $kendo-button-padding-y;
44017
+ }
44018
+ .k-toolbar-button .k-button-text {
44019
+ writing-mode: vertical-lr;
44020
+ }
44021
+ }
44022
+ }
44023
+
44024
+ // Panes
44025
+ .k-dock-manager-pane-container {
44026
+ width: 100%;
44027
+ height: 100%;
44028
+ display: flex;
44029
+ flex-grow: 1;
44030
+ overflow: hidden;
44031
+ }
44032
+
44033
+ // Splitter
44034
+ .k-dock-manager-splitter,
44035
+ .k-dock-manager-unpinned-container {
44036
+ height: 100%;
44037
+ border-width: 0;
44038
+ align-items: stretch;
44039
+
44040
+ > .k-pane {
44041
+ height: auto;
44042
+ flex-direction: column;
44043
+ border-color: inherit;
44044
+ }
44045
+
44046
+ .k-pane-header {
44047
+ display: flex;
44048
+ align-items: center;
44049
+ justify-content: center;
44050
+ padding-block: $kendo-dock-manager-pane-header-padding-y;
44051
+ padding-inline: $kendo-dock-manager-pane-header-padding-x;
44052
+ border-block-end-width: $kendo-dock-manager-pane-header-border-width;
44053
+ border-block-end-style: $kendo-dock-manager-pane-header-border-style;
44054
+ border-color: inherit;
44055
+ }
44056
+
44057
+ .k-pane-title {
44058
+ padding-block: $kendo-dock-manager-pane-title-padding-y;
44059
+ padding-inline: $kendo-dock-manager-pane-title-padding-x;
44060
+ font-family: $kendo-dock-manager-pane-title-font-family;
44061
+ font-size: $kendo-dock-manager-pane-title-font-size;
44062
+ line-height: $kendo-dock-manager-pane-title-line-height;
44063
+ font-weight: $kendo-dock-manager-pane-title-font-weight;
44064
+ flex: 1 1 auto;
44065
+ white-space: nowrap;
44066
+ text-overflow: ellipsis;
44067
+ overflow: hidden;
44068
+ }
44069
+
44070
+ .k-pane-scrollable {
44071
+ height: 100%;
44072
+ display: flex;
44073
+ flex-direction: column;
44074
+ border-color: inherit;
44075
+ }
44076
+
44077
+ .k-pane-content {
44078
+ height: 100%;
44079
+ padding-block: $kendo-dock-manager-pane-content-padding-y;
44080
+ padding-inline: $kendo-dock-manager-pane-content-padding-x;
44081
+ overflow: auto;
44082
+ flex: 1;
44083
+ }
44084
+
44085
+ .k-pane-actions {
44086
+ display: flex;
44087
+ flex-flow: row nowrap;
44088
+ align-items: center;
44089
+ justify-content: center;
44090
+ }
44091
+
44092
+ .k-pane-tabbed {
44093
+ padding-block-start: $kendo-dock-manager-tabbed-pane-padding-y;
44094
+ padding-block-end: $kendo-dock-manager-tabbed-pane-padding-x;
44095
+ padding-inline: $kendo-dock-manager-tabbed-pane-padding-x;
44096
+ }
44097
+
44098
+ .k-splitbar {
44099
+ border-width: 0 1px;
44100
+ border-style: solid;
44101
+ border-color: inherit;
44102
+ }
44103
+ .k-splitbar-vertical {
44104
+ border-width: 1px 0;
44105
+ }
44106
+ }
44107
+
44108
+ // Unpinned pane
44109
+ .k-dock-manager-unpinned-container {
44110
+ width: $kendo-dock-manager-unpinned-container-width;
44111
+ position: absolute;
44112
+ display: flex;
44113
+ height: 100%;
44114
+ border-color: inherit;
44115
+ z-index: 20;
44116
+
44117
+ .k-pane {
44118
+ display: inline-flex;
44119
+ flex-direction: column;
44120
+ position: relative;
44121
+ flex: 1 1 auto;
44122
+ }
44123
+
44124
+ .k-splitbar {
44125
+ height: 100%;
44126
+ position: relative;
44127
+ flex: none;
44128
+ }
44129
+ }
44130
+
44131
+ // Docking preview
44132
+ .k-docking-preview {
44133
+ width: 100%;
44134
+ height: 100%;
44135
+ box-sizing: border-box;
44136
+ display: flex;
44137
+ position: absolute;
44138
+ top: 0;
44139
+ left: 0;
44140
+ border-width: $kendo-dock-manager-dock-preview-border-width;
44141
+ border-style: $kendo-dock-manager-dock-preview-border-style;
44142
+ border-radius: $kendo-dock-manager-dock-preview-border-radius;
44143
+ z-index: 10;
44144
+ }
44145
+
44146
+ }
44147
+
44148
+ @mixin kendo-dock-navigator--layout() {
44149
+
44150
+ // DockNavigator
44151
+ .k-dock-navigator-container {
44152
+ width: 100%;
44153
+ height: 100%;
44154
+ display: flex;
44155
+ flex-direction: column;
44156
+ align-items: center;
44157
+ position: absolute;
44158
+ z-index: 10001;
44159
+ pointer-events: none;
44160
+ }
44161
+
44162
+ .k-dock-navigator {
44163
+ display: grid;
44164
+ grid-template-columns: repeat(3, auto);
44165
+ grid-template-rows: repeat(3, auto);
44166
+ justify-content: center;
44167
+ position: absolute;
44168
+ }
44169
+
44170
+ .k-dock-indicator {
44171
+ padding: $kendo-dock-indicator-padding;
44172
+ display: inline-flex;
44173
+ align-items: center;
44174
+ justify-content: center;
44175
+ box-sizing: border-box;
44176
+ position: relative;
44177
+ pointer-events: all;
44178
+ outline-width: $kendo-dock-indicator-outline-width;
44179
+ outline-style: $kendo-dock-indicator-outline-style;
44180
+
44181
+ &.k-dock-indicator-middle {
44182
+ filter: none;
44183
+ }
44184
+ }
44185
+
44186
+ .k-dock-indicator-top {
44187
+ grid-area: 1 / 2 / auto;
44188
+ }
44189
+ .k-dock-indicator-right {
44190
+ grid-area: 2 / 3 / auto;
44191
+ }
44192
+ .k-dock-indicator-bottom {
44193
+ grid-area: 3 / 2 / auto;
44194
+ }
44195
+ .k-dock-indicator-left {
44196
+ grid-area: 2 / 1 / auto;
44197
+ }
44198
+ .k-dock-indicator-middle {
44199
+ grid-area: 2 / 2 / auto;
44200
+ }
44201
+
44202
+ }
44203
+
44204
+ @mixin kendo-dock-manager--layout() {
44205
+ @include kendo-dock-manager--layout-base();
44206
+ @include kendo-dock-navigator--layout();
44207
+ }
44208
+
44209
+ // #endregion
44210
+
44211
+ @mixin kendo-dock-manager--layout() {
44212
+ @include kendo-dock-manager--layout-base();
44213
+ @include kendo-dock-navigator--layout();
44214
+ }
44215
+
44216
+ // #endregion
44217
+ // #region @import "./_theme.scss"; -> scss/dock-manager/_theme.scss
44218
+ // #region @import "@progress/kendo-theme-default/scss/dock-manager/_theme.scss"; -> node_modules/@progress/kendo-theme-default/scss/dock-manager/_theme.scss
44219
+ @mixin kendo-dock-manager--theme-base() {
44220
+
44221
+ // DockManager
44222
+ .k-dock-manager {
44223
+ border-color: $kendo-dock-manager-border;
44224
+ }
44225
+
44226
+ // Splitter
44227
+ .k-dock-manager-splitter .k-pane-header,
44228
+ .k-dock-manager-unpinned-container .k-pane-header {
44229
+ background-color: $kendo-dock-manager-pane-header-bg;
44230
+ }
44231
+
44232
+ .k-dock-manager-unpinned-container {
44233
+ background-color: $kendo-dock-manager-unpinned-container-bg;
44234
+ @include box-shadow( $kendo-dock-manager-unpinned-container-shadow );
44235
+ }
44236
+
44237
+ // Docking preview
44238
+ .k-docking-preview {
44239
+ background-color: $kendo-dock-manager-dock-preview-bg;
44240
+ border-color: $kendo-dock-manager-dock-preview-border;
44241
+ }
44242
+
44243
+ }
44244
+
44245
+ @mixin kendo-dock-navigator--theme() {
44246
+
44247
+ .k-dock-indicator {
44248
+ color: $kendo-dock-indicator-text;
44249
+ background-color: $kendo-dock-indicator-bg;
44250
+ outline-color: $kendo-dock-indicator-outline;
44251
+ filter: $kendo-dock-indicator-shadow;
44252
+
44253
+ &:hover,
44254
+ &.k-hover {
44255
+ background-color: $kendo-dock-indicator-hover-bg;
44256
+ color: $kendo-dock-indicator-hover-text;
44257
+ }
44258
+ }
44259
+
44260
+ }
44261
+
44262
+ @mixin kendo-dock-manager--theme() {
44263
+ @include kendo-dock-manager--theme-base();
44264
+ @include kendo-dock-navigator--theme();
44265
+ }
44266
+
44267
+ // #endregion
44268
+
44269
+ @mixin kendo-dock-manager--theme() {
44270
+ @include kendo-dock-manager--theme-base();
44271
+ @include kendo-dock-navigator--theme();
44272
+ }
44273
+
44274
+ // #endregion
44275
+
44276
+ // Register
44277
+ // #region @import "../core/module-system/index.import.scss"; -> scss/core/module-system/index.import.scss
44278
+ // File already imported_once. Skipping output.
44279
+ // #endregion
44280
+ @include module-register( $_kendo-module-meta... );
44281
+
44282
+ // Expose
44283
+ @mixin kendo-dock-manager--styles() {
44284
+ @include module-render("dock-manager") {
44285
+ @include kendo-dock-manager--layout();
44286
+ @include kendo-dock-manager--theme();
44287
+ }
44288
+ }
44289
+
44290
+ @if $kendo-auto-bootstrap {
44291
+ @include kendo-dock-manager--styles();
44292
+ }
44293
+
43690
44294
  // #endregion
43691
44295
 
43692
44296
 
@@ -48559,10 +49163,11 @@ $kendo-pivotgrid-configurator-header-bg: null !default;
48559
49163
  $kendo-pivotgrid-configurator-header-text: $kendo-component-header-text !default;
48560
49164
  $kendo-pivotgrid-configurator-header-border: null !default;
48561
49165
 
48562
- $kendo-pivotgrid-configurator-end-shadow: -3px 0px 6px rgba( black, .16 ) !default;
48563
- $kendo-pivotgrid-configurator-start-shadow: 3px 0px 6px rgba( black, .16 ) !default;
48564
- $kendo-pivotgrid-configurator-top-shadow: 0px -3px 6px rgba( black, .16 ) !default;
48565
- $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;
48566
49171
 
48567
49172
  $kendo-pivotgrid-configurator-button-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
48568
49173
  $kendo-pivotgrid-configurator-button-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
@@ -53821,8 +54426,6 @@ $kendo-scheduler-cell-height: $kendo-line-height-em !default;
53821
54426
  $kendo-scheduler-datecolumn-width: 12em !default;
53822
54427
  $kendo-scheduler-timecolumn-width: 11em !default;
53823
54428
 
53824
- $kendo-scheduler-current-time-color: #ff0000 !default;
53825
-
53826
54429
  $kendo-scheduler-nonwork-bg: k-try-shade( $kendo-scheduler-bg, .5 ) !default;
53827
54430
  $kendo-scheduler-nonwork-text: null !default;
53828
54431
 
@@ -53850,7 +54453,7 @@ $kendo-scheduler-tooltip-border-width: 0 !default;
53850
54453
  $kendo-scheduler-tooltip-bg: $kendo-color-primary-contrast !default;
53851
54454
  $kendo-scheduler-tooltip-text: $kendo-base-text !default;
53852
54455
  $kendo-scheduler-tooltip-border: null !default;
53853
- $kendo-scheduler-tooltip-shadow: 0px 0px 10px rgba( black, .2 ) !default;
54456
+ $kendo-scheduler-tooltip-shadow: k-elevation(2) !default;
53854
54457
 
53855
54458
 
53856
54459
  // TODO: use 3
@@ -54409,20 +55012,6 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
54409
55012
  }
54410
55013
  }
54411
55014
 
54412
- // Current time
54413
- .k-current-time {
54414
- position: absolute;
54415
-
54416
- &.k-current-time-arrow-left,
54417
- &.k-current-time-arrow-right,
54418
- &.k-current-time-arrow-down {
54419
- width: 0;
54420
- height: 0;
54421
- background: transparent;
54422
- border: 4px solid transparent;
54423
- }
54424
- }
54425
-
54426
55015
  // Draging hint
54427
55016
  .k-event-drag-hint {
54428
55017
  opacity: .5;
@@ -54946,23 +55535,6 @@ $kendo-scheduler-tooltip-callout-text: $kendo-scheduler-tooltip-bg !default;
54946
55535
  );
54947
55536
  }
54948
55537
 
54949
- // Current time
54950
- .k-current-time {
54951
- background: $kendo-scheduler-current-time-color;
54952
-
54953
- &.k-current-time-arrow-left {
54954
- border-right-color: $kendo-scheduler-current-time-color;
54955
- }
54956
-
54957
- &.k-current-time-arrow-right {
54958
- border-left-color: $kendo-scheduler-current-time-color;
54959
- }
54960
-
54961
- &.k-current-time-arrow-down {
54962
- border-top-color: $kendo-scheduler-current-time-color;
54963
- }
54964
- }
54965
-
54966
55538
  // Header and footer
54967
55539
  .k-scheduler-toolbar {
54968
55540
  @include fill(
@@ -55322,16 +55894,16 @@ $kendo-chat-border: $kendo-app-border !default;
55322
55894
  $kendo-chat-bubble-bg: $kendo-component-bg !default;
55323
55895
  $kendo-chat-bubble-text: $kendo-component-text !default;
55324
55896
  $kendo-chat-bubble-border: $kendo-chat-bubble-bg !default;
55325
- $kendo-chat-bubble-shadow: 0 1px 2px rgba( black, .08 ) !default;
55326
- $kendo-chat-bubble-hover-shadow: 0 1px 2px rgba( black, .16 ) !default;
55327
- $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;
55328
55900
 
55329
55901
  $kendo-chat-alt-bubble-bg: $kendo-color-primary !default;
55330
55902
  $kendo-chat-alt-bubble-text: k-contrast-legacy( $kendo-chat-alt-bubble-bg ) !default;
55331
55903
  $kendo-chat-alt-bubble-border: $kendo-chat-alt-bubble-bg !default;
55332
- $kendo-chat-alt-bubble-shadow: 0 1px 2px rgba( $kendo-chat-alt-bubble-bg, .2 ) !default;
55333
- $kendo-chat-alt-bubble-hover-shadow: 0 1px 2px rgba( $kendo-chat-alt-bubble-bg, .2 ) !default;
55334
- $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;
55335
55907
 
55336
55908
  $kendo-chat-quick-reply-bg: transparent !default;
55337
55909
  $kendo-chat-quick-reply-text: $kendo-color-primary !default;
@@ -56246,7 +56818,7 @@ $kendo-timeline-track-end-calc: calc(#{$kendo-timeline-track-arrow-width} - 2 *
56246
56818
  $kendo-timeline-track-bg: $kendo-button-bg !default;
56247
56819
  $kendo-timeline-track-border-color: $kendo-button-border !default;
56248
56820
 
56249
- $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;
56250
56822
 
56251
56823
  $kendo-timeline-track-event-offset: 36px !default;
56252
56824
 
@@ -56929,8 +57501,11 @@ $kendo-pdf-viewer-page-spacing: 30px !default;
56929
57501
  $kendo-pdf-viewer-page-bg: white !default;
56930
57502
  $kendo-pdf-viewer-page-text: $kendo-component-text !default;
56931
57503
  $kendo-pdf-viewer-page-border: $kendo-component-border !default;
56932
- $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;
56933
57505
 
57506
+ $kendo-pdf-viewer-search-panel-padding-x: $kendo-toolbar-md-padding-x !default;
57507
+ $kendo-pdf-viewer-search-panel-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
57508
+ $kendo-pdf-viewer-search-panel-spacing: $kendo-toolbar-md-spacing !default;
56934
57509
  $kendo-pdf-viewer-search-panel-border-width: 1px !default;
56935
57510
  $kendo-pdf-viewer-search-panel-border-radius: k-map-get( $kendo-spacing, 1 ) !default;
56936
57511
  $kendo-pdf-viewer-search-panel-bg: $kendo-component-bg !default;
@@ -56939,10 +57514,6 @@ $kendo-pdf-viewer-search-panel-border: $kendo-component-border !default;
56939
57514
  $kendo-pdf-viewer-search-panel-shadow: $kendo-window-shadow !default;
56940
57515
  $kendo-pdf-viewer-search-panel-matches-spacing: $kendo-padding-sm-x !default;
56941
57516
 
56942
- $kendo-pdf-viewer-search-dialog-padding-x: $kendo-toolbar-md-padding-x !default;
56943
- $kendo-pdf-viewer-search-dialog-padding-y: k-map-get( $kendo-spacing, 3 ) !default;
56944
- $kendo-pdf-viewer-search-dialog-spacing: $kendo-toolbar-md-spacing !default;
56945
-
56946
57517
  $kendo-pdf-viewer-selection-line-height: $kendo-line-height-sm !default;
56947
57518
 
56948
57519
  $kendo-pdf-viewer-search-highlight-bg: $kendo-body-text !default;
@@ -56997,19 +57568,17 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
56997
57568
  flex: 1 1 auto;
56998
57569
  outline: none;
56999
57570
 
57000
- .k-enable-text-select,
57001
57571
  &.k-enable-text-select {
57002
57572
  user-select: text;
57003
57573
  cursor: text;
57004
57574
  }
57005
57575
 
57006
- .k-enable-panning,
57007
57576
  &.k-enable-panning {
57008
57577
  cursor: grab;
57009
- }
57010
- .k-enable-panning span::selection,
57011
- &.k-enable-panning span::selection {
57012
- background-color: transparent;
57578
+
57579
+ span::selection {
57580
+ background-color: transparent;
57581
+ }
57013
57582
  }
57014
57583
  }
57015
57584
 
@@ -57042,10 +57611,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
57042
57611
  color: transparent;
57043
57612
  }
57044
57613
 
57045
- mark {
57046
- color: transparent;
57047
- }
57048
-
57049
57614
  .k-search-highlight-mark {
57050
57615
  color: transparent;
57051
57616
  }
@@ -57073,19 +57638,22 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
57073
57638
  }
57074
57639
 
57075
57640
  // Search
57076
- .k-pdf-viewer-search-dialog {
57077
- padding: 0 !important; // stylelint-disable-line declaration-no-important
57078
- }
57079
-
57080
- .k-search-panel {
57081
- padding-block: $kendo-pdf-viewer-search-dialog-padding-y;
57082
- padding-inline: $kendo-pdf-viewer-search-dialog-padding-x;
57641
+ .k-pdf-viewer-canvas > .k-search-panel {
57642
+ width: max-content;
57643
+ margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$kendo-pdf-viewer-search-panel-border-width} ) + ( 2 * #{$kendo-pdf-viewer-search-panel-padding-y} )) * -1 );
57644
+ padding-block: $kendo-pdf-viewer-search-panel-padding-y;
57645
+ padding-inline: $kendo-pdf-viewer-search-panel-padding-x;
57646
+ border-width: $kendo-pdf-viewer-search-panel-border-width;
57647
+ border-style: solid;
57648
+ border-radius: $kendo-pdf-viewer-search-panel-border-radius;
57083
57649
  display: flex;
57084
- gap: $kendo-pdf-viewer-search-dialog-spacing;
57650
+ gap: $kendo-pdf-viewer-search-panel-spacing;
57085
57651
  flex-flow: row nowrap;
57086
57652
  flex: 0 0 auto;
57087
57653
  justify-content: flex-start;
57088
57654
  align-items: center;
57655
+ z-index: 10;
57656
+ cursor: default;
57089
57657
 
57090
57658
  .k-search-dialog-draghandle {
57091
57659
  cursor: move;
@@ -57107,21 +57675,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
57107
57675
  }
57108
57676
  }
57109
57677
 
57110
- .k-pdf-viewer-canvas > .k-search-panel {
57111
- width: max-content;
57112
- margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$kendo-pdf-viewer-search-panel-border-width} ) + ( 2 * #{$kendo-pdf-viewer-search-dialog-padding-y} )) * -1 );
57113
- border-width: $kendo-pdf-viewer-search-panel-border-width;
57114
- border-style: solid;
57115
- border-radius: $kendo-pdf-viewer-search-panel-border-radius;
57116
- z-index: 10;
57117
- cursor: default;
57118
- }
57119
-
57120
- // Alias
57121
- .k-search-container {
57122
- @extend .k-search-panel !optional;
57123
- }
57124
-
57125
57678
  }
57126
57679
 
57127
57680
 
@@ -57207,10 +57760,6 @@ $kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
57207
57760
  @include box-shadow( $kendo-pdf-viewer-search-panel-shadow );
57208
57761
  }
57209
57762
 
57210
- .k-search-container {
57211
- @extend .k-search-panel !optional;
57212
- }
57213
-
57214
57763
  }
57215
57764
 
57216
57765
 
@@ -59688,6 +60237,7 @@ $kendo-signature-maximized-line-width: 3px !default;
59688
60237
  @include kendo-panelbar--styles();
59689
60238
  @include kendo-splitter--styles();
59690
60239
  @include kendo-tile-layout--styles();
60240
+ @include kendo-dock-manager--styles();
59691
60241
 
59692
60242
 
59693
60243
  // Data management