@progress/kendo-theme-fluent 5.12.1-dev.3 → 6.0.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/all.css +237 -11
- package/lib/swatches/all.json +1 -1
- package/lib/swatches/fluent-main.json +1 -1
- package/package.json +4 -4
- package/scss/button/_layout.scss +39 -0
- package/scss/colorgradient/_layout.scss +2 -1
- package/scss/grid/_layout.scss +31 -4
- package/scss/grid/_theme.scss +45 -0
- package/scss/icon/_layout.scss +5 -0
- package/scss/input/_layout.scss +42 -1
package/dist/all.css
CHANGED
|
@@ -23977,6 +23977,10 @@ hr.k-separator {
|
|
|
23977
23977
|
background-color: var(--kendo-code-bg, var(--kendo-component-bg, initial));
|
|
23978
23978
|
}
|
|
23979
23979
|
|
|
23980
|
+
.k-icon-wrapper-host {
|
|
23981
|
+
display: contents;
|
|
23982
|
+
}
|
|
23983
|
+
|
|
23980
23984
|
.k-icon-with-modifier {
|
|
23981
23985
|
position: relative;
|
|
23982
23986
|
margin: 0.25em;
|
|
@@ -27122,6 +27126,37 @@ kendo-label > .k-label {
|
|
|
27122
27126
|
.k-icon-button.k-button-sm > .k-button-icon {
|
|
27123
27127
|
min-width: calc(var(--kendo-font-size, inherit)*var(--kendo-line-height, normal));
|
|
27124
27128
|
min-height: calc(var(--kendo-font-size, inherit)*var(--kendo-line-height, normal));
|
|
27129
|
+
display: inline-flex;
|
|
27130
|
+
align-items: center;
|
|
27131
|
+
justify-content: center;
|
|
27132
|
+
}
|
|
27133
|
+
.k-icon-button.k-button-sm > .k-button-icon.k-svg-icon > svg, .k-icon-button.k-button-sm > .k-button-icon.k-icon-md > svg {
|
|
27134
|
+
width: var(--kendo-icon-size-md, 1rem);
|
|
27135
|
+
height: var(--kendo-icon-size-md, 1rem);
|
|
27136
|
+
}
|
|
27137
|
+
.k-icon-button.k-button-sm > .k-button-icon.k-icon-xs > svg {
|
|
27138
|
+
width: var(--kendo-icon-size-sm, 0.75rem);
|
|
27139
|
+
height: var(--kendo-icon-size-sm, 0.75rem) s;
|
|
27140
|
+
}
|
|
27141
|
+
.k-icon-button.k-button-sm > .k-button-icon.k-icon-sm > svg {
|
|
27142
|
+
width: var(--kendo-icon-size-sm, 0.875rem);
|
|
27143
|
+
height: var(--kendo-icon-size-sm, 0.875rem);
|
|
27144
|
+
}
|
|
27145
|
+
.k-icon-button.k-button-sm > .k-button-icon.k-icon-lg > svg {
|
|
27146
|
+
width: var(--kendo-icon-size-lg, 1.25rem);
|
|
27147
|
+
height: var(--kendo-icon-size-lg, 1.25rem);
|
|
27148
|
+
}
|
|
27149
|
+
.k-icon-button.k-button-sm > .k-button-icon.k-icon-xl > svg {
|
|
27150
|
+
width: var(--kendo-icon-size-xl, 1.5rem);
|
|
27151
|
+
height: var(--kendo-icon-size-xl, 1.5rem);
|
|
27152
|
+
}
|
|
27153
|
+
.k-icon-button.k-button-sm > .k-button-icon.k-icon-xxl > svg {
|
|
27154
|
+
width: var(--kendo-icon-size-xxl, 2rem);
|
|
27155
|
+
height: var(--kendo-icon-size-xxl, 2rem);
|
|
27156
|
+
}
|
|
27157
|
+
.k-icon-button.k-button-sm > .k-button-icon.k-icon-xxxl > svg {
|
|
27158
|
+
width: var(--kendo-icon-size-xxl, 3rem);
|
|
27159
|
+
height: var(--kendo-icon-size-xxl, 3rem);
|
|
27125
27160
|
}
|
|
27126
27161
|
|
|
27127
27162
|
.k-button-md {
|
|
@@ -27138,6 +27173,37 @@ kendo-label > .k-label {
|
|
|
27138
27173
|
.k-icon-button.k-button-md > .k-button-icon {
|
|
27139
27174
|
min-width: calc(var(--kendo-font-size, inherit)*var(--kendo-line-height, normal));
|
|
27140
27175
|
min-height: calc(var(--kendo-font-size, inherit)*var(--kendo-line-height, normal));
|
|
27176
|
+
display: inline-flex;
|
|
27177
|
+
align-items: center;
|
|
27178
|
+
justify-content: center;
|
|
27179
|
+
}
|
|
27180
|
+
.k-icon-button.k-button-md > .k-button-icon.k-svg-icon > svg, .k-icon-button.k-button-md > .k-button-icon.k-icon-md > svg {
|
|
27181
|
+
width: var(--kendo-icon-size-md, 1rem);
|
|
27182
|
+
height: var(--kendo-icon-size-md, 1rem);
|
|
27183
|
+
}
|
|
27184
|
+
.k-icon-button.k-button-md > .k-button-icon.k-icon-xs > svg {
|
|
27185
|
+
width: var(--kendo-icon-size-sm, 0.75rem);
|
|
27186
|
+
height: var(--kendo-icon-size-sm, 0.75rem) s;
|
|
27187
|
+
}
|
|
27188
|
+
.k-icon-button.k-button-md > .k-button-icon.k-icon-sm > svg {
|
|
27189
|
+
width: var(--kendo-icon-size-sm, 0.875rem);
|
|
27190
|
+
height: var(--kendo-icon-size-sm, 0.875rem);
|
|
27191
|
+
}
|
|
27192
|
+
.k-icon-button.k-button-md > .k-button-icon.k-icon-lg > svg {
|
|
27193
|
+
width: var(--kendo-icon-size-lg, 1.25rem);
|
|
27194
|
+
height: var(--kendo-icon-size-lg, 1.25rem);
|
|
27195
|
+
}
|
|
27196
|
+
.k-icon-button.k-button-md > .k-button-icon.k-icon-xl > svg {
|
|
27197
|
+
width: var(--kendo-icon-size-xl, 1.5rem);
|
|
27198
|
+
height: var(--kendo-icon-size-xl, 1.5rem);
|
|
27199
|
+
}
|
|
27200
|
+
.k-icon-button.k-button-md > .k-button-icon.k-icon-xxl > svg {
|
|
27201
|
+
width: var(--kendo-icon-size-xxl, 2rem);
|
|
27202
|
+
height: var(--kendo-icon-size-xxl, 2rem);
|
|
27203
|
+
}
|
|
27204
|
+
.k-icon-button.k-button-md > .k-button-icon.k-icon-xxxl > svg {
|
|
27205
|
+
width: var(--kendo-icon-size-xxl, 3rem);
|
|
27206
|
+
height: var(--kendo-icon-size-xxl, 3rem);
|
|
27141
27207
|
}
|
|
27142
27208
|
|
|
27143
27209
|
.k-button-lg {
|
|
@@ -27154,6 +27220,37 @@ kendo-label > .k-label {
|
|
|
27154
27220
|
.k-icon-button.k-button-lg > .k-button-icon {
|
|
27155
27221
|
min-width: calc(var(--kendo-font-size, inherit)*var(--kendo-line-height, normal));
|
|
27156
27222
|
min-height: calc(var(--kendo-font-size, inherit)*var(--kendo-line-height, normal));
|
|
27223
|
+
display: inline-flex;
|
|
27224
|
+
align-items: center;
|
|
27225
|
+
justify-content: center;
|
|
27226
|
+
}
|
|
27227
|
+
.k-icon-button.k-button-lg > .k-button-icon.k-svg-icon > svg, .k-icon-button.k-button-lg > .k-button-icon.k-icon-md > svg {
|
|
27228
|
+
width: var(--kendo-icon-size-md, 1rem);
|
|
27229
|
+
height: var(--kendo-icon-size-md, 1rem);
|
|
27230
|
+
}
|
|
27231
|
+
.k-icon-button.k-button-lg > .k-button-icon.k-icon-xs > svg {
|
|
27232
|
+
width: var(--kendo-icon-size-sm, 0.75rem);
|
|
27233
|
+
height: var(--kendo-icon-size-sm, 0.75rem) s;
|
|
27234
|
+
}
|
|
27235
|
+
.k-icon-button.k-button-lg > .k-button-icon.k-icon-sm > svg {
|
|
27236
|
+
width: var(--kendo-icon-size-sm, 0.875rem);
|
|
27237
|
+
height: var(--kendo-icon-size-sm, 0.875rem);
|
|
27238
|
+
}
|
|
27239
|
+
.k-icon-button.k-button-lg > .k-button-icon.k-icon-lg > svg {
|
|
27240
|
+
width: var(--kendo-icon-size-lg, 1.25rem);
|
|
27241
|
+
height: var(--kendo-icon-size-lg, 1.25rem);
|
|
27242
|
+
}
|
|
27243
|
+
.k-icon-button.k-button-lg > .k-button-icon.k-icon-xl > svg {
|
|
27244
|
+
width: var(--kendo-icon-size-xl, 1.5rem);
|
|
27245
|
+
height: var(--kendo-icon-size-xl, 1.5rem);
|
|
27246
|
+
}
|
|
27247
|
+
.k-icon-button.k-button-lg > .k-button-icon.k-icon-xxl > svg {
|
|
27248
|
+
width: var(--kendo-icon-size-xxl, 2rem);
|
|
27249
|
+
height: var(--kendo-icon-size-xxl, 2rem);
|
|
27250
|
+
}
|
|
27251
|
+
.k-icon-button.k-button-lg > .k-button-icon.k-icon-xxxl > svg {
|
|
27252
|
+
width: var(--kendo-icon-size-xxl, 3rem);
|
|
27253
|
+
height: var(--kendo-icon-size-xxl, 3rem);
|
|
27157
27254
|
}
|
|
27158
27255
|
|
|
27159
27256
|
.k-icon-button {
|
|
@@ -29171,6 +29268,51 @@ textarea.k-input-inner {
|
|
|
29171
29268
|
justify-content: center;
|
|
29172
29269
|
}
|
|
29173
29270
|
|
|
29271
|
+
.k-input-icon.k-svg-icon > svg, .k-input-icon.k-icon-md > svg,
|
|
29272
|
+
.k-input-validation-icon.k-svg-icon > svg,
|
|
29273
|
+
.k-input-validation-icon.k-icon-md > svg,
|
|
29274
|
+
.k-input-loading-icon.k-svg-icon > svg,
|
|
29275
|
+
.k-input-loading-icon.k-icon-md > svg {
|
|
29276
|
+
width: var(--kendo-icon-size-md, 1rem);
|
|
29277
|
+
height: var(--kendo-icon-size-md, 1rem);
|
|
29278
|
+
}
|
|
29279
|
+
.k-input-icon.k-icon-xs > svg,
|
|
29280
|
+
.k-input-validation-icon.k-icon-xs > svg,
|
|
29281
|
+
.k-input-loading-icon.k-icon-xs > svg {
|
|
29282
|
+
width: var(--kendo-icon-size-sm, 0.75rem);
|
|
29283
|
+
height: var(--kendo-icon-size-sm, 0.75rem) s;
|
|
29284
|
+
}
|
|
29285
|
+
.k-input-icon.k-icon-sm > svg,
|
|
29286
|
+
.k-input-validation-icon.k-icon-sm > svg,
|
|
29287
|
+
.k-input-loading-icon.k-icon-sm > svg {
|
|
29288
|
+
width: var(--kendo-icon-size-sm, 0.875rem);
|
|
29289
|
+
height: var(--kendo-icon-size-sm, 0.875rem);
|
|
29290
|
+
}
|
|
29291
|
+
.k-input-icon.k-icon-lg > svg,
|
|
29292
|
+
.k-input-validation-icon.k-icon-lg > svg,
|
|
29293
|
+
.k-input-loading-icon.k-icon-lg > svg {
|
|
29294
|
+
width: var(--kendo-icon-size-lg, 1.25rem);
|
|
29295
|
+
height: var(--kendo-icon-size-lg, 1.25rem);
|
|
29296
|
+
}
|
|
29297
|
+
.k-input-icon.k-icon-xl > svg,
|
|
29298
|
+
.k-input-validation-icon.k-icon-xl > svg,
|
|
29299
|
+
.k-input-loading-icon.k-icon-xl > svg {
|
|
29300
|
+
width: var(--kendo-icon-size-xl, 1.5rem);
|
|
29301
|
+
height: var(--kendo-icon-size-xl, 1.5rem);
|
|
29302
|
+
}
|
|
29303
|
+
.k-input-icon.k-icon-xxl > svg,
|
|
29304
|
+
.k-input-validation-icon.k-icon-xxl > svg,
|
|
29305
|
+
.k-input-loading-icon.k-icon-xxl > svg {
|
|
29306
|
+
width: var(--kendo-icon-size-xxl, 2rem);
|
|
29307
|
+
height: var(--kendo-icon-size-xxl, 2rem);
|
|
29308
|
+
}
|
|
29309
|
+
.k-input-icon.k-icon-xxxl > svg,
|
|
29310
|
+
.k-input-validation-icon.k-icon-xxxl > svg,
|
|
29311
|
+
.k-input-loading-icon.k-icon-xxxl > svg {
|
|
29312
|
+
width: var(--kendo-icon-size-xxl, 3rem);
|
|
29313
|
+
height: var(--kendo-icon-size-xxl, 3rem);
|
|
29314
|
+
}
|
|
29315
|
+
|
|
29174
29316
|
.k-clear-value {
|
|
29175
29317
|
width: var(--INTERNAL--kendo-input-icon-size, min-content);
|
|
29176
29318
|
height: var(--INTERNAL--kendo-input-icon-size, min-content);
|
|
@@ -29241,8 +29383,8 @@ textarea.k-input-inner {
|
|
|
29241
29383
|
position: relative;
|
|
29242
29384
|
aspect-ratio: auto;
|
|
29243
29385
|
}
|
|
29244
|
-
.k-input-spinner .k-spinner-increase
|
|
29245
|
-
.k-input-spinner .k-spinner-decrease
|
|
29386
|
+
.k-input-spinner .k-spinner-increase .k-button-icon,
|
|
29387
|
+
.k-input-spinner .k-spinner-decrease .k-button-icon {
|
|
29246
29388
|
margin: -1em 0;
|
|
29247
29389
|
min-width: auto !important;
|
|
29248
29390
|
min-height: auto !important;
|
|
@@ -32088,7 +32230,8 @@ textarea.k-input-inner {
|
|
|
32088
32230
|
.k-colorgradient-color-contrast .k-contrast-validation .k-icon {
|
|
32089
32231
|
vertical-align: middle;
|
|
32090
32232
|
}
|
|
32091
|
-
.k-colorgradient-color-contrast .k-contrast-validation .k-icon + .k-icon
|
|
32233
|
+
.k-colorgradient-color-contrast .k-contrast-validation .k-icon + .k-icon,
|
|
32234
|
+
.k-colorgradient-color-contrast .k-contrast-validation .k-icon-wrapper-host + .k-icon-wrapper-host .k-icon {
|
|
32092
32235
|
margin-inline-start: -13px;
|
|
32093
32236
|
}
|
|
32094
32237
|
|
|
@@ -38579,6 +38722,7 @@ kendo-card-footer {
|
|
|
38579
38722
|
border-color: inherit;
|
|
38580
38723
|
}
|
|
38581
38724
|
.k-grid .k-table-th,
|
|
38725
|
+
.k-grid td,
|
|
38582
38726
|
.k-grid .k-table-td {
|
|
38583
38727
|
border-width: 0;
|
|
38584
38728
|
padding-inline: var(--INTERNAL--kendo-grid-cell-padding-x, 0);
|
|
@@ -38594,14 +38738,17 @@ kendo-card-footer {
|
|
|
38594
38738
|
box-sizing: content-box;
|
|
38595
38739
|
}
|
|
38596
38740
|
.k-grid .k-table-th:first-child,
|
|
38741
|
+
.k-grid td:first-child,
|
|
38597
38742
|
.k-grid .k-table-td:first-child {
|
|
38598
38743
|
border-inline-start-width: 0;
|
|
38599
38744
|
}
|
|
38600
38745
|
.k-grid .k-table-th:focus,
|
|
38746
|
+
.k-grid td:focus,
|
|
38601
38747
|
.k-grid .k-table-td:focus {
|
|
38602
38748
|
outline: none;
|
|
38603
38749
|
}
|
|
38604
38750
|
.k-grid .k-table-th .k-placeholder-line,
|
|
38751
|
+
.k-grid td .k-placeholder-line,
|
|
38605
38752
|
.k-grid .k-table-td .k-placeholder-line {
|
|
38606
38753
|
width: var(--kendo-grid-cell-placeholder-width, 80%);
|
|
38607
38754
|
}
|
|
@@ -38609,6 +38756,10 @@ kendo-card-footer {
|
|
|
38609
38756
|
.k-grid .k-table-th > .k-radio-wrap,
|
|
38610
38757
|
.k-grid .k-table-th > .k-checkbox,
|
|
38611
38758
|
.k-grid .k-table-th > .k-checkbox-wrap,
|
|
38759
|
+
.k-grid td > .k-radio,
|
|
38760
|
+
.k-grid td > .k-radio-wrap,
|
|
38761
|
+
.k-grid td > .k-checkbox,
|
|
38762
|
+
.k-grid td > .k-checkbox-wrap,
|
|
38612
38763
|
.k-grid .k-table-td > .k-radio,
|
|
38613
38764
|
.k-grid .k-table-td > .k-radio-wrap,
|
|
38614
38765
|
.k-grid .k-table-td > .k-checkbox,
|
|
@@ -38622,6 +38773,7 @@ kendo-card-footer {
|
|
|
38622
38773
|
border-inline-start-width: var(--kendo-grid-header-border-width-x, 0);
|
|
38623
38774
|
white-space: nowrap;
|
|
38624
38775
|
}
|
|
38776
|
+
.k-grid td,
|
|
38625
38777
|
.k-grid .k-table-td {
|
|
38626
38778
|
border-block-end-width: var(--kendo-grid-cell-border-width-y, 1px);
|
|
38627
38779
|
border-inline-start-width: var(--kendo-grid-cell-border-width-x, 0px);
|
|
@@ -38648,10 +38800,12 @@ kendo-card-footer {
|
|
|
38648
38800
|
align-items: center;
|
|
38649
38801
|
align-content: center;
|
|
38650
38802
|
}
|
|
38803
|
+
.k-grid .k-grouping-row td,
|
|
38651
38804
|
.k-grid .k-grouping-row .k-table-td {
|
|
38652
38805
|
border-block-end-width: 0;
|
|
38653
38806
|
overflow: visible;
|
|
38654
38807
|
}
|
|
38808
|
+
.k-grid .k-grouping-row + .k-table-row td,
|
|
38655
38809
|
.k-grid .k-grouping-row + .k-table-row .k-table-td {
|
|
38656
38810
|
border-top-width: var(--kendo-grid-grouping-row-border-width-y, 1px);
|
|
38657
38811
|
}
|
|
@@ -38666,11 +38820,13 @@ kendo-card-footer {
|
|
|
38666
38820
|
margin-inline-end: calc(var(--kendo-icon-size, 1rem)/2);
|
|
38667
38821
|
text-decoration: none;
|
|
38668
38822
|
}
|
|
38823
|
+
.k-grid .k-group-footer td,
|
|
38669
38824
|
.k-grid .k-group-footer .k-table-td {
|
|
38670
38825
|
border-style: solid;
|
|
38671
38826
|
border-inline-width: var(--kendo-grid-group-footer-border-width-x, 0px);
|
|
38672
38827
|
border-block-start-width: var(--kendo-grid-group-footer-border-width-y, 0px);
|
|
38673
38828
|
}
|
|
38829
|
+
.k-grid .k-group-footer .k-group-cell + td,
|
|
38674
38830
|
.k-grid .k-group-footer .k-group-cell + .k-table-td {
|
|
38675
38831
|
border-inline-start-width: var(--kendo-grid-group-footer-border-width-x, 0px);
|
|
38676
38832
|
}
|
|
@@ -38930,13 +39086,17 @@ div.k-grid-footer {
|
|
|
38930
39086
|
.k-grid-footer {
|
|
38931
39087
|
border-block-start-width: var(--kendo-grid-border-width, 1px);
|
|
38932
39088
|
}
|
|
39089
|
+
.k-grid-footer td,
|
|
38933
39090
|
.k-grid-footer .k-table-td {
|
|
38934
39091
|
height: var(--kendo-line-height-em, normal);
|
|
38935
39092
|
border-block-end-width: 0;
|
|
38936
39093
|
}
|
|
38937
39094
|
|
|
39095
|
+
.k-grid-footer td,
|
|
38938
39096
|
.k-grid-footer .k-table-td,
|
|
38939
39097
|
.k-grid-header .k-table-th,
|
|
39098
|
+
.k-group-footer td,
|
|
39099
|
+
.k-grouping-row td,
|
|
38940
39100
|
.k-group-footer .k-table-td,
|
|
38941
39101
|
.k-grouping-row .k-table-td {
|
|
38942
39102
|
font-weight: var(--kendo-grid-header-font-weight, var(--kendo-font-weight-bold, normal));
|
|
@@ -38958,6 +39118,7 @@ div.k-grid-footer {
|
|
|
38958
39118
|
.k-filter-row {
|
|
38959
39119
|
line-height: var(--kendo-line-height, normal);
|
|
38960
39120
|
}
|
|
39121
|
+
.k-filter-row td,
|
|
38961
39122
|
.k-filter-row .k-table-td,
|
|
38962
39123
|
.k-filter-row .k-table-th {
|
|
38963
39124
|
padding-inline: var(--INTERNAL--kendo-grid-filter-cell-padding-x, 0);
|
|
@@ -38965,6 +39126,7 @@ div.k-grid-footer {
|
|
|
38965
39126
|
border-width: 0 0 var(--kendo-grid-cell-border-width-y, 1px) var(--kendo-grid-cell-border-width-x, 0px);
|
|
38966
39127
|
white-space: nowrap;
|
|
38967
39128
|
}
|
|
39129
|
+
.k-filter-row td:first-child,
|
|
38968
39130
|
.k-filter-row .k-table-td:first-child {
|
|
38969
39131
|
border-left-width: 0;
|
|
38970
39132
|
}
|
|
@@ -39007,7 +39169,9 @@ div.k-grid-footer {
|
|
|
39007
39169
|
border-color: inherit;
|
|
39008
39170
|
outline: 0;
|
|
39009
39171
|
}
|
|
39172
|
+
.k-grid-content .k-table-row:last-child > td,
|
|
39010
39173
|
.k-grid-content .k-table-row:last-child > .k-table-td,
|
|
39174
|
+
.k-grid-content-locked .k-table-row:last-child > td,
|
|
39011
39175
|
.k-grid-content-locked .k-table-row:last-child > .k-table-td {
|
|
39012
39176
|
border-bottom-width: 0;
|
|
39013
39177
|
}
|
|
@@ -39032,20 +39196,24 @@ div.k-grid-footer {
|
|
|
39032
39196
|
border-inline-end-width: var(--kendo-grid-border-width, 1px);
|
|
39033
39197
|
}
|
|
39034
39198
|
|
|
39199
|
+
.k-master-row.k-expanded td,
|
|
39035
39200
|
.k-master-row.k-expanded .k-table-td {
|
|
39036
39201
|
border-block-end-width: 0;
|
|
39037
39202
|
}
|
|
39038
39203
|
|
|
39204
|
+
.k-master-row:has(.k-hierarchy-cell[aria-expanded=true]) td,
|
|
39039
39205
|
.k-master-row:has(.k-hierarchy-cell[aria-expanded=true]) .k-table-td {
|
|
39040
39206
|
border-block-end-width: 0;
|
|
39041
39207
|
}
|
|
39042
39208
|
|
|
39209
|
+
.k-master-row:last-child td,
|
|
39043
39210
|
.k-master-row:last-child .k-table-td {
|
|
39044
39211
|
border-block-end-width: var(--kendo-grid-border-width, 1px);
|
|
39045
39212
|
}
|
|
39046
39213
|
|
|
39047
39214
|
.k-grid .k-edit-cell,
|
|
39048
39215
|
.k-grid .k-command-cell,
|
|
39216
|
+
.k-grid .k-grid-edit-row td,
|
|
39049
39217
|
.k-grid .k-grid-edit-row .k-table-td {
|
|
39050
39218
|
padding-inline: var(--INTERNAL--kendo-grid-edit-cell-padding-x, 0);
|
|
39051
39219
|
padding-block: var(--INTERNAL--kendo-grid-edit-cell-padding-y, 0);
|
|
@@ -39055,6 +39223,9 @@ div.k-grid-footer {
|
|
|
39055
39223
|
.k-grid .k-edit-cell > input:not([type=checkbox]):not([type=radio]),
|
|
39056
39224
|
.k-grid .k-edit-cell > select,
|
|
39057
39225
|
.k-grid .k-edit-cell > .k-widget:not(.k-switch),
|
|
39226
|
+
.k-grid .k-grid-edit-row td > input:not([type=checkbox]):not([type=radio]),
|
|
39227
|
+
.k-grid .k-grid-edit-row td > select,
|
|
39228
|
+
.k-grid .k-grid-edit-row td > .k-widget:not(.k-switch),
|
|
39058
39229
|
.k-grid .k-grid-edit-row .k-table-td > input:not([type=checkbox]):not([type=radio]),
|
|
39059
39230
|
.k-grid .k-grid-edit-row .k-table-td > select,
|
|
39060
39231
|
.k-grid .k-grid-edit-row .k-table-td > .k-widget:not(.k-switch) {
|
|
@@ -39066,6 +39237,10 @@ div.k-grid-footer {
|
|
|
39066
39237
|
.k-grid .k-edit-cell > .k-checkbox,
|
|
39067
39238
|
.k-grid .k-edit-cell > .k-radio-wrap,
|
|
39068
39239
|
.k-grid .k-edit-cell > .k-checkbox-wrap,
|
|
39240
|
+
.k-grid .k-grid-edit-row td > .k-radio,
|
|
39241
|
+
.k-grid .k-grid-edit-row td > .k-checkbox,
|
|
39242
|
+
.k-grid .k-grid-edit-row td > .k-radio-wrap,
|
|
39243
|
+
.k-grid .k-grid-edit-row td > .k-checkbox-wrap,
|
|
39069
39244
|
.k-grid .k-grid-edit-row .k-table-td > .k-radio,
|
|
39070
39245
|
.k-grid .k-grid-edit-row .k-table-td > .k-checkbox,
|
|
39071
39246
|
.k-grid .k-grid-edit-row .k-table-td > .k-radio-wrap,
|
|
@@ -39107,17 +39282,17 @@ div.k-grid-footer {
|
|
|
39107
39282
|
}
|
|
39108
39283
|
|
|
39109
39284
|
.k-grid-virtual .k-grid-content .k-grid-table-wrap {
|
|
39110
|
-
float:
|
|
39285
|
+
float: left;
|
|
39111
39286
|
width: 100%;
|
|
39112
39287
|
}
|
|
39113
39288
|
.k-grid-virtual .k-grid-content .k-grid-table {
|
|
39114
39289
|
position: relative;
|
|
39115
|
-
float:
|
|
39290
|
+
float: left;
|
|
39116
39291
|
z-index: 1;
|
|
39117
39292
|
}
|
|
39118
39293
|
.k-grid-virtual .k-grid-content > .k-height-container {
|
|
39119
39294
|
position: relative;
|
|
39120
|
-
float:
|
|
39295
|
+
float: left;
|
|
39121
39296
|
}
|
|
39122
39297
|
.k-grid-virtual .k-grid-content::after {
|
|
39123
39298
|
content: "";
|
|
@@ -39134,6 +39309,7 @@ div.k-grid-footer {
|
|
|
39134
39309
|
height: 1px;
|
|
39135
39310
|
}
|
|
39136
39311
|
|
|
39312
|
+
.k-grid-add-row td,
|
|
39137
39313
|
.k-grid-add-row .k-table-td {
|
|
39138
39314
|
border-bottom-style: solid;
|
|
39139
39315
|
border-bottom-width: 1px;
|
|
@@ -39162,10 +39338,13 @@ div.k-grid-footer {
|
|
|
39162
39338
|
border-inline-end-width: 1px;
|
|
39163
39339
|
box-sizing: content-box;
|
|
39164
39340
|
}
|
|
39341
|
+
.k-grid-content-locked td,
|
|
39165
39342
|
.k-grid-content-locked .k-table-td,
|
|
39166
39343
|
.k-grid-content-locked .k-table-th,
|
|
39344
|
+
.k-grid-footer-locked td,
|
|
39167
39345
|
.k-grid-footer-locked .k-table-td,
|
|
39168
39346
|
.k-grid-footer-locked .k-table-th,
|
|
39347
|
+
.k-grid-header-locked td,
|
|
39169
39348
|
.k-grid-header-locked .k-table-td,
|
|
39170
39349
|
.k-grid-header-locked .k-table-th {
|
|
39171
39350
|
border-inline-start-width: 1px;
|
|
@@ -39229,6 +39408,7 @@ kendo-grid .k-table-row.k-grid-row-sticky {
|
|
|
39229
39408
|
position: static;
|
|
39230
39409
|
z-index: auto;
|
|
39231
39410
|
}
|
|
39411
|
+
kendo-grid .k-grid-row-sticky td,
|
|
39232
39412
|
kendo-grid .k-grid-row-sticky .k-table-td {
|
|
39233
39413
|
border-block-start-width: var(--kendo-grid-border-width, 1px);
|
|
39234
39414
|
border-block-end-width: var(--kendo-grid-border-width, 1px);
|
|
@@ -39236,9 +39416,12 @@ kendo-grid .k-grid-row-sticky .k-table-td {
|
|
|
39236
39416
|
top: inherit;
|
|
39237
39417
|
bottom: inherit;
|
|
39238
39418
|
}
|
|
39419
|
+
kendo-grid .k-grid-row-sticky td,
|
|
39239
39420
|
kendo-grid .k-grid-row-sticky .k-table-td {
|
|
39240
39421
|
z-index: 2;
|
|
39241
39422
|
}
|
|
39423
|
+
kendo-grid .k-grid-row-sticky td.k-grid-content-sticky,
|
|
39424
|
+
kendo-grid .k-grid-row-sticky.k-alt td.k-grid-content-sticky,
|
|
39242
39425
|
kendo-grid .k-grid-row-sticky .k-table-td.k-grid-content-sticky,
|
|
39243
39426
|
kendo-grid .k-grid-row-sticky.k-alt .k-table-td.k-grid-content-sticky {
|
|
39244
39427
|
z-index: 3;
|
|
@@ -39261,9 +39444,11 @@ kendo-grid .k-grid-header .k-grid-header-menu {
|
|
|
39261
39444
|
.k-grid .k-grid-footer-sticky {
|
|
39262
39445
|
border-inline-end-width: var(--kendo-grid-sticky-cell-border-width, 1px);
|
|
39263
39446
|
}
|
|
39264
|
-
.k-grid .k-grid-header-sticky:not([style*="display: none"]) + .k-table-td, .k-grid .k-grid-header-sticky:not([style*="display: none"]) + .k-table-th,
|
|
39447
|
+
.k-grid .k-grid-header-sticky:not([style*="display: none"]) + td, .k-grid .k-grid-header-sticky:not([style*="display: none"]) + .k-table-td, .k-grid .k-grid-header-sticky:not([style*="display: none"]) + .k-table-th,
|
|
39448
|
+
.k-grid .k-grid-content-sticky:not([style*="display: none"]) + td,
|
|
39265
39449
|
.k-grid .k-grid-content-sticky:not([style*="display: none"]) + .k-table-td,
|
|
39266
39450
|
.k-grid .k-grid-content-sticky:not([style*="display: none"]) + .k-table-th,
|
|
39451
|
+
.k-grid .k-grid-footer-sticky:not([style*="display: none"]) + td,
|
|
39267
39452
|
.k-grid .k-grid-footer-sticky:not([style*="display: none"]) + .k-table-td,
|
|
39268
39453
|
.k-grid .k-grid-footer-sticky:not([style*="display: none"]) + .k-table-th {
|
|
39269
39454
|
border-inline-start-width: 0;
|
|
@@ -39442,7 +39627,7 @@ div.k-grid-norecords {
|
|
|
39442
39627
|
}
|
|
39443
39628
|
|
|
39444
39629
|
.k-pdf-export-shadow .k-grid {
|
|
39445
|
-
float:
|
|
39630
|
+
float: left;
|
|
39446
39631
|
width: auto !important;
|
|
39447
39632
|
}
|
|
39448
39633
|
.k-pdf-export-shadow .k-grid,
|
|
@@ -39533,6 +39718,7 @@ div.k-grid-norecords {
|
|
|
39533
39718
|
table-layout: auto !important;
|
|
39534
39719
|
}
|
|
39535
39720
|
.k-autofitting .k-table-th,
|
|
39721
|
+
.k-autofitting td,
|
|
39536
39722
|
.k-autofitting .k-table-td {
|
|
39537
39723
|
white-space: nowrap !important;
|
|
39538
39724
|
}
|
|
@@ -39651,12 +39837,14 @@ div.k-grid-norecords {
|
|
|
39651
39837
|
.k-grid-header,
|
|
39652
39838
|
.k-grid-header-wrap,
|
|
39653
39839
|
.k-grouping-header,
|
|
39840
|
+
.k-grid td,
|
|
39654
39841
|
.k-grid .k-table-td,
|
|
39655
39842
|
.k-grid-footer,
|
|
39656
39843
|
.k-grid-footer-wrap,
|
|
39657
39844
|
.k-grid-content-locked,
|
|
39658
39845
|
.k-grid-footer-locked,
|
|
39659
39846
|
.k-grid-header-locked,
|
|
39847
|
+
.k-filter-row > td,
|
|
39660
39848
|
.k-filter-row > .k-table-td,
|
|
39661
39849
|
.k-filter-row > .k-table-th {
|
|
39662
39850
|
border-color: var(--kendo-grid-header-border, var(--kendo-component-border, initial));
|
|
@@ -39682,6 +39870,8 @@ div.k-grid-norecords {
|
|
|
39682
39870
|
background-color: var(--kendo-grid-bg, var(--kendo-component-bg, initial));
|
|
39683
39871
|
}
|
|
39684
39872
|
|
|
39873
|
+
.k-group-footer td,
|
|
39874
|
+
.k-grouping-row td,
|
|
39685
39875
|
.k-group-footer .k-table-td,
|
|
39686
39876
|
.k-grouping-row .k-table-td,
|
|
39687
39877
|
.k-table-tbody .k-group-cell {
|
|
@@ -39705,24 +39895,36 @@ div.k-grid-norecords {
|
|
|
39705
39895
|
color: var(--kendo-grid-hover-text, var(--kendo-hover-text, inherit));
|
|
39706
39896
|
background-color: var(--kendo-grid-hover-bg, var(--kendo-hover-bg, inherit));
|
|
39707
39897
|
}
|
|
39898
|
+
.k-grid td.k-selected,
|
|
39899
|
+
.k-grid .k-table-row.k-selected > td,
|
|
39708
39900
|
.k-grid .k-table-td.k-selected,
|
|
39709
39901
|
.k-grid .k-table-row.k-selected > .k-table-td {
|
|
39710
39902
|
color: var(--kendo-grid-selected-text, var(--kendo-component-text, initial));
|
|
39711
39903
|
background-color: var(--kendo-grid-selected-bg, var(--kendo-primary-20, inherit));
|
|
39712
39904
|
border-block-color: var(--kendo-grid-selected-border, var(--kendo-component-border, initial));
|
|
39713
39905
|
}
|
|
39906
|
+
.k-grid .k-table-tbody > .k-table-row:not(.k-detail-row):hover td.k-selected,
|
|
39907
|
+
.k-grid .k-table-tbody > .k-table-row:not(.k-detail-row).k-hover.k-selected > td,
|
|
39714
39908
|
.k-grid .k-table-tbody > .k-table-row:not(.k-detail-row):hover .k-table-td.k-selected,
|
|
39715
39909
|
.k-grid .k-table-tbody > .k-table-row:not(.k-detail-row).k-hover.k-selected > .k-table-td,
|
|
39716
39910
|
.k-grid .k-table-tbody > .k-table-row:not(.k-detail-row).k-hover.k-selected,
|
|
39911
|
+
.k-grid .k-table-tbody > .k-table-row:not(.k-detail-row).k-hover td.k-selected,
|
|
39912
|
+
.k-grid .k-table-tbody > .k-table-row:not(.k-detail-row).k-selected:hover > td,
|
|
39717
39913
|
.k-grid .k-table-tbody > .k-table-row:not(.k-detail-row).k-hover .k-table-td.k-selected,
|
|
39718
39914
|
.k-grid .k-table-tbody > .k-table-row:not(.k-detail-row).k-selected:hover > .k-table-td {
|
|
39719
39915
|
color: var(--kendo-grid-selected-hover-text, var(--kendo-component-text, initial));
|
|
39720
39916
|
background-color: var(--kendo-grid-selected-hover-bg, var(--kendo-primary-30, inherit));
|
|
39721
39917
|
}
|
|
39918
|
+
.k-grid td:focus,
|
|
39919
|
+
.k-grid td.k-focus,
|
|
39722
39920
|
.k-grid .k-table-td:focus,
|
|
39723
39921
|
.k-grid .k-table-td.k-focus,
|
|
39724
39922
|
.k-grid .k-table-th:focus,
|
|
39725
39923
|
.k-grid .k-table-th.k-focus,
|
|
39924
|
+
.k-grid .k-master-row > td:focus,
|
|
39925
|
+
.k-grid .k-grouping-row > td:focus,
|
|
39926
|
+
.k-grid .k-detail-row > td:focus,
|
|
39927
|
+
.k-grid .k-group-footer > td:focus,
|
|
39726
39928
|
.k-grid .k-master-row > .k-table-td:focus,
|
|
39727
39929
|
.k-grid .k-grouping-row > .k-table-td:focus,
|
|
39728
39930
|
.k-grid .k-detail-row > .k-table-td:focus,
|
|
@@ -39749,21 +39951,28 @@ div.k-grid-norecords {
|
|
|
39749
39951
|
.k-grid .k-grid-header-locked,
|
|
39750
39952
|
.k-grid .k-grid-content-locked,
|
|
39751
39953
|
.k-grid .k-grid-header-locked .k-table-th,
|
|
39954
|
+
.k-grid .k-grid-content-locked td,
|
|
39752
39955
|
.k-grid .k-grid-content-locked .k-table-td {
|
|
39753
39956
|
border-inline-color: var(--kendo-grid-sticky-header-border, var(--kendo-neutral-90, inherit));
|
|
39754
39957
|
}
|
|
39958
|
+
.k-grid .k-grid-content-locked .k-group-footer td,
|
|
39755
39959
|
.k-grid .k-grid-content-locked .k-group-footer .k-table-td {
|
|
39756
39960
|
border-color: var(--kendo-grid-header-border, var(--kendo-component-border, initial));
|
|
39757
39961
|
}
|
|
39962
|
+
.k-grid .k-grid-content-locked .k-grouping-row + .k-table-row td,
|
|
39758
39963
|
.k-grid .k-grid-content-locked .k-grouping-row + .k-table-row .k-table-td {
|
|
39759
39964
|
border-top-color: var(--kendo-grid-header-border, var(--kendo-component-border, initial));
|
|
39760
39965
|
}
|
|
39966
|
+
.k-grid .k-grid-content-locked .k-selected td,
|
|
39761
39967
|
.k-grid .k-grid-content-locked .k-selected .k-table-td {
|
|
39762
39968
|
background-color: var(--kendo-grid-sticky-selected-bg, var(--kendo-primary-20, inherit));
|
|
39763
39969
|
}
|
|
39970
|
+
.k-grid .k-grid-content-locked .k-selected.k-table-alt-row td,
|
|
39764
39971
|
.k-grid .k-grid-content-locked .k-selected.k-table-alt-row .k-table-td {
|
|
39765
39972
|
background-color: var(--kendo-grid-sticky-selected-alt-bg, var(--kendo-primary-20, inherit));
|
|
39766
39973
|
}
|
|
39974
|
+
.k-grid .k-grid-content-locked .k-selected:hover td,
|
|
39975
|
+
.k-grid .k-grid-content-locked .k-selected.k-hover td,
|
|
39767
39976
|
.k-grid .k-grid-content-locked .k-selected:hover .k-table-td,
|
|
39768
39977
|
.k-grid .k-grid-content-locked .k-selected.k-hover .k-table-td {
|
|
39769
39978
|
background-color: var(--kendo-grid-sticky-selected-hover-bg, var(--kendo-primary-30, inherit));
|
|
@@ -39812,6 +40021,7 @@ col.k-sorted,
|
|
|
39812
40021
|
background-color: var(--kendo-selected-bg, inherit);
|
|
39813
40022
|
}
|
|
39814
40023
|
.k-grid-header .k-table-th.k-grid-header-sticky,
|
|
40024
|
+
.k-grid-header td.k-grid-header-sticky,
|
|
39815
40025
|
.k-grid-header .k-table-td.k-grid-header-sticky,
|
|
39816
40026
|
.k-grid-header .k-grid-header-sticky.k-sorted {
|
|
39817
40027
|
color: var(--kendo-grid-sticky-header-text, var(--kendo-neutral-190, inherit));
|
|
@@ -39843,16 +40053,17 @@ col.k-sorted,
|
|
|
39843
40053
|
background-color: var(--kendo-grid-sticky-alt-bg, var(--kendo-component-bg, initial));
|
|
39844
40054
|
}
|
|
39845
40055
|
.k-master-row.k-selected .k-grid-content-sticky, .k-master-row.k-selected .k-grid-row-sticky,
|
|
40056
|
+
.k-master-row td.k-grid-content-sticky.k-selected,
|
|
39846
40057
|
.k-master-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
39847
40058
|
background-color: var(--kendo-grid-sticky-selected-bg, var(--kendo-primary-20, inherit));
|
|
39848
40059
|
}
|
|
39849
|
-
.k-master-row.k-selected.k-table-alt-row .k-grid-content-sticky, .k-master-row.k-selected.k-table-alt-row .k-grid-row-sticky, .k-master-row.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
40060
|
+
.k-master-row.k-selected.k-table-alt-row .k-grid-content-sticky, .k-master-row.k-selected.k-table-alt-row .k-grid-row-sticky, .k-master-row.k-table-alt-row td.k-grid-content-sticky.k-selected, .k-master-row.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
39850
40061
|
background-color: var(--kendo-grid-sticky-selected-alt-bg, var(--kendo-primary-20, inherit));
|
|
39851
40062
|
}
|
|
39852
40063
|
.k-master-row:hover .k-grid-content-sticky, .k-master-row:hover .k-grid-row-sticky, .k-master-row.k-hover .k-grid-content-sticky, .k-master-row.k-hover .k-grid-row-sticky {
|
|
39853
40064
|
background-color: var(--kendo-grid-sticky-hover-bg, var(--kendo-hover-bg, inherit));
|
|
39854
40065
|
}
|
|
39855
|
-
.k-master-row.k-selected:hover .k-grid-content-sticky, .k-master-row.k-selected:hover .k-grid-row-sticky, .k-master-row.k-selected.k-hover .k-grid-content-sticky, .k-master-row.k-selected.k-hover .k-grid-row-sticky, .k-master-row:hover .k-table-td.k-grid-content-sticky.k-selected, .k-master-row.k-hover .k-table-td.k-grid-content-sticky.k-selected {
|
|
40066
|
+
.k-master-row.k-selected:hover .k-grid-content-sticky, .k-master-row.k-selected:hover .k-grid-row-sticky, .k-master-row.k-selected.k-hover .k-grid-content-sticky, .k-master-row.k-selected.k-hover .k-grid-row-sticky, .k-master-row:hover td.k-grid-content-sticky.k-selected, .k-master-row.k-hover td.k-grid-content-sticky.k-selected, .k-master-row:hover .k-table-td.k-grid-content-sticky.k-selected, .k-master-row.k-hover .k-table-td.k-grid-content-sticky.k-selected {
|
|
39856
40067
|
background-color: var(--kendo-grid-sticky-selected-hover-bg, var(--kendo-primary-30, inherit));
|
|
39857
40068
|
}
|
|
39858
40069
|
|
|
@@ -39864,30 +40075,39 @@ kendo-grid.k-grid .k-grid-content-sticky {
|
|
|
39864
40075
|
kendo-grid.k-grid .k-grid-content-sticky:hover, kendo-grid.k-grid .k-grid-content-sticky.k-hover {
|
|
39865
40076
|
background-color: var(--kendo-grid-sticky-hover-bg, var(--kendo-hover-bg, inherit));
|
|
39866
40077
|
}
|
|
40078
|
+
kendo-grid.k-grid .k-grid-row-sticky td,
|
|
39867
40079
|
kendo-grid.k-grid .k-grid-row-sticky .k-table-td {
|
|
39868
40080
|
border-block-color: var(--kendo-grid-sticky-border, var(--kendo-neutral-90, inherit));
|
|
39869
40081
|
background-color: var(--kendo-grid-sticky-bg, var(--kendo-component-bg, initial));
|
|
39870
40082
|
}
|
|
39871
|
-
kendo-grid.k-grid .k-grid-row-sticky:hover .k-table-td, kendo-grid.k-grid .k-grid-row-sticky.k-hover .k-table-td {
|
|
40083
|
+
kendo-grid.k-grid .k-grid-row-sticky:hover td, kendo-grid.k-grid .k-grid-row-sticky.k-hover td, kendo-grid.k-grid .k-grid-row-sticky:hover .k-table-td, kendo-grid.k-grid .k-grid-row-sticky.k-hover .k-table-td {
|
|
39872
40084
|
background-color: var(--kendo-grid-sticky-hover-bg, var(--kendo-hover-bg, inherit));
|
|
39873
40085
|
}
|
|
39874
40086
|
kendo-grid.k-grid .k-table-alt-row .k-grid-content-sticky,
|
|
40087
|
+
kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row td,
|
|
39875
40088
|
kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row .k-table-td {
|
|
39876
40089
|
background-color: var(--kendo-grid-sticky-alt-bg, var(--kendo-component-bg, initial));
|
|
39877
40090
|
}
|
|
39878
40091
|
kendo-grid.k-grid .k-table-row.k-selected .k-grid-content-sticky,
|
|
40092
|
+
kendo-grid.k-grid .k-selected.k-grid-row-sticky td,
|
|
40093
|
+
kendo-grid.k-grid .k-grid-row-sticky td.k-selected,
|
|
39879
40094
|
kendo-grid.k-grid .k-selected.k-grid-row-sticky .k-table-td,
|
|
39880
40095
|
kendo-grid.k-grid .k-grid-row-sticky .k-table-td.k-selected,
|
|
39881
40096
|
kendo-grid.k-grid .k-selected.k-grid-content-sticky {
|
|
39882
40097
|
background-color: var(--kendo-grid-sticky-selected-bg, var(--kendo-primary-20, inherit));
|
|
39883
40098
|
}
|
|
39884
40099
|
kendo-grid.k-grid .k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky,
|
|
40100
|
+
kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky td,
|
|
39885
40101
|
kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td,
|
|
39886
40102
|
kendo-grid.k-grid .k-table-alt-row .k-selected.k-grid-content-sticky {
|
|
39887
40103
|
background-color: var(--kendo-grid-sticky-selected-alt-bg, var(--kendo-primary-20, inherit));
|
|
39888
40104
|
}
|
|
39889
40105
|
kendo-grid.k-grid .k-table-row:hover .k-grid-content-sticky,
|
|
39890
40106
|
kendo-grid.k-grid .k-table-row.k-hover .k-grid-content-sticky,
|
|
40107
|
+
kendo-grid.k-grid .k-grid-row-sticky:hover td,
|
|
40108
|
+
kendo-grid.k-grid .k-grid-row-sticky.k-hover td,
|
|
40109
|
+
kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row:hover td,
|
|
40110
|
+
kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row.k-hover td,
|
|
39891
40111
|
kendo-grid.k-grid .k-grid-row-sticky:hover .k-table-td,
|
|
39892
40112
|
kendo-grid.k-grid .k-grid-row-sticky.k-hover .k-table-td,
|
|
39893
40113
|
kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row:hover .k-table-td,
|
|
@@ -39898,12 +40118,18 @@ kendo-grid.k-grid .k-table-alt-row.k-hover .k-grid-content-sticky {
|
|
|
39898
40118
|
}
|
|
39899
40119
|
kendo-grid.k-grid .k-table-row.k-selected:hover .k-grid-content-sticky,
|
|
39900
40120
|
kendo-grid.k-grid .k-table-row.k-selected.k-hover .k-grid-content-sticky,
|
|
40121
|
+
kendo-grid.k-grid .k-selected.k-grid-row-sticky:hover td,
|
|
40122
|
+
kendo-grid.k-grid .k-selected.k-grid-row-sticky.k-hover td,
|
|
40123
|
+
kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky:hover td,
|
|
40124
|
+
kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky.k-hover td,
|
|
39901
40125
|
kendo-grid.k-grid .k-selected.k-grid-row-sticky:hover .k-table-td,
|
|
39902
40126
|
kendo-grid.k-grid .k-selected.k-grid-row-sticky.k-hover .k-table-td,
|
|
39903
40127
|
kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky:hover .k-table-td,
|
|
39904
40128
|
kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky.k-hover .k-table-td,
|
|
39905
40129
|
kendo-grid.k-grid .k-table-row.k-selected.k-table-alt-row:hover .k-grid-content-sticky,
|
|
39906
40130
|
kendo-grid.k-grid .k-table-row.k-selected.k-table-alt-row.k-hover .k-grid-content-sticky,
|
|
40131
|
+
kendo-grid.k-grid .k-grid-row-sticky:hover td.k-selected,
|
|
40132
|
+
kendo-grid.k-grid .k-grid-row-sticky.k-hover td.k-selected,
|
|
39907
40133
|
kendo-grid.k-grid .k-grid-row-sticky:hover .k-table-td.k-selected,
|
|
39908
40134
|
kendo-grid.k-grid .k-grid-row-sticky.k-hover .k-table-td.k-selected,
|
|
39909
40135
|
kendo-grid.k-grid .k-table-row:hover .k-grid-content-sticky.k-selected,
|
package/lib/swatches/all.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-fluent",
|
|
3
3
|
"description": "A css variables based theme for Kendo UI that follows the Fluent design system guidelines.",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "6.0.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@progress/kendo-font-icons": "^1.0.0",
|
|
53
|
-
"@progress/kendo-theme-core": "^
|
|
54
|
-
"@progress/kendo-theme-utils": "^
|
|
53
|
+
"@progress/kendo-theme-core": "^6.0.0",
|
|
54
|
+
"@progress/kendo-theme-utils": "^6.0.0"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "55db62ccac1c6dfee205ade579d703e3989d1f64"
|
|
57
57
|
}
|
package/scss/button/_layout.scss
CHANGED
|
@@ -94,6 +94,45 @@
|
|
|
94
94
|
> .k-button-icon {
|
|
95
95
|
min-width: calc( #{$_font-size} * #{$_line-height} );
|
|
96
96
|
min-height: calc( #{$_font-size} * #{$_line-height} );
|
|
97
|
+
display: inline-flex;
|
|
98
|
+
align-items: center;
|
|
99
|
+
justify-content: center;
|
|
100
|
+
|
|
101
|
+
&.k-svg-icon > svg,
|
|
102
|
+
&.k-icon-md > svg {
|
|
103
|
+
width: var( --kendo-icon-size-md, 1rem );
|
|
104
|
+
height: var( --kendo-icon-size-md, 1rem );
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
&.k-icon-xs > svg {
|
|
108
|
+
width: var( --kendo-icon-size-sm, 0.75rem );
|
|
109
|
+
height: var( --kendo-icon-size-sm, 0.75rem )s;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
&.k-icon-sm > svg {
|
|
113
|
+
width: var( --kendo-icon-size-sm, 0.875rem );
|
|
114
|
+
height: var( --kendo-icon-size-sm, 0.875rem );
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
&.k-icon-lg > svg {
|
|
118
|
+
width: var( --kendo-icon-size-lg, 1.25rem );
|
|
119
|
+
height: var( --kendo-icon-size-lg, 1.25rem );
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
&.k-icon-xl > svg {
|
|
123
|
+
width: var( --kendo-icon-size-xl, 1.5rem );
|
|
124
|
+
height: var( --kendo-icon-size-xl, 1.5rem );
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
&.k-icon-xxl > svg {
|
|
128
|
+
width: var( --kendo-icon-size-xxl, 2rem );
|
|
129
|
+
height: var( --kendo-icon-size-xxl, 2rem );
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
&.k-icon-xxxl > svg {
|
|
133
|
+
width: var( --kendo-icon-size-xxl, 3rem );
|
|
134
|
+
height: var( --kendo-icon-size-xxl, 3rem );
|
|
135
|
+
}
|
|
97
136
|
}
|
|
98
137
|
}
|
|
99
138
|
}
|
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
|
}
|
|
@@ -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;
|
|
@@ -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 {
|
|
@@ -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,
|
package/scss/icon/_layout.scss
CHANGED
package/scss/input/_layout.scss
CHANGED
|
@@ -234,6 +234,47 @@
|
|
|
234
234
|
justify-content: center;
|
|
235
235
|
}
|
|
236
236
|
|
|
237
|
+
// Input with SVG icon
|
|
238
|
+
.k-input-icon,
|
|
239
|
+
.k-input-validation-icon,
|
|
240
|
+
.k-input-loading-icon {
|
|
241
|
+
&.k-svg-icon > svg,
|
|
242
|
+
&.k-icon-md > svg {
|
|
243
|
+
width: var( --kendo-icon-size-md, 1rem );
|
|
244
|
+
height: var( --kendo-icon-size-md, 1rem );
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
&.k-icon-xs > svg {
|
|
248
|
+
width: var( --kendo-icon-size-sm, 0.75rem );
|
|
249
|
+
height: var( --kendo-icon-size-sm, 0.75rem )s;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
&.k-icon-sm > svg {
|
|
253
|
+
width: var( --kendo-icon-size-sm, 0.875rem );
|
|
254
|
+
height: var( --kendo-icon-size-sm, 0.875rem );
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
&.k-icon-lg > svg {
|
|
258
|
+
width: var( --kendo-icon-size-lg, 1.25rem );
|
|
259
|
+
height: var( --kendo-icon-size-lg, 1.25rem );
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
&.k-icon-xl > svg {
|
|
263
|
+
width: var( --kendo-icon-size-xl, 1.5rem );
|
|
264
|
+
height: var( --kendo-icon-size-xl, 1.5rem );
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
&.k-icon-xxl > svg {
|
|
268
|
+
width: var( --kendo-icon-size-xxl, 2rem );
|
|
269
|
+
height: var( --kendo-icon-size-xxl, 2rem );
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
&.k-icon-xxxl > svg {
|
|
273
|
+
width: var( --kendo-icon-size-xxl, 3rem );
|
|
274
|
+
height: var( --kendo-icon-size-xxl, 3rem );
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
|
|
237
278
|
|
|
238
279
|
// // Clear value
|
|
239
280
|
.k-clear-value {
|
|
@@ -308,7 +349,7 @@
|
|
|
308
349
|
position: relative;
|
|
309
350
|
aspect-ratio: auto;
|
|
310
351
|
|
|
311
|
-
|
|
352
|
+
.k-button-icon {
|
|
312
353
|
margin: -1em 0;
|
|
313
354
|
min-width: auto !important; // sass-lint:disable-line no-important
|
|
314
355
|
min-height: auto !important; // sass-lint:disable-line no-important
|