@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.
- package/dist/meta/sassdoc-data.json +51 -0
- package/dist/meta/sassdoc-raw-data.json +49 -0
- package/dist/meta/variables.json +25 -0
- package/package.json +2 -2
- package/scss/components/action-sheet/_layout.scss +5 -4
- package/scss/components/appbar/_layout.scss +2 -1
- package/scss/components/badge/_layout.scss +2 -1
- package/scss/components/bottom-navigation/_layout.scss +2 -1
- package/scss/components/button/_layout.scss +4 -3
- package/scss/components/calendar/_layout.scss +9 -8
- package/scss/components/card/_layout.scss +3 -2
- package/scss/components/chat/_layout.scss +1 -0
- package/scss/components/checkbox/_layout.scss +2 -1
- package/scss/components/color-preview/_layout.scss +2 -1
- package/scss/components/coloreditor/_layout.scss +3 -1
- package/scss/components/colorgradient/_layout.scss +4 -3
- package/scss/components/colorpalette/_layout.scss +3 -2
- package/scss/components/dataviz/_layout.scss +4 -3
- package/scss/components/dialog/_layout.scss +2 -1
- package/scss/components/dock-manager/_layout.scss +5 -3
- package/scss/components/draggable/_layout.scss +3 -2
- package/scss/components/drawer/_layout.scss +2 -1
- package/scss/components/editor/_layout.scss +6 -5
- package/scss/components/filemanager/_layout.scss +2 -1
- package/scss/components/gantt/_layout.scss +17 -16
- package/scss/components/grid/_layout.scss +14 -14
- package/scss/components/input/_layout.scss +3 -2
- package/scss/components/loader/_layout.scss +4 -3
- package/scss/components/map/_layout.scss +2 -1
- package/scss/components/marquee/_layout.scss +3 -1
- package/scss/components/mediaplayer/_layout.scss +5 -4
- package/scss/components/menu/_layout.scss +2 -1
- package/scss/components/notification/_layout.scss +2 -1
- package/scss/components/orgchart/_layout.scss +2 -1
- package/scss/components/overlay/_layout.scss +2 -1
- package/scss/components/pager/_layout.scss +3 -2
- package/scss/components/pdf-viewer/_layout.scss +9 -8
- package/scss/components/pivotgrid/_layout.scss +3 -2
- package/scss/components/popover/_layout.scss +2 -1
- package/scss/components/popup/_layout.scss +6 -5
- package/scss/components/prompt/_layout.scss +2 -1
- package/scss/components/radio/_layout.scss +2 -1
- package/scss/components/ripple/_layout.scss +3 -1
- package/scss/components/scheduler/_layout.scss +9 -8
- package/scss/components/scroller/_layout.scss +4 -2
- package/scss/components/signature/_layout.scss +4 -3
- package/scss/components/splitter/_layout.scss +3 -2
- package/scss/components/spreadsheet/_layout.scss +14 -13
- package/scss/components/stepper/_layout.scss +8 -7
- package/scss/components/tabstrip/_layout.scss +4 -3
- package/scss/components/taskboard/_layout.scss +2 -1
- package/scss/components/tilelayout/_layout.scss +4 -3
- package/scss/components/timeline/_layout.scss +5 -4
- package/scss/components/timeselector/_layout.scss +5 -4
- package/scss/components/toolbar/_layout.scss +2 -1
- package/scss/components/tooltip/_layout.scss +2 -1
- package/scss/components/treelist/_layout.scss +4 -3
- package/scss/components/treeview/_layout.scss +2 -1
- package/scss/components/upload/_layout.scss +2 -1
- package/scss/components/validator/_layout.scss +2 -1
- package/scss/components/virtual-scroller/_layout.scss +4 -2
- package/scss/components/window/_layout.scss +2 -1
- package/scss/index.scss +1 -0
- package/scss/z-index/index.import.scss +36 -0
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
@use "../toolbar/_variables.scss" as *;
|
|
8
8
|
@use "../window/_variables.scss" as *;
|
|
9
9
|
@use "../input/_variables.scss" as *;
|
|
10
|
+
@use "../../z-index/index.import.scss" as *;
|
|
10
11
|
|
|
11
12
|
@mixin kendo-editor--layout-base() {
|
|
12
13
|
|
|
@@ -74,7 +75,7 @@
|
|
|
74
75
|
box-sizing: border-box;
|
|
75
76
|
position: absolute;
|
|
76
77
|
visibility: visible;
|
|
77
|
-
z-index:
|
|
78
|
+
z-index: k-z-index("handle");
|
|
78
79
|
|
|
79
80
|
&.northwest {
|
|
80
81
|
top: 0;
|
|
@@ -263,7 +264,7 @@
|
|
|
263
264
|
|
|
264
265
|
// Give selected cells a blue overlay
|
|
265
266
|
.selectedCell::after { // stylelint-disable-line
|
|
266
|
-
z-index:
|
|
267
|
+
z-index: k-z-index("selection");
|
|
267
268
|
position: absolute;
|
|
268
269
|
content: "";
|
|
269
270
|
inset-inline-start: 0;
|
|
@@ -553,7 +554,7 @@
|
|
|
553
554
|
height: 5px;
|
|
554
555
|
border-width: 1px;
|
|
555
556
|
border-style: solid;
|
|
556
|
-
z-index:
|
|
557
|
+
z-index: k-z-index("handle");
|
|
557
558
|
|
|
558
559
|
.k-element-resize-handle {
|
|
559
560
|
width: 100%;
|
|
@@ -598,7 +599,7 @@
|
|
|
598
599
|
height: 10px;
|
|
599
600
|
width: 10px;
|
|
600
601
|
cursor: col-resize;
|
|
601
|
-
z-index:
|
|
602
|
+
z-index: k-z-index("handle");
|
|
602
603
|
|
|
603
604
|
.k-column-resize-handle {
|
|
604
605
|
width: 100%;
|
|
@@ -617,7 +618,7 @@
|
|
|
617
618
|
|
|
618
619
|
.k-row-resize-handle-wrapper {
|
|
619
620
|
position: absolute;
|
|
620
|
-
z-index:
|
|
621
|
+
z-index: k-z-index("handle");
|
|
621
622
|
cursor: row-resize;
|
|
622
623
|
width: 10px;
|
|
623
624
|
height: 10px;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "./variables.scss" as *;
|
|
2
2
|
@use "../icons/_variables.scss" as *;
|
|
3
|
+
@use "../../z-index/index.import.scss" as *;
|
|
3
4
|
|
|
4
5
|
@mixin kendo-file-manager--layout-base() {
|
|
5
6
|
|
|
@@ -25,7 +26,7 @@
|
|
|
25
26
|
border-block-end-width: $kendo-file-manager-toolbar-border-width;
|
|
26
27
|
border-color: inherit;
|
|
27
28
|
flex-shrink: 0;
|
|
28
|
-
z-index: 1;
|
|
29
|
+
z-index: k-z-index("base", 1);
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
@use "../toolbar/_variables.scss" as *;
|
|
9
9
|
@use "../button/_variables.scss" as *;
|
|
10
10
|
@use "../icons/_variables.scss" as *;
|
|
11
|
+
@use "../../z-index/index.import.scss" as *;
|
|
11
12
|
|
|
12
13
|
@mixin kendo-gantt--layout-base() {
|
|
13
14
|
|
|
@@ -85,10 +86,10 @@
|
|
|
85
86
|
}
|
|
86
87
|
.k-grid-header th,
|
|
87
88
|
.k-grid-content-sticky {
|
|
88
|
-
z-index: 4;
|
|
89
|
+
z-index: k-z-index("base", 4);
|
|
89
90
|
}
|
|
90
91
|
.k-grid-header th.k-grid-header-sticky {
|
|
91
|
-
z-index: 5;
|
|
92
|
+
z-index: k-z-index("base", 5);
|
|
92
93
|
}
|
|
93
94
|
.k-grid-header tr:first-child th:last-child,
|
|
94
95
|
tbody td:last-child {
|
|
@@ -113,7 +114,7 @@
|
|
|
113
114
|
display: inline-flex;
|
|
114
115
|
flex-flow: row nowrap;
|
|
115
116
|
white-space: nowrap;
|
|
116
|
-
z-index: 3;
|
|
117
|
+
z-index: k-z-index("base", 3);
|
|
117
118
|
|
|
118
119
|
&:hover .k-task-start,
|
|
119
120
|
&:hover .k-task-end {
|
|
@@ -190,7 +191,7 @@
|
|
|
190
191
|
inset-inline-start: 0;
|
|
191
192
|
overflow: visible;
|
|
192
193
|
pointer-events: none;
|
|
193
|
-
z-index:
|
|
194
|
+
z-index: k-z-index("base", 1);
|
|
194
195
|
|
|
195
196
|
polyline {
|
|
196
197
|
stroke-width: $kendo-gantt-line-size;
|
|
@@ -202,7 +203,7 @@
|
|
|
202
203
|
.k-gantt-header {
|
|
203
204
|
border-width: 0 0 $kendo-toolbar-border-width;
|
|
204
205
|
flex-shrink: 0;
|
|
205
|
-
z-index:
|
|
206
|
+
z-index: k-z-index("base", 1);
|
|
206
207
|
}
|
|
207
208
|
.k-gantt-footer {
|
|
208
209
|
border-width: $kendo-toolbar-border-width 0 0;
|
|
@@ -347,7 +348,7 @@
|
|
|
347
348
|
.k-gantt-columns {
|
|
348
349
|
border-color: inherit;
|
|
349
350
|
position: absolute;
|
|
350
|
-
z-index:
|
|
351
|
+
z-index: k-z-index("base");
|
|
351
352
|
inset-block-start: 0;
|
|
352
353
|
inset-inline-start: 0;
|
|
353
354
|
}
|
|
@@ -387,7 +388,7 @@
|
|
|
387
388
|
position: absolute;
|
|
388
389
|
}
|
|
389
390
|
.k-gantt-line.k-selected {
|
|
390
|
-
z-index: 3;
|
|
391
|
+
z-index: k-z-index("base", 3);
|
|
391
392
|
}
|
|
392
393
|
|
|
393
394
|
.k-gantt-line-h {
|
|
@@ -399,7 +400,7 @@
|
|
|
399
400
|
}
|
|
400
401
|
|
|
401
402
|
.k-gantt-dependency-hint {
|
|
402
|
-
z-index: 4;
|
|
403
|
+
z-index: k-z-index("base", 4);
|
|
403
404
|
}
|
|
404
405
|
|
|
405
406
|
|
|
@@ -426,7 +427,7 @@
|
|
|
426
427
|
flex-direction: row;
|
|
427
428
|
align-items: center;
|
|
428
429
|
position: relative;
|
|
429
|
-
z-index: 2;
|
|
430
|
+
z-index: k-z-index("base", 2);
|
|
430
431
|
}
|
|
431
432
|
.k-task-wrap.k-drag-hint {
|
|
432
433
|
position: absolute;
|
|
@@ -535,7 +536,7 @@
|
|
|
535
536
|
.k-task-summary-complete {
|
|
536
537
|
height: 10px;
|
|
537
538
|
position: relative;
|
|
538
|
-
z-index: 2;
|
|
539
|
+
z-index: k-z-index("base", 2);
|
|
539
540
|
}
|
|
540
541
|
.k-task-summary-progress {
|
|
541
542
|
height: 15px;
|
|
@@ -554,7 +555,7 @@
|
|
|
554
555
|
|
|
555
556
|
.k-resize-handle {
|
|
556
557
|
opacity: .5;
|
|
557
|
-
z-index:
|
|
558
|
+
z-index: k-z-index("handle");
|
|
558
559
|
visibility: hidden;
|
|
559
560
|
cursor: ew-resize;
|
|
560
561
|
}
|
|
@@ -592,14 +593,14 @@
|
|
|
592
593
|
@include border-radius( k-border-radius(md) );
|
|
593
594
|
width: 20%;
|
|
594
595
|
position: absolute;
|
|
595
|
-
z-index: 1;
|
|
596
|
+
z-index: k-z-index("base", 1);
|
|
596
597
|
inset-block-start: 0;
|
|
597
598
|
inset-block-end: 0;
|
|
598
599
|
inset-inline-start: 0;
|
|
599
600
|
}
|
|
600
601
|
.k-task-content {
|
|
601
602
|
position: relative;
|
|
602
|
-
z-index: 2;
|
|
603
|
+
z-index: k-z-index("base", 2);
|
|
603
604
|
display: flex;
|
|
604
605
|
flex-direction: row;
|
|
605
606
|
align-items: center;
|
|
@@ -620,7 +621,7 @@
|
|
|
620
621
|
flex-direction: row;
|
|
621
622
|
align-items: center;
|
|
622
623
|
visibility: hidden;
|
|
623
|
-
z-index: 1;
|
|
624
|
+
z-index: k-z-index("base", 1);
|
|
624
625
|
}
|
|
625
626
|
.k-task-actions > .k-link {
|
|
626
627
|
display: inline-flex;
|
|
@@ -629,7 +630,7 @@
|
|
|
629
630
|
.k-resources-wrap {
|
|
630
631
|
position: absolute;
|
|
631
632
|
display: inline-block;
|
|
632
|
-
z-index: 2;
|
|
633
|
+
z-index: k-z-index("base", 2);
|
|
633
634
|
margin-inline-start: 20px;
|
|
634
635
|
margin-block-start: -2px;
|
|
635
636
|
overflow: hidden;
|
|
@@ -742,7 +743,7 @@
|
|
|
742
743
|
|
|
743
744
|
.k-resize-handle {
|
|
744
745
|
inset-inline-end: 0;
|
|
745
|
-
z-index:
|
|
746
|
+
z-index: k-z-index("handle");
|
|
746
747
|
visibility: hidden;
|
|
747
748
|
margin-inline-end: $kendo-gantt-planned-offset-resize-handler-margin-x;
|
|
748
749
|
}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
@use "../../mixins/index.import.scss" as *;
|
|
6
6
|
@use "../../typography/index.import.scss" as *;
|
|
7
7
|
@use "../../spacing/index.import.scss" as *;
|
|
8
|
+
@use "../../z-index/index.import.scss" as *;
|
|
8
9
|
@use "./variables.scss" as *;
|
|
9
10
|
@use "../icons/_variables.scss" as *;
|
|
10
11
|
@use "../chip/_variables.scss" as *;
|
|
@@ -190,7 +191,7 @@
|
|
|
190
191
|
justify-content: center;
|
|
191
192
|
position: absolute;
|
|
192
193
|
inset-inline-end: $kendo-grid-header-menu-icon-spacing;
|
|
193
|
-
z-index: 1;
|
|
194
|
+
z-index: k-z-index("base", 1);
|
|
194
195
|
|
|
195
196
|
&:hover {
|
|
196
197
|
cursor: pointer;
|
|
@@ -682,7 +683,7 @@
|
|
|
682
683
|
height: 25px;
|
|
683
684
|
cursor: col-resize;
|
|
684
685
|
position: absolute;
|
|
685
|
-
z-index:
|
|
686
|
+
z-index: k-z-index("handle");
|
|
686
687
|
}
|
|
687
688
|
|
|
688
689
|
|
|
@@ -721,7 +722,7 @@
|
|
|
721
722
|
.k-grid-table {
|
|
722
723
|
position: relative;
|
|
723
724
|
float: inline-start;
|
|
724
|
-
z-index: 1;
|
|
725
|
+
z-index: k-z-index("base", 1);
|
|
725
726
|
}
|
|
726
727
|
|
|
727
728
|
> .k-height-container {
|
|
@@ -806,11 +807,11 @@
|
|
|
806
807
|
.k-grid .k-grid-row-sticky,
|
|
807
808
|
.k-grid .k-grid-footer-sticky {
|
|
808
809
|
position: sticky;
|
|
809
|
-
z-index: 2;
|
|
810
|
+
z-index: k-z-index("base", 2);
|
|
810
811
|
|
|
811
812
|
&.k-edit-cell {
|
|
812
813
|
overflow: visible;
|
|
813
|
-
z-index: 3;
|
|
814
|
+
z-index: k-z-index("base", 3);
|
|
814
815
|
}
|
|
815
816
|
}
|
|
816
817
|
|
|
@@ -822,14 +823,13 @@
|
|
|
822
823
|
position: absolute;
|
|
823
824
|
inset-block-start: 0;
|
|
824
825
|
inset-inline-start: 0;
|
|
825
|
-
z-index: -
|
|
826
|
+
z-index: k-z-index("bottom");
|
|
826
827
|
}
|
|
827
828
|
|
|
828
829
|
kendo-grid {
|
|
829
830
|
.k-table-row.k-grid-row-sticky {
|
|
830
831
|
border: 0;
|
|
831
832
|
position: static;
|
|
832
|
-
z-index: auto;
|
|
833
833
|
}
|
|
834
834
|
|
|
835
835
|
.k-grid-row-sticky td,
|
|
@@ -840,14 +840,14 @@
|
|
|
840
840
|
position: sticky;
|
|
841
841
|
inset-block-start: inherit;
|
|
842
842
|
inset-block-end: inherit;
|
|
843
|
-
z-index: 2;
|
|
843
|
+
z-index: k-z-index("base", 2);
|
|
844
844
|
}
|
|
845
845
|
|
|
846
846
|
.k-grid-row-sticky td.k-grid-content-sticky,
|
|
847
847
|
.k-grid-row-sticky.k-table-alt-row td.k-grid-content-sticky,
|
|
848
848
|
.k-grid-row-sticky .k-table-td.k-grid-content-sticky,
|
|
849
849
|
.k-grid-row-sticky.k-table-alt-row .k-table-td.k-grid-content-sticky {
|
|
850
|
-
z-index: 3;
|
|
850
|
+
z-index: k-z-index("base", 3);
|
|
851
851
|
}
|
|
852
852
|
|
|
853
853
|
// Locked and sticky
|
|
@@ -858,12 +858,12 @@
|
|
|
858
858
|
|
|
859
859
|
.k-grid-header .k-grid-column-menu,
|
|
860
860
|
.k-grid-header .k-grid-header-menu {
|
|
861
|
-
z-index: 1;
|
|
861
|
+
z-index: k-z-index("base", 1);
|
|
862
862
|
}
|
|
863
863
|
}
|
|
864
864
|
|
|
865
865
|
.k-grid-content-sticky.k-grid-row-sticky {
|
|
866
|
-
z-index: 3;
|
|
866
|
+
z-index: k-z-index("base", 3);
|
|
867
867
|
}
|
|
868
868
|
|
|
869
869
|
.k-grid .k-table .k-grid-header-sticky,
|
|
@@ -1071,7 +1071,7 @@
|
|
|
1071
1071
|
position: absolute;
|
|
1072
1072
|
background: none;
|
|
1073
1073
|
cursor: row-resize;
|
|
1074
|
-
z-index: 2;
|
|
1074
|
+
z-index: k-z-index("base", 2);
|
|
1075
1075
|
}
|
|
1076
1076
|
}
|
|
1077
1077
|
|
|
@@ -1142,7 +1142,7 @@
|
|
|
1142
1142
|
}
|
|
1143
1143
|
}
|
|
1144
1144
|
|
|
1145
|
-
|
|
1145
|
+
// Command cell
|
|
1146
1146
|
.k-grid-stack-cell.k-command-cell {
|
|
1147
1147
|
padding: 0;
|
|
1148
1148
|
grid-column: 1 / -1;
|
|
@@ -1207,7 +1207,7 @@
|
|
|
1207
1207
|
height: 100%;
|
|
1208
1208
|
inset-block-start: 0;
|
|
1209
1209
|
inset-inline-start: 0;
|
|
1210
|
-
z-index:
|
|
1210
|
+
z-index: k-z-index("overlay");
|
|
1211
1211
|
|
|
1212
1212
|
> .k-i-loading {
|
|
1213
1213
|
position: absolute;
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
@use "../../_variables.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-input--layout-base() {
|
|
9
10
|
|
|
@@ -99,7 +100,7 @@
|
|
|
99
100
|
font: inherit;
|
|
100
101
|
flex: 1;
|
|
101
102
|
position: relative;
|
|
102
|
-
z-index: 1;
|
|
103
|
+
z-index: k-z-index("base", 1);
|
|
103
104
|
overflow: hidden;
|
|
104
105
|
text-overflow: ellipsis;
|
|
105
106
|
-webkit-appearance: none;
|
|
@@ -246,7 +247,7 @@
|
|
|
246
247
|
> .k-input:active,
|
|
247
248
|
> .k-input.k-active,
|
|
248
249
|
> .k-input.k-selected {
|
|
249
|
-
z-index: 2;
|
|
250
|
+
z-index: k-z-index("base", 2);
|
|
250
251
|
}
|
|
251
252
|
|
|
252
253
|
.k-input:not(:first-child):not(:last-child) {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "./_variables.scss" as *;
|
|
2
2
|
@use "../overlay/_variables.scss" as *;
|
|
3
|
+
@use "../../z-index/index.import.scss" as *;
|
|
3
4
|
|
|
4
5
|
@mixin kendo-loader--layout-base() {
|
|
5
6
|
|
|
@@ -366,7 +367,7 @@
|
|
|
366
367
|
display: flex;
|
|
367
368
|
align-items: center;
|
|
368
369
|
justify-content: center;
|
|
369
|
-
z-index:
|
|
370
|
+
z-index: k-z-index("loading");
|
|
370
371
|
|
|
371
372
|
.k-loader {
|
|
372
373
|
padding: 0;
|
|
@@ -393,7 +394,7 @@
|
|
|
393
394
|
display: flex;
|
|
394
395
|
align-items: center;
|
|
395
396
|
position: relative;
|
|
396
|
-
z-index: 2;
|
|
397
|
+
z-index: k-z-index("base", 2);
|
|
397
398
|
}
|
|
398
399
|
|
|
399
400
|
.k-loader-container-panel {
|
|
@@ -489,7 +490,7 @@
|
|
|
489
490
|
color: $kendo-loading-text;
|
|
490
491
|
}
|
|
491
492
|
.k-loading-image {
|
|
492
|
-
z-index: 2;
|
|
493
|
+
z-index: k-z-index("base", 2);
|
|
493
494
|
color: $kendo-loading-text;
|
|
494
495
|
}
|
|
495
496
|
.k-loading-color {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@use "../../spacing/index.import.scss" as *;
|
|
2
2
|
@use "./variables.scss" as *;
|
|
3
|
+
@use "../../z-index/index.import.scss" as *;
|
|
3
4
|
|
|
4
5
|
@mixin kendo-map--layout-base() {
|
|
5
6
|
|
|
@@ -52,7 +53,7 @@
|
|
|
52
53
|
padding-inline: $kendo-map-attribution-padding-x;
|
|
53
54
|
border-width: 0;
|
|
54
55
|
font-size: $kendo-map-attribution-font-size;
|
|
55
|
-
z-index:
|
|
56
|
+
z-index: k-z-index("floating");
|
|
56
57
|
}
|
|
57
58
|
|
|
58
59
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use "sass:math";
|
|
2
2
|
@use "../../color-system/_constants.scss" as *;
|
|
3
3
|
@use "./variables.scss" as *;
|
|
4
|
+
@use "../../z-index/index.import.scss" as *;
|
|
4
5
|
|
|
5
6
|
@mixin kendo-media-player--layout-base() {
|
|
6
7
|
|
|
@@ -38,7 +39,7 @@
|
|
|
38
39
|
padding-block: $kendo-media-player-titlebar-padding-y;
|
|
39
40
|
padding-inline: $kendo-media-player-titlebar-padding-x;
|
|
40
41
|
position: absolute;
|
|
41
|
-
z-index: 2;
|
|
42
|
+
z-index: k-z-index("base", 2);
|
|
42
43
|
inset-block-start: 0;
|
|
43
44
|
inset-inline-start: 0;
|
|
44
45
|
inset-inline-end: 0;
|
|
@@ -48,7 +49,7 @@
|
|
|
48
49
|
// Toolbar
|
|
49
50
|
.k-mediaplayer-toolbar-wrap {
|
|
50
51
|
position: absolute;
|
|
51
|
-
z-index: 2;
|
|
52
|
+
z-index: k-z-index("base", 2);
|
|
52
53
|
inset-block-end: 0;
|
|
53
54
|
inset-inline-start: 0;
|
|
54
55
|
inset-inline-end: 0;
|
|
@@ -80,7 +81,7 @@
|
|
|
80
81
|
.k-slider.k-mediaplayer-seekbar {
|
|
81
82
|
width: 100%;
|
|
82
83
|
position: absolute;
|
|
83
|
-
z-index:
|
|
84
|
+
z-index: k-z-index("base", 1);
|
|
84
85
|
inset-block-start: 0;
|
|
85
86
|
inset-inline-start: 0;
|
|
86
87
|
transform: translateY( -50% );
|
|
@@ -94,7 +95,7 @@
|
|
|
94
95
|
}
|
|
95
96
|
|
|
96
97
|
.k-mediaplayer-fullscreen {
|
|
97
|
-
z-index:
|
|
98
|
+
z-index: k-z-index("overlay");
|
|
98
99
|
position: fixed;
|
|
99
100
|
inset-block-start: 0;
|
|
100
101
|
inset-inline-start: 0;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use "../../color-system/_constants.scss" as *;
|
|
2
2
|
@use "../icons/_variables.scss" as *;
|
|
3
3
|
@use "./variables.scss" as *;
|
|
4
|
+
@use "../../z-index/index.import.scss" as *;
|
|
4
5
|
|
|
5
6
|
@mixin kendo-menu--layout-base() {
|
|
6
7
|
|
|
@@ -284,7 +285,7 @@
|
|
|
284
285
|
flex-wrap: nowrap;
|
|
285
286
|
}
|
|
286
287
|
.k-context-menu-popup {
|
|
287
|
-
z-index:
|
|
288
|
+
z-index: k-z-index("popup");
|
|
288
289
|
|
|
289
290
|
.k-context-menu {
|
|
290
291
|
border-width: 0;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use "../../mixins/index.import.scss" as *;
|
|
2
2
|
@use "../../color-system/_constants.scss" as *;
|
|
3
3
|
@use "./variables.scss" as *;
|
|
4
|
+
@use "../../z-index/index.import.scss" as *;
|
|
4
5
|
|
|
5
6
|
@mixin kendo-notification--layout-base() {
|
|
6
7
|
|
|
@@ -10,7 +11,7 @@
|
|
|
10
11
|
display: inline-flex;
|
|
11
12
|
flex-flow: column-reverse wrap;
|
|
12
13
|
position: fixed;
|
|
13
|
-
z-index:
|
|
14
|
+
z-index: k-z-index("popup");
|
|
14
15
|
gap: $kendo-notification-group-gap 0;
|
|
15
16
|
}
|
|
16
17
|
|
|
@@ -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-orgchart--layout-base() {
|
|
5
6
|
|
|
@@ -107,7 +108,7 @@
|
|
|
107
108
|
|
|
108
109
|
// Buttons
|
|
109
110
|
.k-orgchart-button {
|
|
110
|
-
z-index:
|
|
111
|
+
z-index: k-z-index("base", 2);
|
|
111
112
|
}
|
|
112
113
|
}
|
|
113
114
|
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@use "./_variables.scss" as *;
|
|
2
|
+
@use "../../z-index/index.import.scss" as *;
|
|
2
3
|
|
|
3
4
|
@mixin kendo-overlay--layout-base() {
|
|
4
5
|
|
|
@@ -10,7 +11,7 @@
|
|
|
10
11
|
position: fixed;
|
|
11
12
|
inset-block-start: 0;
|
|
12
13
|
inset-inline-start: 0;
|
|
13
|
-
z-index:
|
|
14
|
+
z-index: k-z-index("overlay");
|
|
14
15
|
}
|
|
15
16
|
|
|
16
17
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../../color-system/_constants.scss" as *;
|
|
3
3
|
@use "./variables.scss" as *;
|
|
4
|
+
@use "../../z-index/index.import.scss" as *;
|
|
4
5
|
|
|
5
6
|
@mixin kendo-pager--layout-base() {
|
|
6
7
|
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
position: relative;
|
|
54
55
|
|
|
55
56
|
&:hover {
|
|
56
|
-
z-index: 2;
|
|
57
|
+
z-index: k-z-index("base", 2);
|
|
57
58
|
}
|
|
58
59
|
}
|
|
59
60
|
|
|
@@ -81,7 +82,7 @@
|
|
|
81
82
|
// Selected state
|
|
82
83
|
.k-selected {
|
|
83
84
|
cursor: inherit;
|
|
84
|
-
z-index: 2;
|
|
85
|
+
z-index: k-z-index("base", 2);
|
|
85
86
|
}
|
|
86
87
|
}
|
|
87
88
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use "../../color-system/_constants.scss" as *;
|
|
2
2
|
@use "./variables.scss" as *;
|
|
3
3
|
@use "../button/_variables.scss" as *;
|
|
4
|
+
@use "../../z-index/index.import.scss" as *;
|
|
4
5
|
|
|
5
6
|
@mixin kendo-pdf-viewer--layout-base() {
|
|
6
7
|
|
|
@@ -27,7 +28,7 @@
|
|
|
27
28
|
border-inline-start-width: 0;
|
|
28
29
|
border-color: inherit;
|
|
29
30
|
flex: 0 0 auto;
|
|
30
|
-
z-index:
|
|
31
|
+
z-index: k-z-index("base", 1);
|
|
31
32
|
}
|
|
32
33
|
.k-toolbar .k-pager-wrap,
|
|
33
34
|
.k-toolbar .k-pager {
|
|
@@ -69,7 +70,7 @@
|
|
|
69
70
|
position: relative;
|
|
70
71
|
margin-block: $kendo-pdf-viewer-page-spacing;
|
|
71
72
|
margin-inline: auto;
|
|
72
|
-
z-index: 1;
|
|
73
|
+
z-index: k-z-index("base", 1);
|
|
73
74
|
|
|
74
75
|
// Canvas
|
|
75
76
|
.k-canvas-wrapper {
|
|
@@ -126,7 +127,7 @@
|
|
|
126
127
|
display: block;
|
|
127
128
|
position: absolute;
|
|
128
129
|
inset: 100% 0 0;
|
|
129
|
-
z-index:
|
|
130
|
+
z-index: k-z-index("base");
|
|
130
131
|
cursor: default;
|
|
131
132
|
user-select: none;
|
|
132
133
|
}
|
|
@@ -186,13 +187,13 @@
|
|
|
186
187
|
cursor: auto;
|
|
187
188
|
|
|
188
189
|
.k-selected {
|
|
189
|
-
z-index:
|
|
190
|
+
z-index: k-z-index("top") !important; // stylelint-disable-line declaration-no-important
|
|
190
191
|
}
|
|
191
192
|
|
|
192
193
|
.k-highlight-editor {
|
|
193
194
|
position: absolute;
|
|
194
195
|
background: transparent;
|
|
195
|
-
z-index: 1;
|
|
196
|
+
z-index: k-z-index("base", 1);
|
|
196
197
|
cursor: auto;
|
|
197
198
|
max-width: 100%;
|
|
198
199
|
max-height: 100%;
|
|
@@ -220,7 +221,7 @@
|
|
|
220
221
|
.k-free-text-editor {
|
|
221
222
|
position: absolute;
|
|
222
223
|
background: transparent;
|
|
223
|
-
z-index: 1;
|
|
224
|
+
z-index: k-z-index("base", 1);
|
|
224
225
|
transform-origin: 0 0;
|
|
225
226
|
cursor: text;
|
|
226
227
|
caret-color: $kendo-pdf-viewer-free-text-annotation-text;
|
|
@@ -229,7 +230,7 @@
|
|
|
229
230
|
border: solid 2px transparent;
|
|
230
231
|
|
|
231
232
|
&.k-selected.k-draggable {
|
|
232
|
-
cursor: move
|
|
233
|
+
cursor: move;
|
|
233
234
|
}
|
|
234
235
|
|
|
235
236
|
&.k-selected .k-internal {
|
|
@@ -291,7 +292,7 @@
|
|
|
291
292
|
flex: 0 0 auto;
|
|
292
293
|
justify-content: flex-start;
|
|
293
294
|
align-items: center;
|
|
294
|
-
z-index:
|
|
295
|
+
z-index: k-z-index("modal");
|
|
295
296
|
cursor: default;
|
|
296
297
|
|
|
297
298
|
.k-search-dialog-draghandle {
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
@use "../../mixins/index.import.scss" as *;
|
|
3
3
|
@use "./variables.scss" as *;
|
|
4
4
|
@use "../icons/_variables.scss" as *;
|
|
5
|
+
@use "../../z-index/index.import.scss" as *;
|
|
5
6
|
|
|
6
7
|
@mixin kendo-pivotgrid--layout-base() {
|
|
7
8
|
|
|
@@ -180,7 +181,7 @@
|
|
|
180
181
|
display: flex;
|
|
181
182
|
flex-direction: column;
|
|
182
183
|
overflow: hidden;
|
|
183
|
-
z-index: 2;
|
|
184
|
+
z-index: k-z-index("base", 2);
|
|
184
185
|
}
|
|
185
186
|
|
|
186
187
|
// Configurator Button
|
|
@@ -203,7 +204,7 @@
|
|
|
203
204
|
.k-pivotgrid-configurator-overlay {
|
|
204
205
|
position: absolute;
|
|
205
206
|
overflow: hidden;
|
|
206
|
-
z-index: 2;
|
|
207
|
+
z-index: k-z-index("base", 2);
|
|
207
208
|
}
|
|
208
209
|
|
|
209
210
|
// Panel Content
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use "../../mixins/index.import.scss" as *;
|
|
2
2
|
@use "../../color-system/_constants.scss" as *;
|
|
3
3
|
@use "./variables.scss" as *;
|
|
4
|
+
@use "../../z-index/index.import.scss" as *;
|
|
4
5
|
|
|
5
6
|
@mixin kendo-popover--layout-base() {
|
|
6
7
|
|
|
@@ -17,7 +18,7 @@
|
|
|
17
18
|
line-height: $kendo-popover-line-height;
|
|
18
19
|
display: flex;
|
|
19
20
|
flex-flow: column nowrap;
|
|
20
|
-
z-index:
|
|
21
|
+
z-index: k-z-index("popup");
|
|
21
22
|
-webkit-touch-callout: none;
|
|
22
23
|
-webkit-tap-highlight-color: $kendo-color-rgba-transparent;
|
|
23
24
|
|