@progress/kendo-theme-fluent 12.0.2-dev.0 → 12.1.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.
@@ -478,7 +478,7 @@ $kendo-grid-column-menu-tabbed-tabstrip-content-padding-y: var( --kendo-grid-col
478
478
 
479
479
  /// The background color of the Grid tabbed column menu.
480
480
  /// @group grid
481
- $kendo-grid-column-menu-tabbed-bg: var( --kendo-grid-column-menu-tabbed-bg, var(--kendo-base-bg, inherit) ) !default;
481
+ $kendo-grid-column-menu-tabbed-bg: var( --kendo-grid-column-menu-tabbed-bg, k-color(surface) ) !default;
482
482
 
483
483
  /// The default width of the Grid drag cell.
484
484
  /// @group grid
@@ -2,6 +2,7 @@
2
2
  @use "../core/_index.scss" as *;
3
3
  @use "./_variables.scss" as *;
4
4
  @use "../icons/_variables.scss" as *;
5
+ @use "../core/z-index/index.import.scss" as *;
5
6
  @use "@progress/kendo-theme-core/scss/components/input/_layout.scss" as *;
6
7
 
7
8
  @mixin kendo-input--layout() {
@@ -25,7 +26,7 @@
25
26
  border-end-start-radius: inherit;
26
27
  border-end-end-radius: inherit;
27
28
  pointer-events: none;
28
- z-index: 1;
29
+ z-index: k-z-index("base", 1);
29
30
  }
30
31
  }
31
32
 
@@ -1,7 +1,7 @@
1
1
  @use "sass:map";
2
2
  @use "../core/_index.scss" as *;
3
3
  @use "./_variables.scss" as *;
4
- @use "../core/spacing/_index.scss" as *;
4
+ @use "../core/z-index/index.import.scss" as *;
5
5
  @use "@progress/kendo-theme-core/scss/components/list/_layout.scss" as *;
6
6
 
7
7
  @mixin kendo-list--layout() {
@@ -12,7 +12,7 @@
12
12
  }
13
13
 
14
14
  .k-list-group-sticky-header {
15
- z-index: 1;
15
+ z-index: k-z-index("base", 1);
16
16
  }
17
17
 
18
18
  .k-list-ul {
@@ -15,16 +15,6 @@
15
15
  font-size: $kendo-media-player-title-font-size;
16
16
  }
17
17
 
18
- // Seekbar
19
- .k-mediaplayer-seekbar {
20
- width: 100%;
21
- position: absolute;
22
- z-index: 3;
23
- inset-block-start: 0;
24
- inset-inline-start: 0;
25
- transform: translateY( -50% );
26
- }
27
-
28
18
  .k-mediaplayer-volume-wrap {
29
19
  padding: 0;
30
20
  }
@@ -42,7 +42,6 @@
42
42
  align-items: center;
43
43
  min-height: calc( #{$kendo-scheduler-line-height} * #{$kendo-scheduler-font-size} );
44
44
  position: relative;
45
- z-index: 1;
46
45
  }
47
46
 
48
47
  // Resize handles
@@ -1,6 +1,7 @@
1
1
  @use "sass:math";
2
2
  @use "../core/_index.scss" as *;
3
3
  @use "./_variables.scss" as *;
4
+ @use "../core/z-index/index.import.scss" as *;
4
5
  @use "@progress/kendo-theme-core/scss/components/slider/_layout.scss" as *;
5
6
 
6
7
  @mixin kendo-slider--layout() {
@@ -47,7 +48,7 @@
47
48
  }
48
49
  .k-slider-track {
49
50
  border-radius: $kendo-slider-track-border-radius;
50
- z-index: 2;
51
+ z-index: k-z-index("base", 2);
51
52
  }
52
53
  .k-slider-selection {
53
54
  border-radius: $kendo-slider-track-border-radius;
@@ -1,6 +1,7 @@
1
1
  @use "sass:map";
2
2
  @use "../core/_index.scss" as *;
3
3
  @use "./_variables.scss" as *;
4
+ @use "../core/z-index/index.import.scss" as *;
4
5
  @use "@progress/kendo-theme-core/scss/components/switch/_layout.scss" as *;
5
6
 
6
7
  @mixin kendo-switch--layout() {
@@ -12,7 +13,7 @@
12
13
  content: "";
13
14
  position: absolute;
14
15
  inset: -4px;
15
- z-index: 1;
16
+ z-index: k-z-index("base", 1);
16
17
  border-radius: k-border-radius(md);
17
18
  }
18
19
  }
@@ -1,6 +1,5 @@
1
1
  @use "../core/_index.scss" as *;
2
2
  @use "./_variables.scss" as *;
3
- @use "../core/spacing/_index.scss" as *;
4
3
  @use "@progress/kendo-theme-core/scss/components/upload/_layout.scss" as *;
5
4
 
6
5
  @mixin kendo-upload--layout() {
@@ -41,10 +40,4 @@
41
40
  inset-block-end: $kendo-upload-item-padding-y;
42
41
  }
43
42
  }
44
-
45
- .k-upload-button-wrap {
46
- input {
47
- z-index: 2;
48
- }
49
- }
50
43
  }