@progress/kendo-theme-core 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.
Files changed (64) hide show
  1. package/dist/meta/sassdoc-data.json +51 -0
  2. package/dist/meta/sassdoc-raw-data.json +49 -0
  3. package/dist/meta/variables.json +25 -0
  4. package/package.json +2 -2
  5. package/scss/components/action-sheet/_layout.scss +5 -4
  6. package/scss/components/appbar/_layout.scss +2 -1
  7. package/scss/components/badge/_layout.scss +2 -1
  8. package/scss/components/bottom-navigation/_layout.scss +2 -1
  9. package/scss/components/button/_layout.scss +4 -3
  10. package/scss/components/calendar/_layout.scss +9 -8
  11. package/scss/components/card/_layout.scss +3 -2
  12. package/scss/components/chat/_layout.scss +1 -0
  13. package/scss/components/checkbox/_layout.scss +2 -1
  14. package/scss/components/color-preview/_layout.scss +2 -1
  15. package/scss/components/coloreditor/_layout.scss +3 -1
  16. package/scss/components/colorgradient/_layout.scss +4 -3
  17. package/scss/components/colorpalette/_layout.scss +3 -2
  18. package/scss/components/dataviz/_layout.scss +4 -3
  19. package/scss/components/dialog/_layout.scss +2 -1
  20. package/scss/components/dock-manager/_layout.scss +5 -3
  21. package/scss/components/draggable/_layout.scss +3 -2
  22. package/scss/components/drawer/_layout.scss +2 -1
  23. package/scss/components/editor/_layout.scss +6 -5
  24. package/scss/components/filemanager/_layout.scss +2 -1
  25. package/scss/components/gantt/_layout.scss +17 -16
  26. package/scss/components/grid/_layout.scss +14 -14
  27. package/scss/components/input/_layout.scss +3 -2
  28. package/scss/components/loader/_layout.scss +4 -3
  29. package/scss/components/map/_layout.scss +2 -1
  30. package/scss/components/marquee/_layout.scss +3 -1
  31. package/scss/components/mediaplayer/_layout.scss +5 -4
  32. package/scss/components/menu/_layout.scss +2 -1
  33. package/scss/components/notification/_layout.scss +2 -1
  34. package/scss/components/orgchart/_layout.scss +2 -1
  35. package/scss/components/overlay/_layout.scss +2 -1
  36. package/scss/components/pager/_layout.scss +3 -2
  37. package/scss/components/pdf-viewer/_layout.scss +9 -8
  38. package/scss/components/pivotgrid/_layout.scss +3 -2
  39. package/scss/components/popover/_layout.scss +2 -1
  40. package/scss/components/popup/_layout.scss +6 -5
  41. package/scss/components/prompt/_layout.scss +2 -1
  42. package/scss/components/radio/_layout.scss +2 -1
  43. package/scss/components/ripple/_layout.scss +3 -1
  44. package/scss/components/scheduler/_layout.scss +9 -8
  45. package/scss/components/scroller/_layout.scss +4 -2
  46. package/scss/components/signature/_layout.scss +4 -3
  47. package/scss/components/splitter/_layout.scss +3 -2
  48. package/scss/components/spreadsheet/_layout.scss +14 -13
  49. package/scss/components/stepper/_layout.scss +8 -7
  50. package/scss/components/tabstrip/_layout.scss +4 -3
  51. package/scss/components/taskboard/_layout.scss +2 -1
  52. package/scss/components/tilelayout/_layout.scss +4 -3
  53. package/scss/components/timeline/_layout.scss +5 -4
  54. package/scss/components/timeselector/_layout.scss +5 -4
  55. package/scss/components/toolbar/_layout.scss +2 -1
  56. package/scss/components/tooltip/_layout.scss +2 -1
  57. package/scss/components/treelist/_layout.scss +4 -3
  58. package/scss/components/treeview/_layout.scss +2 -1
  59. package/scss/components/upload/_layout.scss +2 -1
  60. package/scss/components/validator/_layout.scss +2 -1
  61. package/scss/components/virtual-scroller/_layout.scss +4 -2
  62. package/scss/components/window/_layout.scss +2 -1
  63. package/scss/index.scss +1 -0
  64. package/scss/z-index/index.import.scss +36 -0
@@ -1,5 +1,6 @@
1
1
  @use "../../mixins/index.import.scss" as *;
