@progress/kendo-theme-default 5.12.1-dev.3 → 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 +221 -17
- package/dist/all.scss +122 -23
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue-a11y.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +4 -4
- package/scss/button/_layout.scss +39 -0
- package/scss/colorgradient/_layout.scss +3 -15
- package/scss/grid/_layout.scss +31 -7
- package/scss/grid/_theme.scss +40 -0
- package/scss/icons/_layout.scss +5 -0
- package/scss/input/_layout.scss +1 -1
- package/scss/treelist/_layout.scss +3 -0
|
@@ -169,8 +169,9 @@
|
|
|
169
169
|
}
|
|
170
170
|
|
|
171
171
|
// Needed for the double check icons
|
|
172
|
-
.k-icon + .k-icon
|
|
173
|
-
|
|
172
|
+
.k-icon + .k-icon,
|
|
173
|
+
.k-icon-wrapper-host + .k-icon-wrapper-host .k-icon {
|
|
174
|
+
margin-inline-start: -13px;
|
|
174
175
|
}
|
|
175
176
|
}
|
|
176
177
|
}
|
|
@@ -184,16 +185,3 @@
|
|
|
184
185
|
|
|
185
186
|
}
|
|
186
187
|
|
|
187
|
-
@include exports( "colorgradient/layout/rtl" ) {
|
|
188
|
-
|
|
189
|
-
.k-rtl,
|
|
190
|
-
[dir="rtl"] {
|
|
191
|
-
|
|
192
|
-
.k-colorgradient-color-contrast .k-i-check + .k-i-check {
|
|
193
|
-
margin-left: 0;
|
|
194
|
-
margin-right: -13px;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
}
|
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
|
border-inline-start-width: $kendo-grid-cell-vertical-border-width;
|
|
@@ -104,6 +105,7 @@
|
|
|
104
105
|
white-space: nowrap;
|
|
105
106
|
}
|
|
106
107
|
|
|
108
|
+
td,
|
|
107
109
|
.k-table-td {
|
|
108
110
|
border-block-end-width: $kendo-grid-cell-horizontal-border-width;
|
|
109
111
|
white-space: unset;
|
|
@@ -260,12 +262,17 @@
|
|
|
260
262
|
align-items: center;
|
|
261
263
|
align-content: center;
|
|
262
264
|
}
|
|
265
|
+
|
|
266
|
+
.k-grouping-row td,
|
|
263
267
|
.k-grouping-row .k-table-td {
|
|
264
268
|
overflow: visible;
|
|
265
269
|
}
|
|
270
|
+
|
|
271
|
+
.k-grouping-row + .k-table-row td,
|
|
266
272
|
.k-grouping-row + .k-table-row .k-table-td {
|
|
267
273
|
border-top-width: $kendo-grid-grouping-row-border-top;
|
|
268
274
|
}
|
|
275
|
+
|
|
269
276
|
.k-grouping-row .k-group-cell,
|
|
270
277
|
.k-grouping-row + .k-table-row .k-group-cell {
|
|
271
278
|
border-top-width: 0;
|
|
@@ -278,11 +285,13 @@
|
|
|
278
285
|
text-decoration: none;
|
|
279
286
|
}
|
|
280
287
|
|
|
288
|
+
.k-table .k-group-footer td,
|
|
281
289
|
.k-table .k-group-footer .k-table-td {
|
|
282
290
|
border-style: solid;
|
|
283
291
|
border-width: $kendo-grid-group-footer-border-y 0;
|
|
284
292
|
}
|
|
285
293
|
|
|
294
|
+
.k-group-footer .k-group-cell + td,
|
|
286
295
|
.k-group-footer .k-group-cell + .k-table-td {
|
|
287
296
|
border-inline-start-width: $kendo-grid-cell-vertical-border-width;
|
|
288
297
|
}
|
|
@@ -487,11 +496,15 @@
|
|
|
487
496
|
.k-grid-footer {
|
|
488
497
|
border-top-width: 1px;
|
|
489
498
|
|
|
499
|
+
td,
|
|
490
500
|
.k-table-td {
|
|
491
501
|
height: $kendo-line-height-em;
|
|
492
502
|
}
|
|
493
503
|
}
|
|
494
504
|
|
|
505
|
+
.k-grid-footer td,
|
|
506
|
+
.k-group-footer td,
|
|
507
|
+
.k-grouping-row td,
|
|
495
508
|
.k-grid-footer .k-table-td,
|
|
496
509
|
.k-group-footer .k-table-td,
|
|
497
510
|
.k-grouping-row .k-table-td {
|
|
@@ -514,6 +527,7 @@
|
|
|
514
527
|
.k-filter-row {
|
|
515
528
|
line-height: $kendo-form-line-height;
|
|
516
529
|
|
|
530
|
+
td,
|
|
517
531
|
.k-table-td,
|
|
518
532
|
.k-table-th {
|
|
519
533
|
border-width: 0;
|
|
@@ -522,6 +536,7 @@
|
|
|
522
536
|
white-space: nowrap;
|
|
523
537
|
}
|
|
524
538
|
|
|
539
|
+
td:first-child,
|
|
525
540
|
.k-table-td:first-child {
|
|
526
541
|
border-inline-start-width: 0;
|
|
527
542
|
}
|
|
@@ -568,6 +583,7 @@
|
|
|
568
583
|
border-color: inherit;
|
|
569
584
|
outline: 0;
|
|
570
585
|
|
|
586
|
+
.k-table-row:last-child > td,
|
|
571
587
|
.k-table-row:last-child > .k-table-td {
|
|
572
588
|
border-bottom-width: 0;
|
|
573
589
|
}
|
|
@@ -593,11 +609,13 @@
|
|
|
593
609
|
// Edit row
|
|
594
610
|
.k-grid .k-edit-cell,
|
|
595
611
|
.k-grid .k-command-cell,
|
|
612
|
+
.k-grid .k-grid-edit-row td,
|
|
596
613
|
.k-grid .k-grid-edit-row .k-table-td {
|
|
597
614
|
text-overflow: clip;
|
|
598
615
|
}
|
|
599
616
|
|
|
600
617
|
.k-grid .k-edit-cell,
|
|
618
|
+
.k-grid .k-grid-edit-row td,
|
|
601
619
|
.k-grid .k-grid-edit-row .k-table-td {
|
|
602
620
|
|
|
603
621
|
> input:not([type="checkbox"]):not([type="radio"]),
|
|
@@ -654,19 +672,19 @@
|
|
|
654
672
|
|
|
655
673
|
.k-grid-virtual .k-grid-content {
|
|
656
674
|
.k-grid-table-wrap {
|
|
657
|
-
float:
|
|
675
|
+
float: left;
|
|
658
676
|
width: 100%;
|
|
659
677
|
}
|
|
660
678
|
|
|
661
679
|
.k-grid-table {
|
|
662
680
|
position: relative;
|
|
663
|
-
float:
|
|
681
|
+
float: left;
|
|
664
682
|
z-index: 1;
|
|
665
683
|
}
|
|
666
684
|
|
|
667
685
|
> .k-height-container {
|
|
668
686
|
position: relative;
|
|
669
|
-
float:
|
|
687
|
+
float: left;
|
|
670
688
|
}
|
|
671
689
|
|
|
672
690
|
&::after {
|
|
@@ -685,6 +703,7 @@
|
|
|
685
703
|
height: 1px;
|
|
686
704
|
}
|
|
687
705
|
|
|
706
|
+
.k-grid-add-row td,
|
|
688
707
|
.k-grid-add-row .k-table-td {
|
|
689
708
|
border-bottom-style: solid;
|
|
690
709
|
border-bottom-width: 1px;
|
|
@@ -760,6 +779,7 @@
|
|
|
760
779
|
z-index: auto;
|
|
761
780
|
}
|
|
762
781
|
|
|
782
|
+
.k-grid-row-sticky td,
|
|
763
783
|
.k-grid-row-sticky .k-table-td {
|
|
764
784
|
border-bottom-width: $kendo-grid-border-width;
|
|
765
785
|
border-top-width: $kendo-grid-border-width;
|
|
@@ -767,12 +787,11 @@
|
|
|
767
787
|
position: sticky;
|
|
768
788
|
top: inherit;
|
|
769
789
|
bottom: inherit;
|
|
770
|
-
}
|
|
771
|
-
|
|
772
|
-
.k-grid-row-sticky .k-table-td {
|
|
773
790
|
z-index: 2;
|
|
774
791
|
}
|
|
775
792
|
|
|
793
|
+
.k-grid-row-sticky td.k-grid-content-sticky,
|
|
794
|
+
.k-grid-row-sticky.k-alt td.k-grid-content-sticky,
|
|
776
795
|
.k-grid-row-sticky .k-table-td.k-grid-content-sticky,
|
|
777
796
|
.k-grid-row-sticky.k-alt .k-table-td.k-grid-content-sticky {
|
|
778
797
|
z-index: 3;
|
|
@@ -799,6 +818,7 @@
|
|
|
799
818
|
.k-grid .k-table .k-grid-footer-sticky {
|
|
800
819
|
border-inline-end-width: $kendo-grid-cell-vertical-border-width;
|
|
801
820
|
|
|
821
|
+
&:not([style*="display: none"]) + td,
|
|
802
822
|
&:not([style*="display: none"]) + .k-table-td,
|
|
803
823
|
&:not([style*="display: none"]) + .k-table-th {
|
|
804
824
|
border-inline-start-width: 0;
|
|
@@ -884,6 +904,7 @@
|
|
|
884
904
|
padding: $_header-padding-y $_header-padding-x;
|
|
885
905
|
}
|
|
886
906
|
|
|
907
|
+
td,
|
|
887
908
|
.k-table-td {
|
|
888
909
|
padding: $_cell-padding-y $_cell-padding-x;
|
|
889
910
|
}
|
|
@@ -945,6 +966,7 @@
|
|
|
945
966
|
// Edit row
|
|
946
967
|
.k-edit-cell,
|
|
947
968
|
.k-command-cell,
|
|
969
|
+
.k-grid-edit-row td,
|
|
948
970
|
.k-grid-edit-row .k-table-td {
|
|
949
971
|
padding: $_edit-cell-padding-y $_edit-cell-padding-x;
|
|
950
972
|
}
|
|
@@ -952,6 +974,7 @@
|
|
|
952
974
|
|
|
953
975
|
// Filter row
|
|
954
976
|
.k-filter-row {
|
|
977
|
+
td,
|
|
955
978
|
.k-table-td,
|
|
956
979
|
.k-table-th {
|
|
957
980
|
padding: $_filter-cell-padding-y $_filter-cell-padding-x;
|
|
@@ -1014,7 +1037,7 @@
|
|
|
1014
1037
|
// Remove Grid scrollbar during built-in export
|
|
1015
1038
|
.k-pdf-export-shadow {
|
|
1016
1039
|
.k-grid {
|
|
1017
|
-
float:
|
|
1040
|
+
float: left;
|
|
1018
1041
|
width: auto !important; // sass-lint:disable-line no-important
|
|
1019
1042
|
}
|
|
1020
1043
|
|
|
@@ -1122,6 +1145,7 @@
|
|
|
1122
1145
|
table-layout: auto !important;
|
|
1123
1146
|
|
|
1124
1147
|
.k-table-th,
|
|
1148
|
+
td,
|
|
1125
1149
|
.k-table-td {
|
|
1126
1150
|
white-space: nowrap !important;
|
|
1127
1151
|
}
|
package/scss/grid/_theme.scss
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
.k-grid-header-wrap,
|
|
5
5
|
.k-grouping-header,
|
|
6
6
|
.k-grid .k-table-th,
|
|
7
|
+
.k-grid td,
|
|
7
8
|
.k-grid .k-table-td,
|
|
8
9
|
.k-grid-footer,
|
|
9
10
|
.k-grid-footer-wrap,
|
|
@@ -11,6 +12,7 @@
|
|
|
11
12
|
.k-grid-footer-locked,
|
|
12
13
|
.k-grid-header-locked,
|
|
13
14
|
.k-filter-row > .k-table-th,
|
|
15
|
+
.k-filter-row > td,
|
|
14
16
|
.k-filter-row > .k-table-td {
|
|
15
17
|
@include fill( $border: $kendo-grid-header-border );
|
|
16
18
|
}
|
|
@@ -44,6 +46,8 @@
|
|
|
44
46
|
@include fill($bg: $kendo-grid-bg );
|
|
45
47
|
}
|
|
46
48
|
|
|
49
|
+
.k-group-footer td,
|
|
50
|
+
.k-grouping-row td,
|
|
47
51
|
.k-group-footer .k-table-td,
|
|
48
52
|
.k-grouping-row .k-table-td,
|
|
49
53
|
.k-table-tbody .k-group-cell {
|
|
@@ -79,6 +83,8 @@
|
|
|
79
83
|
}
|
|
80
84
|
|
|
81
85
|
// Selected state
|
|
86
|
+
td.k-selected,
|
|
87
|
+
.k-table-row.k-selected > td,
|
|
82
88
|
.k-table-td.k-selected,
|
|
83
89
|
.k-table-row.k-selected > .k-table-td {
|
|
84
90
|
color: $kendo-grid-selected-text;
|
|
@@ -87,7 +93,12 @@
|
|
|
87
93
|
|
|
88
94
|
// Focused state
|
|
89
95
|
.k-table-th,
|
|
96
|
+
td,
|
|
90
97
|
.k-table-td,
|
|
98
|
+
.k-master-row > td,
|
|
99
|
+
.k-grouping-row > td,
|
|
100
|
+
.k-detail-row > td,
|
|
101
|
+
.k-group-footer > td,
|
|
91
102
|
.k-master-row > .k-table-td,
|
|
92
103
|
.k-grouping-row > .k-table-td,
|
|
93
104
|
.k-detail-row > .k-table-td,
|
|
@@ -123,30 +134,37 @@
|
|
|
123
134
|
.k-grid-header-locked,
|
|
124
135
|
.k-grid-content-locked,
|
|
125
136
|
.k-grid-header-locked .k-table-th,
|
|
137
|
+
.k-grid-content-locked td,
|
|
126
138
|
.k-grid-content-locked .k-table-td {
|
|
127
139
|
border-color: $kendo-grid-sticky-header-border;
|
|
128
140
|
}
|
|
129
141
|
|
|
130
142
|
.k-grid-content-locked {
|
|
143
|
+
.k-group-footer td,
|
|
131
144
|
.k-group-footer .k-table-td,
|
|
132
145
|
.k-group-cell {
|
|
133
146
|
@include fill( $border: $kendo-grid-header-border );
|
|
134
147
|
}
|
|
135
148
|
|
|
149
|
+
.k-grouping-row + .k-table-row td,
|
|
136
150
|
.k-grouping-row + .k-table-row .k-table-td {
|
|
137
151
|
border-top-color: $kendo-grid-header-border;
|
|
138
152
|
}
|
|
139
153
|
|
|
140
154
|
// Selected state
|
|
155
|
+
.k-selected td,
|
|
141
156
|
.k-selected .k-table-td {
|
|
142
157
|
@include fill( $bg: $kendo-grid-sticky-selected-bg );
|
|
143
158
|
}
|
|
144
159
|
|
|
160
|
+
.k-selected.k-table-alt-row td,
|
|
145
161
|
.k-selected.k-table-alt-row .k-table-td {
|
|
146
162
|
@include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
|
|
147
163
|
}
|
|
148
164
|
|
|
149
165
|
// Selected hover
|
|
166
|
+
.k-selected:hover td,
|
|
167
|
+
.k-selected.k-hover td,
|
|
150
168
|
.k-selected:hover .k-table-td,
|
|
151
169
|
.k-selected.k-hover .k-table-td {
|
|
152
170
|
@include fill( $bg: $kendo-grid-sticky-selected-hover-bg );
|
|
@@ -190,6 +208,7 @@
|
|
|
190
208
|
}
|
|
191
209
|
|
|
192
210
|
.k-table-th.k-grid-header-sticky,
|
|
211
|
+
td.k-grid-header-sticky,
|
|
193
212
|
.k-table-td.k-grid-header-sticky,
|
|
194
213
|
.k-grid-header-sticky.k-sorted {
|
|
195
214
|
@include fill(
|
|
@@ -240,12 +259,14 @@
|
|
|
240
259
|
// Selected state
|
|
241
260
|
&.k-selected .k-grid-content-sticky,
|
|
242
261
|
&.k-selected .k-grid-row-sticky,
|
|
262
|
+
td.k-grid-content-sticky.k-selected,
|
|
243
263
|
.k-table-td.k-grid-content-sticky.k-selected {
|
|
244
264
|
@include fill( $bg: $kendo-grid-sticky-selected-bg );
|
|
245
265
|
}
|
|
246
266
|
|
|
247
267
|
&.k-selected.k-table-alt-row .k-grid-content-sticky,
|
|
248
268
|
&.k-selected.k-table-alt-row .k-grid-row-sticky,
|
|
269
|
+
&.k-table-alt-row td.k-grid-content-sticky.k-selected,
|
|
249
270
|
&.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
250
271
|
@include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
|
|
251
272
|
}
|
|
@@ -265,6 +286,8 @@
|
|
|
265
286
|
&.k-selected:hover .k-grid-row-sticky,
|
|
266
287
|
&.k-selected.k-hover .k-grid-content-sticky,
|
|
267
288
|
&.k-selected.k-hover .k-grid-row-sticky,
|
|
289
|
+
&:hover td.k-grid-content-sticky.k-selected,
|
|
290
|
+
&.k-hover td.k-grid-content-sticky.k-selected,
|
|
268
291
|
&:hover .k-table-td.k-grid-content-sticky.k-selected,
|
|
269
292
|
&.k-hover .k-table-td.k-grid-content-sticky.k-selected {
|
|
270
293
|
background-color: $kendo-grid-sticky-selected-hover-bg;
|
|
@@ -285,12 +308,15 @@
|
|
|
285
308
|
}
|
|
286
309
|
|
|
287
310
|
.k-grid-row-sticky {
|
|
311
|
+
td,
|
|
288
312
|
.k-table-td {
|
|
289
313
|
border-top-color: $kendo-grid-sticky-border;
|
|
290
314
|
border-bottom-color: $kendo-grid-sticky-border;
|
|
291
315
|
background-color: $kendo-grid-sticky-bg;
|
|
292
316
|
}
|
|
293
317
|
|
|
318
|
+
&:hover td,
|
|
319
|
+
&.k-hover td,
|
|
294
320
|
&:hover .k-table-td,
|
|
295
321
|
&.k-hover .k-table-td {
|
|
296
322
|
background-color: $kendo-grid-sticky-hover-bg;
|
|
@@ -298,12 +324,15 @@
|
|
|
298
324
|
}
|
|
299
325
|
|
|
300
326
|
.k-table-alt-row .k-grid-content-sticky,
|
|
327
|
+
.k-grid-row-sticky.k-table-alt-row td,
|
|
301
328
|
.k-grid-row-sticky.k-table-alt-row .k-table-td {
|
|
302
329
|
@include fill( $bg: $kendo-grid-sticky-alt-bg );
|
|
303
330
|
}
|
|
304
331
|
|
|
305
332
|
// Selected state
|
|
306
333
|
.k-table-row.k-selected .k-grid-content-sticky,
|
|
334
|
+
.k-selected.k-grid-row-sticky td,
|
|
335
|
+
.k-grid-row-sticky td.k-selected,
|
|
307
336
|
.k-selected.k-grid-row-sticky .k-table-td,
|
|
308
337
|
.k-grid-row-sticky .k-table-td.k-selected,
|
|
309
338
|
.k-selected.k-grid-content-sticky {
|
|
@@ -311,6 +340,7 @@
|
|
|
311
340
|
}
|
|
312
341
|
|
|
313
342
|
.k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky,
|
|
343
|
+
.k-selected.k-table-alt-row.k-grid-row-sticky td,
|
|
314
344
|
.k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td,
|
|
315
345
|
.k-table-alt-row .k-selected.k-grid-content-sticky {
|
|
316
346
|
@include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
|
|
@@ -319,6 +349,10 @@
|
|
|
319
349
|
// Hover state
|
|
320
350
|
.k-table-row:hover .k-grid-content-sticky,
|
|
321
351
|
.k-table-row.k-hover .k-grid-content-sticky,
|
|
352
|
+
.k-grid-row-sticky:hover td,
|
|
353
|
+
.k-grid-row-sticky.k-hover td,
|
|
354
|
+
.k-grid-row-sticky.k-table-alt-row:hover td,
|
|
355
|
+
.k-grid-row-sticky.k-table-alt-row.k-hover td,
|
|
322
356
|
.k-grid-row-sticky:hover .k-table-td,
|
|
323
357
|
.k-grid-row-sticky.k-hover .k-table-td,
|
|
324
358
|
.k-grid-row-sticky.k-table-alt-row:hover .k-table-td,
|
|
@@ -331,12 +365,18 @@
|
|
|
331
365
|
// Selected + Hover
|
|
332
366
|
.k-table-row.k-selected:hover .k-grid-content-sticky,
|
|
333
367
|
.k-table-row.k-selected.k-hover .k-grid-content-sticky,
|
|
368
|
+
.k-selected.k-grid-row-sticky:hover td,
|
|
369
|
+
.k-selected.k-grid-row-sticky.k-hover td,
|
|
370
|
+
.k-selected.k-table-alt-row.k-grid-row-sticky:hover td,
|
|
371
|
+
.k-selected.k-table-alt-row.k-grid-row-sticky.k-hover td,
|
|
334
372
|
.k-selected.k-grid-row-sticky:hover .k-table-td,
|
|
335
373
|
.k-selected.k-grid-row-sticky.k-hover .k-table-td,
|
|
336
374
|
.k-selected.k-table-alt-row.k-grid-row-sticky:hover .k-table-td,
|
|
337
375
|
.k-selected.k-table-alt-row.k-grid-row-sticky.k-hover .k-table-td,
|
|
338
376
|
.k-table-row.k-selected.k-table-alt-row:hover .k-grid-content-sticky,
|
|
339
377
|
.k-table-row.k-selected.k-table-alt-row.k-hover .k-grid-content-sticky,
|
|
378
|
+
.k-grid-row-sticky:hover td.k-selected,
|
|
379
|
+
.k-grid-row-sticky.k-hover td.k-selected,
|
|
340
380
|
.k-grid-row-sticky:hover .k-table-td.k-selected,
|
|
341
381
|
.k-grid-row-sticky.k-hover .k-table-td.k-selected,
|
|
342
382
|
.k-table-row:hover .k-grid-content-sticky.k-selected,
|
package/scss/icons/_layout.scss
CHANGED
package/scss/input/_layout.scss
CHANGED
|
@@ -288,7 +288,7 @@
|
|
|
288
288
|
position: relative;
|
|
289
289
|
aspect-ratio: auto;
|
|
290
290
|
|
|
291
|
-
|
|
291
|
+
.k-button-icon {
|
|
292
292
|
margin: -1em 0;
|
|
293
293
|
min-width: auto !important; // sass-lint:disable-line no-important
|
|
294
294
|
min-height: auto !important; // sass-lint:disable-line no-important
|
|
@@ -33,6 +33,8 @@
|
|
|
33
33
|
transform: translate(0, -50%);
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
+
.k-table-row.k-footer td,
|
|
37
|
+
.k-table-row.k-footer-template td,
|
|
36
38
|
.k-table-row.k-footer .k-table-td,
|
|
37
39
|
.k-table-row.k-footer-template .k-table-td {
|
|
38
40
|
border-width: $kendo-treelist-footer-row-border-width 0;
|
|
@@ -40,6 +42,7 @@
|
|
|
40
42
|
font-weight: bold;
|
|
41
43
|
}
|
|
42
44
|
|
|
45
|
+
.k-table-row.k-footer + .k-table-row.k-footer td,
|
|
43
46
|
.k-table-row.k-footer + .k-table-row.k-footer .k-table-td {
|
|
44
47
|
border-top-width: 0;
|
|
45
48
|
}
|