@progress/kendo-theme-fluent 5.12.1-dev.2 → 5.12.1-dev.4
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/all.css +534 -353
- package/dist/all.scss +4 -1
- package/dist/fluent-main.scss +4 -0
- package/lib/swatches/all.json +17 -0
- package/lib/swatches/fluent-main.json +17 -0
- package/package.json +4 -4
- package/scss/adaptive/_layout.scss +2 -2
- package/scss/badge/_variables.scss +30 -30
- package/scss/breadcrumb/_variables.scss +4 -0
- package/scss/button/_layout.scss +39 -0
- package/scss/button/_variables.scss +33 -33
- package/scss/card/_layout.scss +2 -2
- package/scss/chat/_variables.scss +3 -3
- package/scss/checkbox/_variables.scss +1 -1
- package/scss/chip/_variables.scss +27 -27
- package/scss/coloreditor/_layout.scss +24 -24
- package/scss/coloreditor/_theme.scss +8 -8
- package/scss/coloreditor/_variables.scss +27 -27
- package/scss/coloreditor/index.scss +2 -2
- package/scss/colorgradient/_layout.scss +43 -42
- package/scss/colorgradient/_theme.scss +19 -19
- package/scss/colorgradient/_variables.scss +46 -46
- package/scss/colorgradient/index.scss +2 -2
- package/scss/colorpalette/_layout.scss +8 -8
- package/scss/colorpalette/_theme.scss +9 -9
- package/scss/colorpalette/_variables.scss +15 -15
- package/scss/colorpalette/index.scss +2 -2
- package/scss/core/_variables.scss +2 -2
- package/scss/core/mixins/_hide-scrollbar.scss +1 -1
- package/scss/core/mixins/_typography.scss +6 -16
- package/scss/dataviz/_layout.scss +3 -3
- package/scss/dataviz/_variables.scss +33 -33
- package/scss/dialog/_variables.scss +3 -3
- package/scss/editor/_layout.scss +2 -2
- package/scss/fab/_variables.scss +12 -12
- package/scss/filemanager/_layout.scss +31 -31
- package/scss/filemanager/_theme.scss +34 -34
- package/scss/filemanager/_variables.scss +58 -58
- package/scss/filemanager/index.scss +2 -2
- package/scss/floating-label/_variables.scss +2 -2
- package/scss/forms/_layout.scss +3 -3
- package/scss/forms/_variables.scss +8 -8
- package/scss/gantt/_layout.scss +2 -2
- package/scss/grid/_layout.scss +43 -16
- package/scss/grid/_theme.scss +46 -1
- package/scss/grid/_variables.scss +74 -74
- package/scss/icon/_layout.scss +5 -0
- package/scss/imageeditor/_layout.scss +24 -24
- package/scss/imageeditor/_theme.scss +14 -14
- package/scss/imageeditor/_variables.scss +33 -33
- package/scss/imageeditor/index.scss +2 -2
- package/scss/input/_layout.scss +4 -4
- package/scss/input/_variables.scss +42 -42
- package/scss/list/_variables.scss +102 -102
- package/scss/loader/_layout.scss +45 -45
- package/scss/loader/_variables.scss +33 -33
- package/scss/map/_variables.scss +2 -2
- package/scss/mediaplayer/_layout.scss +7 -7
- package/scss/mediaplayer/_theme.scss +8 -8
- package/scss/mediaplayer/_variables.scss +13 -13
- package/scss/mediaplayer/index.scss +2 -2
- package/scss/menu/_layout.scss +3 -3
- package/scss/menu/_variables.scss +43 -43
- package/scss/pager/_variables.scss +18 -18
- package/scss/pivotgrid/_layout.scss +2 -2
- package/scss/radio/_variables.scss +1 -1
- package/scss/rating/_variables.scss +1 -1
- package/scss/scheduler/_layout.scss +1 -1
- package/scss/scrollview/_variables.scss +1 -1
- package/scss/signature/_variables.scss +18 -18
- package/scss/split-button/_layout.scss +2 -2
- package/scss/split-button/_variables.scss +9 -9
- package/scss/spreadsheet/_layout.scss +9 -9
- package/scss/spreadsheet/_variables.scss +1 -1
- package/scss/table/_layout.scss +2 -2
- package/scss/table/_variables.scss +27 -27
- package/scss/tilelayout/_layout.scss +4 -4
- package/scss/tilelayout/_theme.scss +4 -4
- package/scss/tilelayout/_variables.scss +6 -6
- package/scss/tilelayout/index.scss +2 -2
- package/scss/timeselector/_layout.scss +1 -1
- package/scss/timeselector/_variables.scss +13 -13
- package/scss/toolbar/_layout.scss +10 -10
- package/scss/toolbar/_variables.scss +18 -18
- package/scss/treeview/_variables.scss +24 -24
- package/scss/typography/_layout.scss +7 -7
- package/scss/upload/_variables.scss +1 -1
- package/scss/window/_variables.scss +2 -2
package/scss/gantt/_layout.scss
CHANGED
|
@@ -223,7 +223,7 @@
|
|
|
223
223
|
}
|
|
224
224
|
.k-gantt-pdf,
|
|
225
225
|
.k-gantt-create {
|
|
226
|
-
padding: $kendo-button-padding-y
|
|
226
|
+
padding: $kendo-button-md-padding-y;
|
|
227
227
|
width: $kendo-button-calc-size;
|
|
228
228
|
height: $kendo-button-calc-size;
|
|
229
229
|
|
|
@@ -614,7 +614,7 @@
|
|
|
614
614
|
display: block;
|
|
615
615
|
}
|
|
616
616
|
.k-task-pct {
|
|
617
|
-
font-size: var( --kendo-icon-size-
|
|
617
|
+
font-size: var( --kendo-icon-size-xxl, 2rem );
|
|
618
618
|
}
|
|
619
619
|
ul {
|
|
620
620
|
line-height: normal;
|
package/scss/grid/_layout.scss
CHANGED
|
@@ -66,6 +66,7 @@
|
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
.k-table-th,
|
|
69
|
+
td,
|
|
69
70
|
.k-table-td {
|
|
70
71
|
border-width: 0;
|
|
71
72
|
padding-inline: var( --INTERNAL--kendo-grid-cell-padding-x, 0 );
|
|
@@ -108,6 +109,7 @@
|
|
|
108
109
|
white-space: nowrap;
|
|
109
110
|
}
|
|
110
111
|
|
|
112
|
+
td,
|
|
111
113
|
.k-table-td {
|
|
112
114
|
border-block-end-width: var( --kendo-grid-cell-border-width-y, #{$kendo-grid-cell-border-width-y} );
|
|
113
115
|
border-inline-start-width: var( --kendo-grid-cell-border-width-x, #{$kendo-grid-cell-border-width-x} );
|
|
@@ -140,11 +142,13 @@
|
|
|
140
142
|
align-content: center;
|
|
141
143
|
}
|
|
142
144
|
|
|
145
|
+
.k-grouping-row td,
|
|
143
146
|
.k-grouping-row .k-table-td {
|
|
144
147
|
border-block-end-width: 0;
|
|
145
148
|
overflow: visible;
|
|
146
149
|
}
|
|
147
150
|
|
|
151
|
+
.k-grouping-row + .k-table-row td,
|
|
148
152
|
.k-grouping-row + .k-table-row .k-table-td {
|
|
149
153
|
border-top-width: var( --kendo-grid-grouping-row-border-width-y, #{$kendo-grid-grouping-row-border-width-y} );
|
|
150
154
|
}
|
|
@@ -162,11 +166,14 @@
|
|
|
162
166
|
text-decoration: none;
|
|
163
167
|
}
|
|
164
168
|
|
|
169
|
+
.k-group-footer td,
|
|
165
170
|
.k-group-footer .k-table-td {
|
|
166
171
|
border-style: solid;
|
|
167
172
|
border-inline-width: var( --kendo-grid-group-footer-border-width-x, #{$kendo-grid-group-footer-border-width-x} );
|
|
168
173
|
border-block-start-width: var( --kendo-grid-group-footer-border-width-y, #{$kendo-grid-group-footer-border-width-y} );
|
|
169
174
|
}
|
|
175
|
+
|
|
176
|
+
.k-group-footer .k-group-cell + td,
|
|
170
177
|
.k-group-footer .k-group-cell + .k-table-td {
|
|
171
178
|
border-inline-start-width: var( --kendo-grid-group-footer-border-width-x, #{$kendo-grid-group-footer-border-width-x} );
|
|
172
179
|
}
|
|
@@ -293,10 +300,10 @@
|
|
|
293
300
|
}
|
|
294
301
|
|
|
295
302
|
.k-grouping-dropclue {
|
|
296
|
-
width: calc( var( --kendo-grid-group-
|
|
297
|
-
height: var( --INTERNAL--kendo-grid-group-
|
|
303
|
+
width: calc( var( --kendo-grid-group-drop-hint-size, #{$kendo-grid-group-drop-hint-size} ) * 2 );
|
|
304
|
+
height: var( --INTERNAL--kendo-grid-group-drop-hint-height, 1rem );
|
|
298
305
|
position: absolute;
|
|
299
|
-
top: var( --kendo-grid-group-
|
|
306
|
+
top: var( --kendo-grid-group-drop-hint-top, #{$kendo-grid-group-drop-hint-top} );
|
|
300
307
|
box-sizing: content-box;
|
|
301
308
|
|
|
302
309
|
&::before,
|
|
@@ -307,18 +314,18 @@
|
|
|
307
314
|
}
|
|
308
315
|
|
|
309
316
|
&::before {
|
|
310
|
-
width: var( --kendo-grid-group-
|
|
311
|
-
height: var( --kendo-grid-group-
|
|
317
|
+
width: var( --kendo-grid-group-drop-hint-dot-size, #{$kendo-grid-group-drop-hint-dot-size} );
|
|
318
|
+
height: var( --kendo-grid-group-drop-hint-dot-size, #{$kendo-grid-group-drop-hint-dot-size} );
|
|
312
319
|
border-radius: 50%;
|
|
313
320
|
top: 0;
|
|
314
|
-
left: calc( var( --kendo-grid-group-
|
|
321
|
+
left: calc( var( --kendo-grid-group-drop-hint-dot-size, #{$kendo-grid-group-drop-hint-dot-size} ) / 2 );
|
|
315
322
|
}
|
|
316
323
|
|
|
317
324
|
&::after {
|
|
318
|
-
width: var( --kendo-grid-group-
|
|
319
|
-
height: calc( 100% - var( --kendo-grid-group-
|
|
320
|
-
top: var( --kendo-grid-group-
|
|
321
|
-
left: calc( var( --kendo-grid-group-
|
|
325
|
+
width: var( --kendo-grid-group-drop-hint-line-size, #{$kendo-grid-group-drop-hint-line-size} );
|
|
326
|
+
height: calc( 100% - var( --kendo-grid-group-drop-hint-size, #{$kendo-grid-group-drop-hint-size} ) );
|
|
327
|
+
top: var( --kendo-grid-group-drop-hint-size, #{$kendo-grid-group-drop-hint-size} );
|
|
328
|
+
left: calc( var( --kendo-grid-group-drop-hint-size, #{$kendo-grid-group-drop-hint-size} ) - ( var( --kendo-grid-group-drop-hint-line-size, #{$kendo-grid-group-drop-hint-line-size} ) / 2 ) );
|
|
322
329
|
}
|
|
323
330
|
}
|
|
324
331
|
|
|
@@ -352,7 +359,7 @@
|
|
|
352
359
|
.k-grid-header,
|
|
353
360
|
.k-grid-footer {
|
|
354
361
|
padding-inline-start: 0;
|
|
355
|
-
padding-inline-end: var( --kendo-scrollbar-width, #{$
|
|
362
|
+
padding-inline-end: var( --kendo-scrollbar-width, #{$kendo-scrollbar-width} );
|
|
356
363
|
border-width: 0;
|
|
357
364
|
border-style: solid;
|
|
358
365
|
border-color: inherit;
|
|
@@ -466,14 +473,18 @@
|
|
|
466
473
|
.k-grid-footer {
|
|
467
474
|
border-block-start-width: var( --kendo-grid-border-width, #{$kendo-grid-border-width} );
|
|
468
475
|
|
|
476
|
+
td,
|
|
469
477
|
.k-table-td {
|
|
470
478
|
height: var( --kendo-line-height-em, normal );
|
|
471
479
|
border-block-end-width: 0;
|
|
472
480
|
}
|
|
473
481
|
}
|
|
474
482
|
|
|
483
|
+
.k-grid-footer td,
|
|
475
484
|
.k-grid-footer .k-table-td,
|
|
476
485
|
.k-grid-header .k-table-th,
|
|
486
|
+
.k-group-footer td,
|
|
487
|
+
.k-grouping-row td,
|
|
477
488
|
.k-group-footer .k-table-td,
|
|
478
489
|
.k-grouping-row .k-table-td {
|
|
479
490
|
font-weight: var( --kendo-grid-header-font-weight, #{$kendo-grid-header-font-weight} );
|
|
@@ -497,6 +508,7 @@
|
|
|
497
508
|
.k-filter-row {
|
|
498
509
|
line-height: $kendo-form-line-height;
|
|
499
510
|
|
|
511
|
+
td,
|
|
500
512
|
.k-table-td,
|
|
501
513
|
.k-table-th {
|
|
502
514
|
padding-inline: var( --INTERNAL--kendo-grid-filter-cell-padding-x, 0 );
|
|
@@ -505,6 +517,7 @@
|
|
|
505
517
|
white-space: nowrap;
|
|
506
518
|
}
|
|
507
519
|
|
|
520
|
+
td:first-child,
|
|
508
521
|
.k-table-td:first-child {
|
|
509
522
|
border-left-width: 0;
|
|
510
523
|
}
|
|
@@ -552,6 +565,7 @@
|
|
|
552
565
|
border-color: inherit;
|
|
553
566
|
outline: 0;
|
|
554
567
|
|
|
568
|
+
.k-table-row:last-child > td,
|
|
555
569
|
.k-table-row:last-child > .k-table-td {
|
|
556
570
|
border-bottom-width: 0;
|
|
557
571
|
}
|
|
@@ -579,14 +593,17 @@
|
|
|
579
593
|
border-inline-end-width: var( --kendo-grid-border-width, #{$kendo-grid-border-width} );
|
|
580
594
|
}
|
|
581
595
|
|
|
596
|
+
.k-master-row.k-expanded td,
|
|
582
597
|
.k-master-row.k-expanded .k-table-td {
|
|
583
598
|
border-block-end-width: 0;
|
|
584
599
|
}
|
|
585
600
|
|
|
601
|
+
.k-master-row:has(.k-hierarchy-cell[aria-expanded="true"]) td,
|
|
586
602
|
.k-master-row:has(.k-hierarchy-cell[aria-expanded="true"]) .k-table-td {
|
|
587
603
|
border-block-end-width: 0;
|
|
588
604
|
}
|
|
589
605
|
|
|
606
|
+
.k-master-row:last-child td,
|
|
590
607
|
.k-master-row:last-child .k-table-td {
|
|
591
608
|
border-block-end-width: var( --kendo-grid-border-width, #{$kendo-grid-border-width} );
|
|
592
609
|
}
|
|
@@ -596,6 +613,7 @@
|
|
|
596
613
|
// Edit row
|
|
597
614
|
.k-grid .k-edit-cell,
|
|
598
615
|
.k-grid .k-command-cell,
|
|
616
|
+
.k-grid .k-grid-edit-row td,
|
|
599
617
|
.k-grid .k-grid-edit-row .k-table-td {
|
|
600
618
|
padding-inline: var( --INTERNAL--kendo-grid-edit-cell-padding-x, 0 );
|
|
601
619
|
padding-block: var( --INTERNAL--kendo-grid-edit-cell-padding-y, 0 );
|
|
@@ -603,6 +621,7 @@
|
|
|
603
621
|
}
|
|
604
622
|
|
|
605
623
|
.k-grid .k-edit-cell,
|
|
624
|
+
.k-grid .k-grid-edit-row td,
|
|
606
625
|
.k-grid .k-grid-edit-row .k-table-td {
|
|
607
626
|
|
|
608
627
|
> input:not([type="checkbox"]):not([type="radio"]),
|
|
@@ -659,19 +678,19 @@
|
|
|
659
678
|
|
|
660
679
|
.k-grid-virtual .k-grid-content {
|
|
661
680
|
.k-grid-table-wrap {
|
|
662
|
-
float:
|
|
681
|
+
float: left;
|
|
663
682
|
width: 100%;
|
|
664
683
|
}
|
|
665
684
|
|
|
666
685
|
.k-grid-table {
|
|
667
686
|
position: relative;
|
|
668
|
-
float:
|
|
687
|
+
float: left;
|
|
669
688
|
z-index: 1;
|
|
670
689
|
}
|
|
671
690
|
|
|
672
691
|
> .k-height-container {
|
|
673
692
|
position: relative;
|
|
674
|
-
float:
|
|
693
|
+
float: left;
|
|
675
694
|
}
|
|
676
695
|
|
|
677
696
|
&::after {
|
|
@@ -690,6 +709,7 @@
|
|
|
690
709
|
height: 1px;
|
|
691
710
|
}
|
|
692
711
|
|
|
712
|
+
.k-grid-add-row td,
|
|
693
713
|
.k-grid-add-row .k-table-td {
|
|
694
714
|
border-bottom-style: solid;
|
|
695
715
|
border-bottom-width: 1px;
|
|
@@ -720,6 +740,7 @@
|
|
|
720
740
|
border-inline-end-width: 1px;
|
|
721
741
|
box-sizing: content-box;
|
|
722
742
|
|
|
743
|
+
td,
|
|
723
744
|
.k-table-td,
|
|
724
745
|
.k-table-th {
|
|
725
746
|
border-inline-start-width: 1px;
|
|
@@ -777,6 +798,7 @@
|
|
|
777
798
|
z-index: auto;
|
|
778
799
|
}
|
|
779
800
|
|
|
801
|
+
.k-grid-row-sticky td,
|
|
780
802
|
.k-grid-row-sticky .k-table-td {
|
|
781
803
|
border-block-start-width: var( --kendo-grid-border-width, #{$kendo-grid-border-width} );
|
|
782
804
|
border-block-end-width: var( --kendo-grid-border-width, #{$kendo-grid-border-width} );
|
|
@@ -785,10 +807,13 @@
|
|
|
785
807
|
bottom: inherit;
|
|
786
808
|
}
|
|
787
809
|
|
|
810
|
+
.k-grid-row-sticky td,
|
|
788
811
|
.k-grid-row-sticky .k-table-td {
|
|
789
812
|
z-index: 2;
|
|
790
813
|
}
|
|
791
814
|
|
|
815
|
+
.k-grid-row-sticky td.k-grid-content-sticky,
|
|
816
|
+
.k-grid-row-sticky.k-alt td.k-grid-content-sticky,
|
|
792
817
|
.k-grid-row-sticky .k-table-td.k-grid-content-sticky,
|
|
793
818
|
.k-grid-row-sticky.k-alt .k-table-td.k-grid-content-sticky {
|
|
794
819
|
z-index: 3;
|
|
@@ -815,6 +840,7 @@
|
|
|
815
840
|
.k-grid .k-grid-footer-sticky {
|
|
816
841
|
border-inline-end-width: var( --kendo-grid-sticky-cell-border-width, #{$kendo-grid-sticky-cell-border-width} );
|
|
817
842
|
|
|
843
|
+
&:not([style*="display: none"]) + td,
|
|
818
844
|
&:not([style*="display: none"]) + .k-table-td,
|
|
819
845
|
&:not([style*="display: none"]) + .k-table-th {
|
|
820
846
|
border-inline-start-width: 0;
|
|
@@ -969,7 +995,7 @@
|
|
|
969
995
|
--INTERNAL--kendo-button-padding-y: var( --kendo-button-padding-y-#{$size}, #{$_button-padding-y} );
|
|
970
996
|
--INTERNAL--kendo-button-calc-size: var( --kendo-button-calc-size-#{$size}, #{$_button-calc-size} );
|
|
971
997
|
--INTERNAL--kendo-button-line-height: var( --kendo-button-line-height-#{$size}, #{$_button-line-height} );
|
|
972
|
-
--INTERNAL--kendo-grid-group-
|
|
998
|
+
--INTERNAL--kendo-grid-group-drop-hint-height: var( --kendo-group-dropclue-height-#{$size}, #{$_group-dropclue-height} );
|
|
973
999
|
}
|
|
974
1000
|
}
|
|
975
1001
|
|
|
@@ -1017,7 +1043,7 @@
|
|
|
1017
1043
|
// Remove Grid scrollbar during built-in export
|
|
1018
1044
|
.k-pdf-export-shadow {
|
|
1019
1045
|
.k-grid {
|
|
1020
|
-
float:
|
|
1046
|
+
float: left;
|
|
1021
1047
|
width: auto !important; // sass-lint:disable-line no-important
|
|
1022
1048
|
}
|
|
1023
1049
|
|
|
@@ -1125,6 +1151,7 @@
|
|
|
1125
1151
|
table-layout: auto !important;
|
|
1126
1152
|
|
|
1127
1153
|
.k-table-th,
|
|
1154
|
+
td,
|
|
1128
1155
|
.k-table-td {
|
|
1129
1156
|
white-space: nowrap !important;
|
|
1130
1157
|
}
|
package/scss/grid/_theme.scss
CHANGED
|
@@ -10,12 +10,14 @@
|
|
|
10
10
|
.k-grid-header,
|
|
11
11
|
.k-grid-header-wrap,
|
|
12
12
|
.k-grouping-header,
|
|
13
|
+
.k-grid td,
|
|
13
14
|
.k-grid .k-table-td,
|
|
14
15
|
.k-grid-footer,
|
|
15
16
|
.k-grid-footer-wrap,
|
|
16
17
|
.k-grid-content-locked,
|
|
17
18
|
.k-grid-footer-locked,
|
|
18
19
|
.k-grid-header-locked,
|
|
20
|
+
.k-filter-row > td,
|
|
19
21
|
.k-filter-row > .k-table-td,
|
|
20
22
|
.k-filter-row > .k-table-th {
|
|
21
23
|
@include fill(
|
|
@@ -48,6 +50,8 @@
|
|
|
48
50
|
@include fill( $bg: var( --kendo-grid-bg, #{$kendo-grid-bg} ) );
|
|
49
51
|
}
|
|
50
52
|
|
|
53
|
+
.k-group-footer td,
|
|
54
|
+
.k-grouping-row td,
|
|
51
55
|
.k-group-footer .k-table-td,
|
|
52
56
|
.k-grouping-row .k-table-td,
|
|
53
57
|
.k-table-tbody .k-group-cell {
|
|
@@ -62,7 +66,7 @@
|
|
|
62
66
|
&::before,
|
|
63
67
|
&::after {
|
|
64
68
|
@include fill(
|
|
65
|
-
$bg: var( --kendo-grid-group-
|
|
69
|
+
$bg: var( --kendo-grid-group-drop-hint-bg, #{$kendo-grid-group-drop-hint-bg} )
|
|
66
70
|
);
|
|
67
71
|
}
|
|
68
72
|
}
|
|
@@ -85,6 +89,8 @@
|
|
|
85
89
|
}
|
|
86
90
|
|
|
87
91
|
// Selected state
|
|
92
|
+
td.k-selected,
|
|
93
|
+
.k-table-row.k-selected > td,
|
|
88
94
|
.k-table-td.k-selected,
|
|
89
95
|
.k-table-row.k-selected > .k-table-td {
|
|
90
96
|
@include fill(
|
|
@@ -95,9 +101,13 @@
|
|
|
95
101
|
}
|
|
96
102
|
|
|
97
103
|
// Selected hover state
|
|
104
|
+
.k-table-tbody > .k-table-row:not(.k-detail-row):hover td.k-selected,
|
|
105
|
+
.k-table-tbody > .k-table-row:not(.k-detail-row).k-hover.k-selected > td,
|
|
98
106
|
.k-table-tbody > .k-table-row:not(.k-detail-row):hover .k-table-td.k-selected,
|
|
99
107
|
.k-table-tbody > .k-table-row:not(.k-detail-row).k-hover.k-selected > .k-table-td,
|
|
100
108
|
.k-table-tbody > .k-table-row:not(.k-detail-row).k-hover.k-selected,
|
|
109
|
+
.k-table-tbody > .k-table-row:not(.k-detail-row).k-hover td.k-selected,
|
|
110
|
+
.k-table-tbody > .k-table-row:not(.k-detail-row).k-selected:hover > td,
|
|
101
111
|
.k-table-tbody > .k-table-row:not(.k-detail-row).k-hover .k-table-td.k-selected,
|
|
102
112
|
.k-table-tbody > .k-table-row:not(.k-detail-row).k-selected:hover > .k-table-td {
|
|
103
113
|
@include fill(
|
|
@@ -107,10 +117,16 @@
|
|
|
107
117
|
}
|
|
108
118
|
|
|
109
119
|
// Focused state
|
|
120
|
+
td:focus,
|
|
121
|
+
td.k-focus,
|
|
110
122
|
.k-table-td:focus,
|
|
111
123
|
.k-table-td.k-focus,
|
|
112
124
|
.k-table-th:focus,
|
|
113
125
|
.k-table-th.k-focus,
|
|
126
|
+
.k-master-row > td:focus,
|
|
127
|
+
.k-grouping-row > td:focus,
|
|
128
|
+
.k-detail-row > td:focus,
|
|
129
|
+
.k-group-footer > td:focus,
|
|
114
130
|
.k-master-row > .k-table-td:focus,
|
|
115
131
|
.k-grouping-row > .k-table-td:focus,
|
|
116
132
|
.k-detail-row > .k-table-td:focus,
|
|
@@ -147,29 +163,36 @@
|
|
|
147
163
|
.k-grid-header-locked,
|
|
148
164
|
.k-grid-content-locked,
|
|
149
165
|
.k-grid-header-locked .k-table-th,
|
|
166
|
+
.k-grid-content-locked td,
|
|
150
167
|
.k-grid-content-locked .k-table-td {
|
|
151
168
|
border-inline-color: var( --kendo-grid-sticky-header-border, #{$kendo-grid-sticky-header-border} );
|
|
152
169
|
}
|
|
153
170
|
|
|
154
171
|
.k-grid-content-locked {
|
|
172
|
+
.k-group-footer td,
|
|
155
173
|
.k-group-footer .k-table-td {
|
|
156
174
|
@include fill( $border: var( --kendo-grid-header-border, #{$kendo-grid-header-border} ) );
|
|
157
175
|
}
|
|
158
176
|
|
|
177
|
+
.k-grouping-row + .k-table-row td,
|
|
159
178
|
.k-grouping-row + .k-table-row .k-table-td {
|
|
160
179
|
border-top-color: var( --kendo-grid-header-border, #{$kendo-grid-header-border} );
|
|
161
180
|
}
|
|
162
181
|
|
|
163
182
|
// Selected state
|
|
183
|
+
.k-selected td,
|
|
164
184
|
.k-selected .k-table-td {
|
|
165
185
|
@include fill( $bg: var( --kendo-grid-sticky-selected-bg, #{$kendo-grid-sticky-selected-bg} ) );
|
|
166
186
|
}
|
|
167
187
|
|
|
188
|
+
.k-selected.k-table-alt-row td,
|
|
168
189
|
.k-selected.k-table-alt-row .k-table-td {
|
|
169
190
|
@include fill( $bg: var( --kendo-grid-sticky-selected-alt-bg, #{$kendo-grid-sticky-selected-alt-bg} ) );
|
|
170
191
|
}
|
|
171
192
|
|
|
172
193
|
// Selected hover
|
|
194
|
+
.k-selected:hover td,
|
|
195
|
+
.k-selected.k-hover td,
|
|
173
196
|
.k-selected:hover .k-table-td,
|
|
174
197
|
.k-selected.k-hover .k-table-td {
|
|
175
198
|
@include fill( $bg: var( --kendo-grid-sticky-selected-hover-bg, #{$kendo-grid-sticky-selected-hover-bg} ) );
|
|
@@ -225,6 +248,7 @@
|
|
|
225
248
|
}
|
|
226
249
|
|
|
227
250
|
.k-table-th.k-grid-header-sticky,
|
|
251
|
+
td.k-grid-header-sticky,
|
|
228
252
|
.k-table-td.k-grid-header-sticky,
|
|
229
253
|
.k-grid-header-sticky.k-sorted {
|
|
230
254
|
@include fill(
|
|
@@ -272,12 +296,14 @@
|
|
|
272
296
|
// Selected state
|
|
273
297
|
&.k-selected .k-grid-content-sticky,
|
|
274
298
|
&.k-selected .k-grid-row-sticky,
|
|
299
|
+
td.k-grid-content-sticky.k-selected,
|
|
275
300
|
.k-table-td.k-grid-content-sticky.k-selected {
|
|
276
301
|
@include fill( $bg: var( --kendo-grid-sticky-selected-bg, #{$kendo-grid-sticky-selected-bg} ) );
|
|
277
302
|
}
|
|
278
303
|
|
|
279
304
|
&.k-selected.k-table-alt-row .k-grid-content-sticky,
|
|
280
305
|
&.k-selected.k-table-alt-row .k-grid-row-sticky,
|
|
306
|
+
&.k-table-alt-row td.k-grid-content-sticky.k-selected,
|
|
281
307
|
&.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
282
308
|
@include fill( $bg: var( --kendo-grid-sticky-selected-alt-bg, #{$kendo-grid-sticky-selected-alt-bg} ) );
|
|
283
309
|
}
|
|
@@ -297,6 +323,8 @@
|
|
|
297
323
|
&.k-selected:hover .k-grid-row-sticky,
|
|
298
324
|
&.k-selected.k-hover .k-grid-content-sticky,
|
|
299
325
|
&.k-selected.k-hover .k-grid-row-sticky,
|
|
326
|
+
&:hover td.k-grid-content-sticky.k-selected,
|
|
327
|
+
&.k-hover td.k-grid-content-sticky.k-selected,
|
|
300
328
|
&:hover .k-table-td.k-grid-content-sticky.k-selected,
|
|
301
329
|
&.k-hover .k-table-td.k-grid-content-sticky.k-selected {
|
|
302
330
|
@include fill( $bg: var( --kendo-grid-sticky-selected-hover-bg, #{$kendo-grid-sticky-selected-hover-bg} ) );
|
|
@@ -316,11 +344,14 @@
|
|
|
316
344
|
}
|
|
317
345
|
|
|
318
346
|
.k-grid-row-sticky {
|
|
347
|
+
td,
|
|
319
348
|
.k-table-td {
|
|
320
349
|
border-block-color: var( --kendo-grid-sticky-border, #{$kendo-grid-sticky-border} );
|
|
321
350
|
background-color: var( --kendo-grid-sticky-bg, #{$kendo-grid-sticky-bg} );
|
|
322
351
|
}
|
|
323
352
|
|
|
353
|
+
&:hover td,
|
|
354
|
+
&.k-hover td,
|
|
324
355
|
&:hover .k-table-td,
|
|
325
356
|
&.k-hover .k-table-td {
|
|
326
357
|
background-color: var( --kendo-grid-sticky-hover-bg, #{$kendo-grid-sticky-hover-bg} );
|
|
@@ -328,12 +359,15 @@
|
|
|
328
359
|
}
|
|
329
360
|
|
|
330
361
|
.k-table-alt-row .k-grid-content-sticky,
|
|
362
|
+
.k-grid-row-sticky.k-table-alt-row td,
|
|
331
363
|
.k-grid-row-sticky.k-table-alt-row .k-table-td {
|
|
332
364
|
@include fill( $bg: var( --kendo-grid-sticky-alt-bg, #{$kendo-grid-sticky-alt-bg} ) );
|
|
333
365
|
}
|
|
334
366
|
|
|
335
367
|
// Selected state
|
|
336
368
|
.k-table-row.k-selected .k-grid-content-sticky,
|
|
369
|
+
.k-selected.k-grid-row-sticky td,
|
|
370
|
+
.k-grid-row-sticky td.k-selected,
|
|
337
371
|
.k-selected.k-grid-row-sticky .k-table-td,
|
|
338
372
|
.k-grid-row-sticky .k-table-td.k-selected,
|
|
339
373
|
.k-selected.k-grid-content-sticky {
|
|
@@ -341,6 +375,7 @@
|
|
|
341
375
|
}
|
|
342
376
|
|
|
343
377
|
.k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky,
|
|
378
|
+
.k-selected.k-table-alt-row.k-grid-row-sticky td,
|
|
344
379
|
.k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td,
|
|
345
380
|
.k-table-alt-row .k-selected.k-grid-content-sticky {
|
|
346
381
|
@include fill( $bg: var( --kendo-grid-sticky-selected-alt-bg, #{$kendo-grid-sticky-selected-alt-bg} ) );
|
|
@@ -349,6 +384,10 @@
|
|
|
349
384
|
// Hover state
|
|
350
385
|
.k-table-row:hover .k-grid-content-sticky,
|
|
351
386
|
.k-table-row.k-hover .k-grid-content-sticky,
|
|
387
|
+
.k-grid-row-sticky:hover td,
|
|
388
|
+
.k-grid-row-sticky.k-hover td,
|
|
389
|
+
.k-grid-row-sticky.k-table-alt-row:hover td,
|
|
390
|
+
.k-grid-row-sticky.k-table-alt-row.k-hover td,
|
|
352
391
|
.k-grid-row-sticky:hover .k-table-td,
|
|
353
392
|
.k-grid-row-sticky.k-hover .k-table-td,
|
|
354
393
|
.k-grid-row-sticky.k-table-alt-row:hover .k-table-td,
|
|
@@ -361,12 +400,18 @@
|
|
|
361
400
|
// Selected + Hover
|
|
362
401
|
.k-table-row.k-selected:hover .k-grid-content-sticky,
|
|
363
402
|
.k-table-row.k-selected.k-hover .k-grid-content-sticky,
|
|
403
|
+
.k-selected.k-grid-row-sticky:hover td,
|
|
404
|
+
.k-selected.k-grid-row-sticky.k-hover td,
|
|
405
|
+
.k-selected.k-table-alt-row.k-grid-row-sticky:hover td,
|
|
406
|
+
.k-selected.k-table-alt-row.k-grid-row-sticky.k-hover td,
|
|
364
407
|
.k-selected.k-grid-row-sticky:hover .k-table-td,
|
|
365
408
|
.k-selected.k-grid-row-sticky.k-hover .k-table-td,
|
|
366
409
|
.k-selected.k-table-alt-row.k-grid-row-sticky:hover .k-table-td,
|
|
367
410
|
.k-selected.k-table-alt-row.k-grid-row-sticky.k-hover .k-table-td,
|
|
368
411
|
.k-table-row.k-selected.k-table-alt-row:hover .k-grid-content-sticky,
|
|
369
412
|
.k-table-row.k-selected.k-table-alt-row.k-hover .k-grid-content-sticky,
|
|
413
|
+
.k-grid-row-sticky:hover td.k-selected,
|
|
414
|
+
.k-grid-row-sticky.k-hover td.k-selected,
|
|
370
415
|
.k-grid-row-sticky:hover .k-table-td.k-selected,
|
|
371
416
|
.k-grid-row-sticky.k-hover .k-table-td.k-selected,
|
|
372
417
|
.k-table-row:hover .k-grid-content-sticky.k-selected,
|