2
2
  @use "../../border-radii/index.import.scss" as *;
3
+ @use "../../z-index/index.import.scss" as *;
3
4
  @use "./_variables.scss" as *;
4
5
 
5
6
  @mixin kendo-popup--layout-base() {
@@ -8,7 +9,7 @@
8
9
  .k-animation-container {
9
10
  position: absolute;
10
11
  overflow: hidden;
11
- z-index: 100;
12
+ z-index: k-z-index("animation");
12
13
  outline: none;
13
14
 
14
15
  &-fixed {
@@ -19,12 +20,14 @@
19
20
  position: relative;
20
21
  display: inline-block;
21
22
  }
22
- }
23
23
 
24
- .k-animation-container {
25
24
  @include border-bottom-radius-only( $kendo-border-radius-md );
26
25
  }
27
26
 
27
+ .k-animation-container:has(.k-child-animation-container > .k-popup) {
28
+ z-index: k-z-index("popup");
29
+ }
30
+
28
31
  .k-animation-container-shown {
29
32
  overflow: visible;
30
33
  }
@@ -34,8 +37,6 @@
34
37
  @include border-radius( $kendo-popup-border-radius );
35
38
  margin: 0;
36
39
  padding: 0;
37
- // padding-block: $kendo-popup-padding-y;
38
- // padding-inline: $kendo-popup-padding-x;
39
40
  border-width: $kendo-popup-border-width;
40
41
  border-style: solid;
41
42
  box-sizing: border-box;
@@ -1,4 +1,5 @@
1
1
  @use "./variables.scss" as *;
2
+ @use "../../z-index/index.import.scss" as *;
2
3
 
3
4
  @mixin kendo-prompt--layout-base() {
4
5
 
@@ -74,7 +75,7 @@
74
75
 
75
76
  // Stop FAB
76
77
  .k-prompt-stop-fab {
77
- z-index: 1;
78
+ z-index: k-z-index("base", 2);
78
79
  }
79
80
  }
80
81
 
@@ -1,6 +1,7 @@
1
1
  @use "sass:map";
2
2
  @use "../../mixins/index.import.scss" as *;
3
3
  @use "../../spacing/index.import.scss" as *;
4
+ @use "../../z-index/index.import.scss" as *;
4
5
  @use "../../_variables.scss" as *;
5
6
  @use "./variables.scss" as *;
6
7
 
@@ -176,7 +177,7 @@
176
177
  left: 50%;
177
178
  top: 50%;
178
179
  border-radius: 100%;
179
- z-index: -1;
180
+ z-index: k-z-index("bottom");
180
181
  transition: opacity 100ms linear, transform 150ms cubic-bezier(.4, 0, .2, 1);
181
182
  transform: translate(-50%, -50%) scale(0);
182
183
  transform-origin: center center;
@@ -1,3 +1,5 @@
1
+ @use "../../z-index/index.import.scss" as *;
2
+
1
3
  @mixin kendo-ripple--layout-base() {
2
4
 
3
5
  .k-ripple-target {
@@ -10,7 +12,7 @@
10
12
  inset-inline-start: 0;
11
13
  inset-inline-end: 0;
12
14
  inset-block-end: 0;
13
- z-index: 1;
15
+ z-index: k-z-index("base", 1);
14
16
  overflow: hidden;
15
17
  pointer-events: none;
16
18
  }
@@ -6,6 +6,7 @@
6
6
  @use "./variables.scss" as *;
7
7
  @use "../toolbar/_variables.scss" as *;
8
8
  @use "../icons/_variables.scss" as *;
9
+ @use "../../z-index/index.import.scss" as *;
9
10
 
10
11
  @mixin kendo-scheduler--layout-base() {
11
12
 
@@ -87,7 +88,7 @@
87
88
  .k-scheduler-head {
88
89
  position: sticky;
89
90
  inset-block-start: 0;
90
- z-index: 3;
91
+ z-index: k-z-index("base", 3);
91
92
  }
92
93
  .k-scheduler-body {
93
94
  position: relative;
@@ -208,7 +209,7 @@
208
209
  flex-basis: 0;
209
210
  position: sticky;
210
211
  inset-inline-start: 0;
211
- z-index: 3;
212
+ z-index: k-z-index("base", 3);
212
213
  }
213
214
  }
214
215
 
@@ -220,7 +221,7 @@
220
221
  white-space: nowrap;
221
222
  flex-shrink: 0;
222
223
  position: relative;
223
- z-index: 2;
224
+ z-index: k-z-index("base", 2);
224
225
 
225
226
  .k-widget {
226
227
  font-size: inherit;
@@ -273,7 +274,7 @@
273
274
  border-spacing: 0;
274
275
  flex: 1 1 auto;
275
276
  position: relative;
276
- z-index: 1;
277
+ z-index: k-z-index("base", 1);
277
278
 
278
279
  > tbody > tr > td {
279
280
  padding: 0;
@@ -401,7 +402,7 @@
401
402
 
402
403
  > div {
403
404
  position: relative;
404
- z-index: 2;
405
+ z-index: k-z-index("base", 2);
405
406
  }
406
407
 
407
408
  // Template
@@ -427,7 +428,7 @@
427
428
  inset-block-start: 0;
428
429
  inset-block-end: 0;
429
430
  inset-inline-end: $kendo-scheduler-event-actions-inset-x;
430
- z-index: 2;
431
+ z-index: k-z-index("base", 2);
431
432
 
432
433
  .k-event-delete {
433
434
  opacity: .5;
@@ -460,7 +461,7 @@
460
461
 
461
462
  // Resize handles
462
463
  .k-resize-handle {
463
- z-index: 4;
464
+ z-index: k-z-index("handle");
464
465
  opacity: .5;
465
466
  visibility: hidden;
466
467
  }
@@ -552,7 +553,7 @@
552
553
  // Draging hint
553
554
  .k-event-drag-hint {
554
555
  opacity: .5;
555
- z-index: 3;
556
+ z-index: k-z-index("base", 3);
556
557
 
557
558
  .k-event-actions,
558
559
  .k-event-top-actions,
@@ -1,3 +1,5 @@
1
+ @use "../../z-index/index.import.scss" as *;
2
+
1
3
  @mixin kendo-scroller--layout-base() {
2
4
 
3
5
  // Layout
@@ -11,7 +13,7 @@
11
13
  }
12
14
  .km-scroll-header {
13
15
  position: absolute;
14
- z-index: 1001;
16
+ z-index: k-z-index("floating", 1);
15
17
  width: 100%;
16
18
  inset-block-start: 0;
17
19
  inset-inline-start: 0;
@@ -56,7 +58,7 @@
56
58
  .km-touch-scrollbar {
57
59
  position: absolute;
58
60
  visibility: hidden;
59
- z-index: 200000;
61
+ z-index: k-z-index("scroll");
60
62
  height: .4em;
61
63
  width: .4em;
62
64
  opacity: 0;
@@ -1,5 +1,6 @@
1
1
  @use "sass:map";
2
2
  @use "./variables.scss" as *;
3
+ @use "../../z-index/index.import.scss" as *;
3
4
 
4
5
  @mixin kendo-signature--layout-base() {
5
6
 
@@ -27,7 +28,7 @@
27
28
  width: min-content;
28
29
  margin-inline-start: auto;
29
30
  gap: $kendo-signature-actions-gap;
30
- z-index: 2;
31
+ z-index: k-z-index("base", 2);
31
32
  }
32
33
 
33
34
  .k-signature-canvas {
@@ -37,14 +38,14 @@
37
38
  width: 100%;
38
39
  height: 100%;
39
40
  display: block;
40
- z-index: 1;
41
+ z-index: k-z-index("base", 1);
41
42
  outline: none;
42
43
  }
43
44
 
44
45
  .k-signature-line {
45
46
  position: absolute;
46
47
  inset-block-end: $kendo-signature-line-bottom-offset;
47
- z-index: 2;
48
+ z-index: k-z-index("base", 2);
48
49
  pointer-events: none;
49
50
  border-block-end-width: $kendo-signature-line-width;
50
51
  border-block-end-style: $kendo-signature-line-style;
@@ -1,5 +1,6 @@
1
1
  @use "../../color-system/_constants.scss" as *;
2
2
  @use "./variables.scss" as *;
3
+ @use "../../z-index/index.import.scss" as *;
3
4
 
4
5
  @mixin kendo-splitter--layout-base() {
5
6
 
@@ -87,7 +88,7 @@
87
88
  width: $kendo-splitter-drag-handle-thickness;
88
89
  height: $kendo-splitter-drag-handle-length;
89
90
  position: static;
90
- z-index: 1;
91
+ z-index: k-z-index("handle");
91
92
  }
92
93
 
93
94
  .k-splitbar .k-resize-handle {
@@ -123,7 +124,7 @@
123
124
  width: $kendo-splitter-drag-handle-length;
124
125
  height: $kendo-splitter-drag-handle-thickness;
125
126
  position: static;
126
- z-index: 1;
127
+ z-index: k-z-index("handle");
127
128
  }
128
129
 
129
130
  .k-pane > {
@@ -7,6 +7,7 @@
7
7
  @use "../icons/_variables.scss" as *;
8
8
  @use "../menu/_variables.scss" as *;
9
9
  @use "../toolbar/_variables.scss" as *;
10
+ @use "../../z-index/index.import.scss" as *;
10
11
 
11
12
  @mixin kendo-spreadsheet--layout-base() {
12
13
 
@@ -155,7 +156,7 @@
155
156
  display: none;
156
157
  overflow: hidden;
157
158
  position: absolute;
158
- z-index: 100;
159
+ z-index: k-z-index("selection");
159
160
  }
160
161
 
161
162
 
@@ -241,7 +242,7 @@
241
242
  box-sizing: border-box;
242
243
  user-select: none;
243
244
  position: absolute;
244
- z-index: 2;
245
+ z-index: k-z-index("base", 2);
245
246
  overflow: hidden;
246
247
  }
247
248
 
@@ -278,7 +279,7 @@
278
279
  position: absolute;
279
280
  inset-block-start: 0;
280
281
  inset-inline-start: 0;
281
- z-index: 10000;
282
+ z-index: k-z-index("overlay");
282
283
 
283
284
  &::after {
284
285
  content: "";
@@ -300,11 +301,11 @@
300
301
  height: 100%;
301
302
  overflow: scroll;
302
303
  position: absolute;
303
- z-index: 1;
304
+ z-index: k-z-index("base", 1);
304
305
 
305
306
  @media (hover: none), (pointer: coarse) {
306
307
  // on touch devices we want this to stay on top.
307
- z-index: 3;
308
+ z-index: k-z-index("base", 3);
308
309
  }
309
310
  }
310
311
 
@@ -330,7 +331,7 @@
330
331
  .k-spreadsheet-row-header,
331
332
  .k-spreadsheet-column-header {
332
333
  text-align: center;
333
- z-index: 100;
334
+ z-index: k-z-index("selection", -1);
334
335
 
335
336
  > div {
336
337
  position: relative;
@@ -431,13 +432,13 @@
431
432
  .k-spreadsheet .k-spreadsheet-editor-button {
432
433
  position: absolute;
433
434
  padding: 0;
434
- z-index: 60;
435
+ z-index: k-z-index("base", 6);
435
436
  }
436
437
 
437
438
  .k-spreadsheet-active-cell {
438
439
  // always show exact active cell border, regardless of inline cell styles
439
440
  outline-color: transparent !important; // stylelint-disable-line declaration-no-important
440
- z-index: 10;
441
+ z-index: k-z-index("base", 4);
441
442
  }
442
443
 
443
444
  .k-spreadsheet .k-auto-fill-wrapper {
@@ -469,7 +470,7 @@
469
470
  position: absolute;
470
471
  inset-block-end: 0;
471
472
  inset-inline-end: 0;
472
- z-index: 300;
473
+ z-index: k-z-index("selection", 1);
473
474
  cursor: crosshair;
474
475
  }
475
476
 
@@ -525,7 +526,7 @@
525
526
  // Filter button
526
527
  .k-spreadsheet .k-filter-wrapper {
527
528
  position: relative;
528
- z-index: 50;
529
+ z-index: k-z-index("base", 5);
529
530
  }
530
531
 
531
532
  .k-spreadsheet .k-filter-range {
@@ -791,7 +792,7 @@
791
792
  .k-spreadsheet-drawing {
792
793
  position: absolute;
793
794
  box-sizing: border-box;
794
- z-index: 101;
795
+ z-index: k-z-index("selection", 2);
795
796
 
796
797
  &.k-spreadsheet-active-drawing {
797
798
  outline-style: $kendo-spreadsheet-drawing-outline-style;
@@ -881,7 +882,7 @@
881
882
  display: inline-flex;
882
883
  flex-direction: row;
883
884
  position: absolute;
884
- z-index: 2;
885
+ z-index: k-z-index("base", 2);
885
886
  inset-block-start: 0;
886
887
  inset-inline-start: 0;
887
888
  }
@@ -889,7 +890,7 @@
889
890
  .k-spreadsheet-tabstrip {
890
891
  padding-block-start: $kendo-toolbar-md-padding-y;
891
892
  position: relative;
892
- z-index: 1;
893
+ z-index: k-z-index("base", 1);
893
894
  }
894
895
  .k-spreadsheet-tabstrip .k-tabstrip-items-wrapper {
895
896
  margin: 0;
@@ -1,6 +1,7 @@
1
1
  @use "../../color-system/_constants.scss" as *;
2
2
  @use "../../spacing/index.import.scss" as *;
3
3
  @use "../../mixins/index.import.scss" as *;
4
+ @use "../../z-index/index.import.scss" as *;
4
5
  @use "./variables.scss" as *;
5
6
  @use "../icons/_variables.scss" as *;
6
7
 
@@ -41,7 +42,7 @@
41
42
  list-style: none;
42
43
  display: flex;
43
44
  position: relative;
44
- z-index: 1;
45
+ z-index: k-z-index("base", 1);
45
46
  }
46
47
 
47
48
 
@@ -73,7 +74,7 @@
73
74
  justify-content: center;
74
75
  flex: none;
75
76
  position: relative;
76
- z-index: 1;
77
+ z-index: k-z-index("base", 1);
77
78
  overflow: visible;
78
79
  transition-property: color, background-color, border-color;
79
80
  transition-duration: .4s;
@@ -87,7 +88,7 @@
87
88
  position: absolute;
88
89
  inset-block-start: 0;
89
90
  inset-inline-start: 0;
90
- z-index: -1;
91
+ z-index: k-z-index("bottom");
91
92
  }
92
93
 
93
94
  &::after {
@@ -103,7 +104,7 @@
103
104
  inset-inline-end: calc( -1 * #{$kendo-stepper-indicator-focus-calc-offset} );
104
105
  inset-block-end: calc( -1 * #{$kendo-stepper-indicator-focus-calc-offset} );
105
106
  inset-inline-start: calc( -1 * #{$kendo-stepper-indicator-focus-calc-offset} );
106
- z-index: 2;
107
+ z-index: k-z-index("base", 2);
107
108
  }
108
109
  }
109
110
 
@@ -122,7 +123,7 @@
122
123
  flex-wrap: wrap;
123
124
  align-items: center;
124
125
  justify-content: center;
125
- z-index: 1;
126
+ z-index: k-z-index("base", 1);
126
127
  }
127
128
  .k-step-label:only-child {
128
129
  @include border-radius( $kendo-stepper-label-border-radius );
@@ -132,7 +133,7 @@
132
133
  }
133
134
  .k-step-label .k-step-text {
134
135
  max-width: calc(10em - (#{$kendo-icon-size} + #{$kendo-icon-spacing}));
135
- flex-grow: 1;
136
+ flex-grow: k-z-index("base", 1);
136
137
  white-space: nowrap;
137
138
  text-overflow: ellipsis;
138
139
  overflow: hidden;
@@ -171,7 +172,7 @@
171
172
  // Progressbar
172
173
  .k-progressbar {
173
174
  pointer-events: none;
174
- z-index: 0;
175
+ z-index: k-z-index("base");
175
176
  overflow: visible;
176
177
  }
177
178
 
@@ -3,6 +3,7 @@
3
3
  @use "../../mixins/index.import.scss" as *;
4
4
  @use "../icons/_variables.scss" as *;
5
5
  @use "./_variables.scss" as *;
6
+ @use "../../z-index/index.import.scss" as *;
6
7
 
7
8
  @mixin kendo-tabstrip--layout-base() {
8
9
 
@@ -208,7 +209,7 @@
208
209
  &::after {
209
210
  content: '';
210
211
  position: absolute;
211
- z-index: 3;
212
+ z-index: k-z-index("base", 3);
212
213
  }
213
214
  }
214
215
 
@@ -412,7 +413,7 @@
412
413
  border-style: solid;
413
414
  display: none;
414
415
  position: absolute;
415
- z-index: 2;
416
+ z-index: k-z-index("base", 2);
416
417
  inset-block-start: 0;
417
418
  inset-inline-end: 0;
418
419
  inset-block-end: 0;
@@ -424,7 +425,7 @@
424
425
  }
425
426
 
426
427
  .k-item > .k-link {
427
- z-index: 1;
428
+ z-index: k-z-index("base", 1);
428
429
  }
429
430
  }
430
431
 
@@ -1,5 +1,6 @@
1
1
  @use "../../mixins/index.import.scss" as *;
2
2
  @use "./variables.scss" as *;
3
+ @use "../../z-index/index.import.scss" as *;
3
4
 
4
5
  @mixin kendo-task-board--layout-base() {
5
6
 
@@ -128,7 +129,7 @@
128
129
  inset-inline-end: 0;
129
130
  inset-block-end: 0;
130
131
  overflow: hidden;
131
- z-index: 2;
132
+ z-index: k-z-index("base", 2);
132
133
  }
133
134
 
134
135
  .k-taskboard-pane-header {
@@ -1,6 +1,7 @@
1
1
  @use "../../color-system/_constants.scss" as *;
2
2
  @use "../../mixins/index.import.scss" as *;
3
3
  @use "./variables.scss" as *;
4
+ @use "../../z-index/index.import.scss" as *;
4
5
 
5
6
  @mixin kendo-tile-layout--layout-base() {
6
7
 
@@ -23,7 +24,7 @@
23
24
 
24
25
  .k-tilelayout-item {
25
26
  position: relative;
26
- z-index: 0;
27
+ z-index: k-z-index("base");
27
28
  }
28
29
 
29
30
  .k-layout-item-hint {
@@ -33,12 +34,12 @@
33
34
  position: relative;
34
35
 
35
36
  &.k-layout-item-hint-resize {
36
- z-index: 3;
37
+ z-index: k-z-index("handle");
37
38
  }
38
39
  }
39
40
 
40
41
  .k-tilelayout-item-header.k-card-header {
41
- z-index: 0;
42
+ z-index: k-z-index("base");
42
43
  }
43
44
 
44
45
  .k-tilelayout-item-body {
@@ -4,6 +4,7 @@
4
4
  @use "../icons/_variables.scss" as *;
5
5
  @use "./variables.scss" as *;
6
6
  @use "../card/_variables.scss" as *;
7
+ @use "../../z-index/index.import.scss" as *;
7
8
 
8
9
  @mixin kendo-timeline--layout-base() {
9
10
 
@@ -45,7 +46,7 @@
45
46
  min-width: $kendo-timeline-flag-min-width;
46
47
  max-width: $kendo-timeline-flag-max-width;
47
48
  position: relative;
48
- z-index: 1;
49
+ z-index: k-z-index("base", 1);
49
50
  }
50
51
 
51
52
  .k-timeline-circle {
@@ -54,7 +55,7 @@
54
55
  border-radius: 50%;
55
56
  flex-shrink: 0;
56
57
  position: relative;
57
- z-index: 1;
58
+ z-index: k-z-index("base", 1);
58
59
  }
59
60
 
60
61
  &.k-timeline-dates-hidden {
@@ -354,7 +355,7 @@
354
355
  margin-block: 0;
355
356
  margin-inline: $kendo-timeline-track-arrow-width;
356
357
  position: relative;
357
- z-index: 2;
358
+ z-index: k-z-index("base", 2);
358
359
 
359
360
  .k-timeline-scrollable-wrap {
360
361
  transition: transform 1s ease-in-out;
@@ -391,7 +392,7 @@
391
392
  border-radius: 50%;
392
393
  position: absolute;
393
394
  inset-block-end: calc(#{$kendo-timeline-track-size} + #{$kendo-timeline-track-wrap-padding-bottom} + 2 * #{$kendo-timeline-track-border-width});
394
- z-index: 3;
395
+ z-index: k-z-index("base", 3);
395
396
  display: flex;
396
397
  align-items: center;
397
398
  justify-content: center;
@@ -4,6 +4,7 @@
4
4
  @use "../../mixins/index.import.scss" as *;
5
5
  @use "./variables.scss" as *;
6
6
  @use "../button/_variables.scss" as *;
7
+ @use "../../z-index/index.import.scss" as *;
7
8
 
8
9
  @mixin kendo-time-selector--layout-base() {
9
10
 
@@ -88,7 +89,7 @@
88
89
  inset-inline-start: 0;
89
90
  inset-inline-end: 0;
90
91
  transform: translateY(-50%);
91
- z-index: 1;
92
+ z-index: k-z-index("base", 1);
92
93
  }
93
94
 
94
95
 
@@ -147,7 +148,7 @@
147
148
  align-items: stretch;
148
149
  flex: 1;
149
150
  position: relative;
150
- z-index: 1;
151
+ z-index: k-z-index("base", 1);
151
152
  outline: 0;
152
153
  overflow: hidden;
153
154
 
@@ -158,7 +159,7 @@
158
159
  content: "\200b";
159
160
  height: 0;
160
161
  line-height: 0;
161
- z-index: 1;
162
+ z-index: k-z-index("base", 1);
162
163
  width: 200%;
163
164
  inset-inline-start: -50%;
164
165
  }
@@ -211,7 +212,7 @@
211
212
  justify-content: center;
212
213
  align-items: center;
213
214
  position: relative;
214
- z-index: 11;
215
+ z-index: k-z-index("base", 1);
215
216
  inset-block-start: calc( #{list.slash( $kendo-time-list-title-height, 2 )} );
216
217
  }
217
218
 
@@ -6,6 +6,7 @@
6
6
  @use "./_variables.scss" as *;
7
7
  @use "../button/_variables.scss" as *;
8
8
  @use "../icons/_variables.scss" as *;
9
+ @use "../../z-index/index.import.scss" as *;
9
10
 
10
11
  @mixin kendo-toolbar--layout-base() {
11
12
 
@@ -54,7 +55,7 @@
54
55
  height: 100%;
55
56
  aspect-ratio: 1;
56
57
  position: absolute;
57
- z-index: 3;
58
+ z-index: k-z-index("base", 3);
58
59
  }
59
60
 
60
61
  &::before {
@@ -2,6 +2,7 @@
2
2
  @use "../../color-system/_constants.scss" as *;
3
3
  @use "../icons/_variables.scss" as *;
4
4
  @use "./_variables.scss" as *;
5
+ @use "../../z-index/index.import.scss" as *;
5
6
 
6
7
  @mixin kendo-tooltip--layout-base() {
7
8
 
@@ -22,7 +23,7 @@
22
23
  flex-flow: row nowrap;
23
24
  align-items: flex-start;
24
25
  position: absolute;
25
- z-index: 12000;
26
+ z-index: k-z-index("popup");
26
27
  -webkit-touch-callout: none;
27
28
  -webkit-tap-highlight-color: $kendo-color-rgba-transparent;
28
29
 
@@ -1,5 +1,6 @@
1
1
  @use "../icons/_variables.scss" as *;
2
2
  @use "./variables.scss" as *;
3
+ @use "../../z-index/index.import.scss" as *;
3
4
 
4
5
  @mixin kendo-treelist--layout-base() {
5
6
 
@@ -63,18 +64,18 @@
63
64
 
64
65
  .k-grid-toolbar {
65
66
  position: sticky;
66
- z-index: 3;
67
+ z-index: k-z-index("base", 3);
67
68
  inset-block-start: 0;
68
69
  inset-inline-start: 0;
69
70
  }
70
71
 
71
72
  .k-grid-header .k-table-th {
72
73
  position: sticky;
73
- z-index: 1;
74
+ z-index: k-z-index("base", 1);
74
75
  }
75
76
 
76
77
  .k-grid-header .k-table-th.k-grid-header-sticky {
77
- z-index: 3;
78
+ z-index: k-z-index("base", 3);
78
79
  }
79
80
 
80
81
  thead.k-grid-header {
@@ -4,6 +4,7 @@
4
4
  @use "../../spacing/index.import.scss" as *;
5
5
  @use "./variables.scss" as *;
6
6
  @use "../icons/_variables.scss" as *;
7
+ @use "../../z-index/index.import.scss" as *;
7
8
 
8
9
  @mixin kendo-treeview--layout-base() {
9
10
 
@@ -127,7 +128,7 @@
127
128
  }
128
129
 
129
130
  &.k-focus {
130
- z-index: 1;
131
+ z-index: k-z-index("base", 1);
131
132
  }
132
133
  }
133
134