@progress/kendo-theme-default 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 +273 -17
- package/dist/all.scss +163 -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 +42 -1
- package/scss/treelist/_layout.scss +3 -0
package/dist/all.css
CHANGED
|
@@ -24256,6 +24256,10 @@ kendo-sortable {
|
|
|
24256
24256
|
vertical-align: top;
|
|
24257
24257
|
}
|
|
24258
24258
|
|
|
24259
|
+
.k-icon-wrapper-host {
|
|
24260
|
+
display: contents;
|
|
24261
|
+
}
|
|
24262
|
+
|
|
24259
24263
|
.k-icon-with-modifier {
|
|
24260
24264
|
position: relative;
|
|
24261
24265
|
margin: .25em;
|
|
@@ -27313,6 +27317,45 @@ kendo-badge-container {
|
|
|
27313
27317
|
.k-button-sm.k-icon-button > .k-button-icon {
|
|
27314
27318
|
min-width: 20.0000000004px;
|
|
27315
27319
|
min-height: 20.0000000004px;
|
|
27320
|
+
display: inline-flex;
|
|
27321
|
+
align-items: center;
|
|
27322
|
+
justify-content: center;
|
|
27323
|
+
}
|
|
27324
|
+
|
|
27325
|
+
.k-button-sm.k-icon-button > .k-button-icon.k-svg-icon > svg,
|
|
27326
|
+
.k-button-sm.k-icon-button > .k-button-icon.k-icon-md > svg {
|
|
27327
|
+
width: 16px;
|
|
27328
|
+
height: 16px;
|
|
27329
|
+
}
|
|
27330
|
+
|
|
27331
|
+
.k-button-sm.k-icon-button > .k-button-icon.k-icon-xs > svg {
|
|
27332
|
+
width: 12px;
|
|
27333
|
+
height: 12px;
|
|
27334
|
+
}
|
|
27335
|
+
|
|
27336
|
+
.k-button-sm.k-icon-button > .k-button-icon.k-icon-sm > svg {
|
|
27337
|
+
width: 14px;
|
|
27338
|
+
height: 14px;
|
|
27339
|
+
}
|
|
27340
|
+
|
|
27341
|
+
.k-button-sm.k-icon-button > .k-button-icon.k-icon-lg > svg {
|
|
27342
|
+
width: 20px;
|
|
27343
|
+
height: 20px;
|
|
27344
|
+
}
|
|
27345
|
+
|
|
27346
|
+
.k-button-sm.k-icon-button > .k-button-icon.k-icon-xl > svg {
|
|
27347
|
+
width: 24px;
|
|
27348
|
+
height: 24px;
|
|
27349
|
+
}
|
|
27350
|
+
|
|
27351
|
+
.k-button-sm.k-icon-button > .k-button-icon.k-icon-xxl > svg {
|
|
27352
|
+
width: 32px;
|
|
27353
|
+
height: 32px;
|
|
27354
|
+
}
|
|
27355
|
+
|
|
27356
|
+
.k-button-sm.k-icon-button > .k-button-icon.k-icon-xxxl > svg {
|
|
27357
|
+
width: 48px;
|
|
27358
|
+
height: 48px;
|
|
27316
27359
|
}
|
|
27317
27360
|
|
|
27318
27361
|
.k-button-md {
|
|
@@ -27328,6 +27371,45 @@ kendo-badge-container {
|
|
|
27328
27371
|
.k-button-md.k-icon-button > .k-button-icon {
|
|
27329
27372
|
min-width: 20.0000000004px;
|
|
27330
27373
|
min-height: 20.0000000004px;
|
|
27374
|
+
display: inline-flex;
|
|
27375
|
+
align-items: center;
|
|
27376
|
+
justify-content: center;
|
|
27377
|
+
}
|
|
27378
|
+
|
|
27379
|
+
.k-button-md.k-icon-button > .k-button-icon.k-svg-icon > svg,
|
|
27380
|
+
.k-button-md.k-icon-button > .k-button-icon.k-icon-md > svg {
|
|
27381
|
+
width: 16px;
|
|
27382
|
+
height: 16px;
|
|
27383
|
+
}
|
|
27384
|
+
|
|
27385
|
+
.k-button-md.k-icon-button > .k-button-icon.k-icon-xs > svg {
|
|
27386
|
+
width: 12px;
|
|
27387
|
+
height: 12px;
|
|
27388
|
+
}
|
|
27389
|
+
|
|
27390
|
+
.k-button-md.k-icon-button > .k-button-icon.k-icon-sm > svg {
|
|
27391
|
+
width: 14px;
|
|
27392
|
+
height: 14px;
|
|
27393
|
+
}
|
|
27394
|
+
|
|
27395
|
+
.k-button-md.k-icon-button > .k-button-icon.k-icon-lg > svg {
|
|
27396
|
+
width: 20px;
|
|
27397
|
+
height: 20px;
|
|
27398
|
+
}
|
|
27399
|
+
|
|
27400
|
+
.k-button-md.k-icon-button > .k-button-icon.k-icon-xl > svg {
|
|
27401
|
+
width: 24px;
|
|
27402
|
+
height: 24px;
|
|
27403
|
+
}
|
|
27404
|
+
|
|
27405
|
+
.k-button-md.k-icon-button > .k-button-icon.k-icon-xxl > svg {
|
|
27406
|
+
width: 32px;
|
|
27407
|
+
height: 32px;
|
|
27408
|
+
}
|
|
27409
|
+
|
|
27410
|
+
.k-button-md.k-icon-button > .k-button-icon.k-icon-xxxl > svg {
|
|
27411
|
+
width: 48px;
|
|
27412
|
+
height: 48px;
|
|
27331
27413
|
}
|
|
27332
27414
|
|
|
27333
27415
|
.k-button-lg {
|
|
@@ -27343,6 +27425,45 @@ kendo-badge-container {
|
|
|
27343
27425
|
.k-button-lg.k-icon-button > .k-button-icon {
|
|
27344
27426
|
min-width: 24px;
|
|
27345
27427
|
min-height: 24px;
|
|
27428
|
+
display: inline-flex;
|
|
27429
|
+
align-items: center;
|
|
27430
|
+
justify-content: center;
|
|
27431
|
+
}
|
|
27432
|
+
|
|
27433
|
+
.k-button-lg.k-icon-button > .k-button-icon.k-svg-icon > svg,
|
|
27434
|
+
.k-button-lg.k-icon-button > .k-button-icon.k-icon-md > svg {
|
|
27435
|
+
width: 16px;
|
|
27436
|
+
height: 16px;
|
|
27437
|
+
}
|
|
27438
|
+
|
|
27439
|
+
.k-button-lg.k-icon-button > .k-button-icon.k-icon-xs > svg {
|
|
27440
|
+
width: 12px;
|
|
27441
|
+
height: 12px;
|
|
27442
|
+
}
|
|
27443
|
+
|
|
27444
|
+
.k-button-lg.k-icon-button > .k-button-icon.k-icon-sm > svg {
|
|
27445
|
+
width: 14px;
|
|
27446
|
+
height: 14px;
|
|
27447
|
+
}
|
|
27448
|
+
|
|
27449
|
+
.k-button-lg.k-icon-button > .k-button-icon.k-icon-lg > svg {
|
|
27450
|
+
width: 20px;
|
|
27451
|
+
height: 20px;
|
|
27452
|
+
}
|
|
27453
|
+
|
|
27454
|
+
.k-button-lg.k-icon-button > .k-button-icon.k-icon-xl > svg {
|
|
27455
|
+
width: 24px;
|
|
27456
|
+
height: 24px;
|
|
27457
|
+
}
|
|
27458
|
+
|
|
27459
|
+
.k-button-lg.k-icon-button > .k-button-icon.k-icon-xxl > svg {
|
|
27460
|
+
width: 32px;
|
|
27461
|
+
height: 32px;
|
|
27462
|
+
}
|
|
27463
|
+
|
|
27464
|
+
.k-button-lg.k-icon-button > .k-button-icon.k-icon-xxxl > svg {
|
|
27465
|
+
width: 48px;
|
|
27466
|
+
height: 48px;
|
|
27346
27467
|
}
|
|
27347
27468
|
|
|
27348
27469
|
.k-button-square {
|
|
@@ -30010,6 +30131,58 @@ textarea.k-input-inner {
|
|
|
30010
30131
|
justify-content: center;
|
|
30011
30132
|
}
|
|
30012
30133
|
|
|
30134
|
+
.k-input-icon.k-svg-icon > svg,
|
|
30135
|
+
.k-input-icon.k-icon-md > svg,
|
|
30136
|
+
.k-input-validation-icon.k-svg-icon > svg,
|
|
30137
|
+
.k-input-validation-icon.k-icon-md > svg,
|
|
30138
|
+
.k-input-loading-icon.k-svg-icon > svg,
|
|
30139
|
+
.k-input-loading-icon.k-icon-md > svg {
|
|
30140
|
+
width: 16px;
|
|
30141
|
+
height: 16px;
|
|
30142
|
+
}
|
|
30143
|
+
|
|
30144
|
+
.k-input-icon.k-icon-xs > svg,
|
|
30145
|
+
.k-input-validation-icon.k-icon-xs > svg,
|
|
30146
|
+
.k-input-loading-icon.k-icon-xs > svg {
|
|
30147
|
+
width: 12px;
|
|
30148
|
+
height: 12px;
|
|
30149
|
+
}
|
|
30150
|
+
|
|
30151
|
+
.k-input-icon.k-icon-sm > svg,
|
|
30152
|
+
.k-input-validation-icon.k-icon-sm > svg,
|
|
30153
|
+
.k-input-loading-icon.k-icon-sm > svg {
|
|
30154
|
+
width: 14px;
|
|
30155
|
+
height: 14px;
|
|
30156
|
+
}
|
|
30157
|
+
|
|
30158
|
+
.k-input-icon.k-icon-lg > svg,
|
|
30159
|
+
.k-input-validation-icon.k-icon-lg > svg,
|
|
30160
|
+
.k-input-loading-icon.k-icon-lg > svg {
|
|
30161
|
+
width: 20px;
|
|
30162
|
+
height: 20px;
|
|
30163
|
+
}
|
|
30164
|
+
|
|
30165
|
+
.k-input-icon.k-icon-xl > svg,
|
|
30166
|
+
.k-input-validation-icon.k-icon-xl > svg,
|
|
30167
|
+
.k-input-loading-icon.k-icon-xl > svg {
|
|
30168
|
+
width: 24px;
|
|
30169
|
+
height: 24px;
|
|
30170
|
+
}
|
|
30171
|
+
|
|
30172
|
+
.k-input-icon.k-icon-xxl > svg,
|
|
30173
|
+
.k-input-validation-icon.k-icon-xxl > svg,
|
|
30174
|
+
.k-input-loading-icon.k-icon-xxl > svg {
|
|
30175
|
+
width: 32px;
|
|
30176
|
+
height: 32px;
|
|
30177
|
+
}
|
|
30178
|
+
|
|
30179
|
+
.k-input-icon.k-icon-xxxl > svg,
|
|
30180
|
+
.k-input-validation-icon.k-icon-xxxl > svg,
|
|
30181
|
+
.k-input-loading-icon.k-icon-xxxl > svg {
|
|
30182
|
+
width: 48px;
|
|
30183
|
+
height: 48px;
|
|
30184
|
+
}
|
|
30185
|
+
|
|
30013
30186
|
.k-clear-value {
|
|
30014
30187
|
outline: 0;
|
|
30015
30188
|
flex: none;
|
|
@@ -30071,8 +30244,8 @@ textarea.k-input-inner {
|
|
|
30071
30244
|
aspect-ratio: auto;
|
|
30072
30245
|
}
|
|
30073
30246
|
|
|
30074
|
-
.k-input-spinner .k-spinner-increase
|
|
30075
|
-
.k-input-spinner .k-spinner-decrease
|
|
30247
|
+
.k-input-spinner .k-spinner-increase .k-button-icon,
|
|
30248
|
+
.k-input-spinner .k-spinner-decrease .k-button-icon {
|
|
30076
30249
|
margin: -1em 0;
|
|
30077
30250
|
min-width: auto !important;
|
|
30078
30251
|
min-height: auto !important;
|
|
@@ -33040,8 +33213,9 @@ select.k-picker-lg {
|
|
|
33040
33213
|
vertical-align: middle;
|
|
33041
33214
|
}
|
|
33042
33215
|
|
|
33043
|
-
.k-colorgradient-color-contrast .k-contrast-validation .k-icon + .k-icon
|
|
33044
|
-
|
|
33216
|
+
.k-colorgradient-color-contrast .k-contrast-validation .k-icon + .k-icon,
|
|
33217
|
+
.k-colorgradient-color-contrast .k-contrast-validation .k-icon-wrapper-host + .k-icon-wrapper-host .k-icon {
|
|
33218
|
+
margin-inline-start: -13px;
|
|
33045
33219
|
}
|
|
33046
33220
|
|
|
33047
33221
|
.k-color-contrast-svg {
|
|
@@ -33052,12 +33226,6 @@ select.k-picker-lg {
|
|
|
33052
33226
|
pointer-events: none;
|
|
33053
33227
|
}
|
|
33054
33228
|
|
|
33055
|
-
.k-rtl .k-colorgradient-color-contrast .k-i-check + .k-i-check,
|
|
33056
|
-
[dir="rtl"] .k-colorgradient-color-contrast .k-i-check + .k-i-check {
|
|
33057
|
-
margin-left: 0;
|
|
33058
|
-
margin-right: -13px;
|
|
33059
|
-
}
|
|
33060
|
-
|
|
33061
33229
|
.k-colorgradient {
|
|
33062
33230
|
border-color: rgba(0, 0, 0, 0.08);
|
|
33063
33231
|
color: #424242;
|
|
@@ -39393,6 +39561,7 @@ kendo-card-footer {
|
|
|
39393
39561
|
}
|
|
39394
39562
|
|
|
39395
39563
|
.k-grid .k-table-th,
|
|
39564
|
+
.k-grid td,
|
|
39396
39565
|
.k-grid .k-table-td {
|
|
39397
39566
|
border-width: 0;
|
|
39398
39567
|
border-inline-start-width: 1px;
|
|
@@ -39408,16 +39577,19 @@ kendo-card-footer {
|
|
|
39408
39577
|
}
|
|
39409
39578
|
|
|
39410
39579
|
.k-grid .k-table-th:first-child,
|
|
39580
|
+
.k-grid td:first-child,
|
|
39411
39581
|
.k-grid .k-table-td:first-child {
|
|
39412
39582
|
border-inline-start-width: 0;
|
|
39413
39583
|
}
|
|
39414
39584
|
|
|
39415
39585
|
.k-grid .k-table-th:focus,
|
|
39586
|
+
.k-grid td:focus,
|
|
39416
39587
|
.k-grid .k-table-td:focus {
|
|
39417
39588
|
outline: none;
|
|
39418
39589
|
}
|
|
39419
39590
|
|
|
39420
39591
|
.k-grid .k-table-th .k-placeholder-line,
|
|
39592
|
+
.k-grid td .k-placeholder-line,
|
|
39421
39593
|
.k-grid .k-table-td .k-placeholder-line {
|
|
39422
39594
|
width: 80%;
|
|
39423
39595
|
}
|
|
@@ -39426,6 +39598,10 @@ kendo-card-footer {
|
|
|
39426
39598
|
.k-grid .k-table-th > .k-radio-wrap,
|
|
39427
39599
|
.k-grid .k-table-th > .k-checkbox,
|
|
39428
39600
|
.k-grid .k-table-th > .k-checkbox-wrap,
|
|
39601
|
+
.k-grid td > .k-radio,
|
|
39602
|
+
.k-grid td > .k-radio-wrap,
|
|
39603
|
+
.k-grid td > .k-checkbox,
|
|
39604
|
+
.k-grid td > .k-checkbox-wrap,
|
|
39429
39605
|
.k-grid .k-table-td > .k-radio,
|
|
39430
39606
|
.k-grid .k-table-td > .k-radio-wrap,
|
|
39431
39607
|
.k-grid .k-table-td > .k-checkbox,
|
|
@@ -39438,6 +39614,7 @@ kendo-card-footer {
|
|
|
39438
39614
|
white-space: nowrap;
|
|
39439
39615
|
}
|
|
39440
39616
|
|
|
39617
|
+
.k-grid td,
|
|
39441
39618
|
.k-grid .k-table-td {
|
|
39442
39619
|
border-block-end-width: 0px;
|
|
39443
39620
|
white-space: unset;
|
|
@@ -39589,10 +39766,12 @@ kendo-card-footer {
|
|
|
39589
39766
|
align-content: center;
|
|
39590
39767
|
}
|
|
39591
39768
|
|
|
39769
|
+
.k-grid .k-grouping-row td,
|
|
39592
39770
|
.k-grid .k-grouping-row .k-table-td {
|
|
39593
39771
|
overflow: visible;
|
|
39594
39772
|
}
|
|
39595
39773
|
|
|
39774
|
+
.k-grid .k-grouping-row + .k-table-row td,
|
|
39596
39775
|
.k-grid .k-grouping-row + .k-table-row .k-table-td {
|
|
39597
39776
|
border-top-width: 1px;
|
|
39598
39777
|
}
|
|
@@ -39609,11 +39788,13 @@ kendo-card-footer {
|
|
|
39609
39788
|
text-decoration: none;
|
|
39610
39789
|
}
|
|
39611
39790
|
|
|
39791
|
+
.k-grid .k-table .k-group-footer td,
|
|
39612
39792
|
.k-grid .k-table .k-group-footer .k-table-td {
|
|
39613
39793
|
border-style: solid;
|
|
39614
39794
|
border-width: 1px 0;
|
|
39615
39795
|
}
|
|
39616
39796
|
|
|
39797
|
+
.k-grid .k-group-footer .k-group-cell + td,
|
|
39617
39798
|
.k-grid .k-group-footer .k-group-cell + .k-table-td {
|
|
39618
39799
|
border-inline-start-width: 1px;
|
|
39619
39800
|
}
|
|
@@ -39806,10 +39987,14 @@ div.k-grid-footer {
|
|
|
39806
39987
|
border-top-width: 1px;
|
|
39807
39988
|
}
|
|
39808
39989
|
|
|
39990
|
+
.k-grid-footer td,
|
|
39809
39991
|
.k-grid-footer .k-table-td {
|
|
39810
39992
|
height: 1.4285714286em;
|
|
39811
39993
|
}
|
|
39812
39994
|
|
|
39995
|
+
.k-grid-footer td,
|
|
39996
|
+
.k-group-footer td,
|
|
39997
|
+
.k-grouping-row td,
|
|
39813
39998
|
.k-grid-footer .k-table-td,
|
|
39814
39999
|
.k-group-footer .k-table-td,
|
|
39815
40000
|
.k-grouping-row .k-table-td {
|
|
@@ -39831,6 +40016,7 @@ div.k-grid-footer {
|
|
|
39831
40016
|
line-height: 1.4285714286;
|
|
39832
40017
|
}
|
|
39833
40018
|
|
|
40019
|
+
.k-filter-row td,
|
|
39834
40020
|
.k-filter-row .k-table-td,
|
|
39835
40021
|
.k-filter-row .k-table-th {
|
|
39836
40022
|
border-width: 0;
|
|
@@ -39839,6 +40025,7 @@ div.k-grid-footer {
|
|
|
39839
40025
|
white-space: nowrap;
|
|
39840
40026
|
}
|
|
39841
40027
|
|
|
40028
|
+
.k-filter-row td:first-child,
|
|
39842
40029
|
.k-filter-row .k-table-td:first-child {
|
|
39843
40030
|
border-inline-start-width: 0;
|
|
39844
40031
|
}
|
|
@@ -39886,7 +40073,9 @@ div.k-grid-footer {
|
|
|
39886
40073
|
outline: 0;
|
|
39887
40074
|
}
|
|
39888
40075
|
|
|
40076
|
+
.k-grid-content .k-table-row:last-child > td,
|
|
39889
40077
|
.k-grid-content .k-table-row:last-child > .k-table-td,
|
|
40078
|
+
.k-grid-content-locked .k-table-row:last-child > td,
|
|
39890
40079
|
.k-grid-content-locked .k-table-row:last-child > .k-table-td {
|
|
39891
40080
|
border-bottom-width: 0;
|
|
39892
40081
|
}
|
|
@@ -39909,6 +40098,7 @@ div.k-grid-footer {
|
|
|
39909
40098
|
|
|
39910
40099
|
.k-grid .k-edit-cell,
|
|
39911
40100
|
.k-grid .k-command-cell,
|
|
40101
|
+
.k-grid .k-grid-edit-row td,
|
|
39912
40102
|
.k-grid .k-grid-edit-row .k-table-td {
|
|
39913
40103
|
text-overflow: clip;
|
|
39914
40104
|
}
|
|
@@ -39916,6 +40106,9 @@ div.k-grid-footer {
|
|
|
39916
40106
|
.k-grid .k-edit-cell > input:not([type="checkbox"]):not([type="radio"]),
|
|
39917
40107
|
.k-grid .k-edit-cell > select,
|
|
39918
40108
|
.k-grid .k-edit-cell > .k-widget:not(.k-switch),
|
|
40109
|
+
.k-grid .k-grid-edit-row td > input:not([type="checkbox"]):not([type="radio"]),
|
|
40110
|
+
.k-grid .k-grid-edit-row td > select,
|
|
40111
|
+
.k-grid .k-grid-edit-row td > .k-widget:not(.k-switch),
|
|
39919
40112
|
.k-grid .k-grid-edit-row .k-table-td > input:not([type="checkbox"]):not([type="radio"]),
|
|
39920
40113
|
.k-grid .k-grid-edit-row .k-table-td > select,
|
|
39921
40114
|
.k-grid .k-grid-edit-row .k-table-td > .k-widget:not(.k-switch) {
|
|
@@ -39928,6 +40121,10 @@ div.k-grid-footer {
|
|
|
39928
40121
|
.k-grid .k-edit-cell > .k-checkbox,
|
|
39929
40122
|
.k-grid .k-edit-cell > .k-radio-wrap,
|
|
39930
40123
|
.k-grid .k-edit-cell > .k-checkbox-wrap,
|
|
40124
|
+
.k-grid .k-grid-edit-row td > .k-radio,
|
|
40125
|
+
.k-grid .k-grid-edit-row td > .k-checkbox,
|
|
40126
|
+
.k-grid .k-grid-edit-row td > .k-radio-wrap,
|
|
40127
|
+
.k-grid .k-grid-edit-row td > .k-checkbox-wrap,
|
|
39931
40128
|
.k-grid .k-grid-edit-row .k-table-td > .k-radio,
|
|
39932
40129
|
.k-grid .k-grid-edit-row .k-table-td > .k-checkbox,
|
|
39933
40130
|
.k-grid .k-grid-edit-row .k-table-td > .k-radio-wrap,
|
|
@@ -39969,19 +40166,19 @@ div.k-grid-footer {
|
|
|
39969
40166
|
}
|
|
39970
40167
|
|
|
39971
40168
|
.k-grid-virtual .k-grid-content .k-grid-table-wrap {
|
|
39972
|
-
float:
|
|
40169
|
+
float: left;
|
|
39973
40170
|
width: 100%;
|
|
39974
40171
|
}
|
|
39975
40172
|
|
|
39976
40173
|
.k-grid-virtual .k-grid-content .k-grid-table {
|
|
39977
40174
|
position: relative;
|
|
39978
|
-
float:
|
|
40175
|
+
float: left;
|
|
39979
40176
|
z-index: 1;
|
|
39980
40177
|
}
|
|
39981
40178
|
|
|
39982
40179
|
.k-grid-virtual .k-grid-content > .k-height-container {
|
|
39983
40180
|
position: relative;
|
|
39984
|
-
float:
|
|
40181
|
+
float: left;
|
|
39985
40182
|
}
|
|
39986
40183
|
|
|
39987
40184
|
.k-grid-virtual .k-grid-content::after {
|
|
@@ -39999,6 +40196,7 @@ div.k-grid-footer {
|
|
|
39999
40196
|
height: 1px;
|
|
40000
40197
|
}
|
|
40001
40198
|
|
|
40199
|
+
.k-grid-add-row td,
|
|
40002
40200
|
.k-grid-add-row .k-table-td {
|
|
40003
40201
|
border-bottom-style: solid;
|
|
40004
40202
|
border-bottom-width: 1px;
|
|
@@ -40082,18 +40280,18 @@ kendo-grid .k-table-row.k-grid-row-sticky {
|
|
|
40082
40280
|
z-index: auto;
|
|
40083
40281
|
}
|
|
40084
40282
|
|
|
40283
|
+
kendo-grid .k-grid-row-sticky td,
|
|
40085
40284
|
kendo-grid .k-grid-row-sticky .k-table-td {
|
|
40086
40285
|
border-bottom-width: 1px;
|
|
40087
40286
|
border-top-width: 1px;
|
|
40088
40287
|
position: sticky;
|
|
40089
40288
|
top: inherit;
|
|
40090
40289
|
bottom: inherit;
|
|
40091
|
-
}
|
|
40092
|
-
|
|
40093
|
-
kendo-grid .k-grid-row-sticky .k-table-td {
|
|
40094
40290
|
z-index: 2;
|
|
40095
40291
|
}
|
|
40096
40292
|
|
|
40293
|
+
kendo-grid .k-grid-row-sticky td.k-grid-content-sticky,
|
|
40294
|
+
kendo-grid .k-grid-row-sticky.k-alt td.k-grid-content-sticky,
|
|
40097
40295
|
kendo-grid .k-grid-row-sticky .k-table-td.k-grid-content-sticky,
|
|
40098
40296
|
kendo-grid .k-grid-row-sticky.k-alt .k-table-td.k-grid-content-sticky {
|
|
40099
40297
|
z-index: 3;
|
|
@@ -40119,10 +40317,13 @@ kendo-grid .k-grid-header .k-grid-header-menu {
|
|
|
40119
40317
|
border-inline-end-width: 1px;
|
|
40120
40318
|
}
|
|
40121
40319
|
|
|
40320
|
+
.k-grid .k-table .k-grid-header-sticky:not([style*="display: none"]) + td,
|
|
40122
40321
|
.k-grid .k-table .k-grid-header-sticky:not([style*="display: none"]) + .k-table-td,
|
|
40123
40322
|
.k-grid .k-table .k-grid-header-sticky:not([style*="display: none"]) + .k-table-th,
|
|
40323
|
+
.k-grid .k-table .k-grid-content-sticky:not([style*="display: none"]) + td,
|
|
40124
40324
|
.k-grid .k-table .k-grid-content-sticky:not([style*="display: none"]) + .k-table-td,
|
|
40125
40325
|
.k-grid .k-table .k-grid-content-sticky:not([style*="display: none"]) + .k-table-th,
|
|
40326
|
+
.k-grid .k-table .k-grid-footer-sticky:not([style*="display: none"]) + td,
|
|
40126
40327
|
.k-grid .k-table .k-grid-footer-sticky:not([style*="display: none"]) + .k-table-td,
|
|
40127
40328
|
.k-grid .k-table .k-grid-footer-sticky:not([style*="display: none"]) + .k-table-th {
|
|
40128
40329
|
border-inline-start-width: 0;
|
|
@@ -40184,6 +40385,7 @@ div.k-grid-norecords {
|
|
|
40184
40385
|
padding: 4px 8px;
|
|
40185
40386
|
}
|
|
40186
40387
|
|
|
40388
|
+
.k-grid-sm td,
|
|
40187
40389
|
.k-grid-sm .k-table-td {
|
|
40188
40390
|
padding: 4px 8px;
|
|
40189
40391
|
}
|
|
@@ -40239,10 +40441,12 @@ div.k-grid-norecords {
|
|
|
40239
40441
|
|
|
40240
40442
|
.k-grid-sm .k-edit-cell,
|
|
40241
40443
|
.k-grid-sm .k-command-cell,
|
|
40444
|
+
.k-grid-sm .k-grid-edit-row td,
|
|
40242
40445
|
.k-grid-sm .k-grid-edit-row .k-table-td {
|
|
40243
40446
|
padding: 2px 8px;
|
|
40244
40447
|
}
|
|
40245
40448
|
|
|
40449
|
+
.k-grid-sm .k-filter-row td,
|
|
40246
40450
|
.k-grid-sm .k-filter-row .k-table-td,
|
|
40247
40451
|
.k-grid-sm .k-filter-row .k-table-th {
|
|
40248
40452
|
padding: 6px 6px;
|
|
@@ -40257,6 +40461,7 @@ div.k-grid-norecords {
|
|
|
40257
40461
|
padding: 8px 12px;
|
|
40258
40462
|
}
|
|
40259
40463
|
|
|
40464
|
+
.k-grid-md td,
|
|
40260
40465
|
.k-grid-md .k-table-td {
|
|
40261
40466
|
padding: 8px 12px;
|
|
40262
40467
|
}
|
|
@@ -40312,10 +40517,12 @@ div.k-grid-norecords {
|
|
|
40312
40517
|
|
|
40313
40518
|
.k-grid-md .k-edit-cell,
|
|
40314
40519
|
.k-grid-md .k-command-cell,
|
|
40520
|
+
.k-grid-md .k-grid-edit-row td,
|
|
40315
40521
|
.k-grid-md .k-grid-edit-row .k-table-td {
|
|
40316
40522
|
padding: 3px 12px;
|
|
40317
40523
|
}
|
|
40318
40524
|
|
|
40525
|
+
.k-grid-md .k-filter-row td,
|
|
40319
40526
|
.k-grid-md .k-filter-row .k-table-td,
|
|
40320
40527
|
.k-grid-md .k-filter-row .k-table-th {
|
|
40321
40528
|
padding: 8px 8px;
|
|
@@ -40366,7 +40573,7 @@ div.k-grid-norecords {
|
|
|
40366
40573
|
}
|
|
40367
40574
|
|
|
40368
40575
|
.k-pdf-export-shadow .k-grid {
|
|
40369
|
-
float:
|
|
40576
|
+
float: left;
|
|
40370
40577
|
width: auto !important;
|
|
40371
40578
|
}
|
|
40372
40579
|
|
|
@@ -40461,6 +40668,7 @@ div.k-grid-norecords {
|
|
|
40461
40668
|
}
|
|
40462
40669
|
|
|
40463
40670
|
.k-autofitting .k-table-th,
|
|
40671
|
+
.k-autofitting td,
|
|
40464
40672
|
.k-autofitting .k-table-td {
|
|
40465
40673
|
white-space: nowrap !important;
|
|
40466
40674
|
}
|
|
@@ -40588,6 +40796,7 @@ div.k-grid-norecords {
|
|
|
40588
40796
|
.k-grid-header-wrap,
|
|
40589
40797
|
.k-grouping-header,
|
|
40590
40798
|
.k-grid .k-table-th,
|
|
40799
|
+
.k-grid td,
|
|
40591
40800
|
.k-grid .k-table-td,
|
|
40592
40801
|
.k-grid-footer,
|
|
40593
40802
|
.k-grid-footer-wrap,
|
|
@@ -40595,6 +40804,7 @@ div.k-grid-norecords {
|
|
|
40595
40804
|
.k-grid-footer-locked,
|
|
40596
40805
|
.k-grid-header-locked,
|
|
40597
40806
|
.k-filter-row > .k-table-th,
|
|
40807
|
+
.k-filter-row > td,
|
|
40598
40808
|
.k-filter-row > .k-table-td {
|
|
40599
40809
|
border-color: rgba(0, 0, 0, 0.08);
|
|
40600
40810
|
}
|
|
@@ -40620,6 +40830,8 @@ div.k-grid-norecords {
|
|
|
40620
40830
|
background-color: #ffffff;
|
|
40621
40831
|
}
|
|
40622
40832
|
|
|
40833
|
+
.k-group-footer td,
|
|
40834
|
+
.k-grouping-row td,
|
|
40623
40835
|
.k-group-footer .k-table-td,
|
|
40624
40836
|
.k-grouping-row .k-table-td,
|
|
40625
40837
|
.k-table-tbody .k-group-cell {
|
|
@@ -40650,14 +40862,26 @@ div.k-grid-norecords {
|
|
|
40650
40862
|
background-color: #ededed;
|
|
40651
40863
|
}
|
|
40652
40864
|
|
|
40865
|
+
.k-grid td.k-selected,
|
|
40866
|
+
.k-grid .k-table-row.k-selected > td,
|
|
40653
40867
|
.k-grid .k-table-td.k-selected,
|
|
40654
40868
|
.k-grid .k-table-row.k-selected > .k-table-td {
|
|
40655
40869
|
background-color: rgba(255, 99, 88, 0.25);
|
|
40656
40870
|
}
|
|
40657
40871
|
|
|
40658
40872
|
.k-grid .k-table-th:focus, .k-grid .k-table-th.k-focus,
|
|
40873
|
+
.k-grid td:focus,
|
|
40874
|
+
.k-grid td.k-focus,
|
|
40659
40875
|
.k-grid .k-table-td:focus,
|
|
40660
40876
|
.k-grid .k-table-td.k-focus,
|
|
40877
|
+
.k-grid .k-master-row > td:focus,
|
|
40878
|
+
.k-grid .k-master-row > td.k-focus,
|
|
40879
|
+
.k-grid .k-grouping-row > td:focus,
|
|
40880
|
+
.k-grid .k-grouping-row > td.k-focus,
|
|
40881
|
+
.k-grid .k-detail-row > td:focus,
|
|
40882
|
+
.k-grid .k-detail-row > td.k-focus,
|
|
40883
|
+
.k-grid .k-group-footer > td:focus,
|
|
40884
|
+
.k-grid .k-group-footer > td.k-focus,
|
|
40661
40885
|
.k-grid .k-master-row > .k-table-td:focus,
|
|
40662
40886
|
.k-grid .k-master-row > .k-table-td.k-focus,
|
|
40663
40887
|
.k-grid .k-grouping-row > .k-table-td:focus,
|
|
@@ -40694,27 +40918,34 @@ div.k-grid-norecords {
|
|
|
40694
40918
|
.k-grid .k-grid-header-locked,
|
|
40695
40919
|
.k-grid .k-grid-content-locked,
|
|
40696
40920
|
.k-grid .k-grid-header-locked .k-table-th,
|
|
40921
|
+
.k-grid .k-grid-content-locked td,
|
|
40697
40922
|
.k-grid .k-grid-content-locked .k-table-td {
|
|
40698
40923
|
border-color: rgba(0, 0, 0, 0.3);
|
|
40699
40924
|
}
|
|
40700
40925
|
|
|
40926
|
+
.k-grid .k-grid-content-locked .k-group-footer td,
|
|
40701
40927
|
.k-grid .k-grid-content-locked .k-group-footer .k-table-td,
|
|
40702
40928
|
.k-grid .k-grid-content-locked .k-group-cell {
|
|
40703
40929
|
border-color: rgba(0, 0, 0, 0.08);
|
|
40704
40930
|
}
|
|
40705
40931
|
|
|
40932
|
+
.k-grid .k-grid-content-locked .k-grouping-row + .k-table-row td,
|
|
40706
40933
|
.k-grid .k-grid-content-locked .k-grouping-row + .k-table-row .k-table-td {
|
|
40707
40934
|
border-top-color: rgba(0, 0, 0, 0.08);
|
|
40708
40935
|
}
|
|
40709
40936
|
|
|
40937
|
+
.k-grid .k-grid-content-locked .k-selected td,
|
|
40710
40938
|
.k-grid .k-grid-content-locked .k-selected .k-table-td {
|
|
40711
40939
|
background-color: #ffd8d5;
|
|
40712
40940
|
}
|
|
40713
40941
|
|
|
40942
|
+
.k-grid .k-grid-content-locked .k-selected.k-table-alt-row td,
|
|
40714
40943
|
.k-grid .k-grid-content-locked .k-selected.k-table-alt-row .k-table-td {
|
|
40715
40944
|
background-color: #f7d1ce;
|
|
40716
40945
|
}
|
|
40717
40946
|
|
|
40947
|
+
.k-grid .k-grid-content-locked .k-selected:hover td,
|
|
40948
|
+
.k-grid .k-grid-content-locked .k-selected.k-hover td,
|
|
40718
40949
|
.k-grid .k-grid-content-locked .k-selected:hover .k-table-td,
|
|
40719
40950
|
.k-grid .k-grid-content-locked .k-selected.k-hover .k-table-td {
|
|
40720
40951
|
background-color: #f1ccc9;
|
|
@@ -40760,6 +40991,7 @@ col.k-sorted,
|
|
|
40760
40991
|
}
|
|
40761
40992
|
|
|
40762
40993
|
.k-grid-header .k-table-th.k-grid-header-sticky,
|
|
40994
|
+
.k-grid-header td.k-grid-header-sticky,
|
|
40763
40995
|
.k-grid-header .k-table-td.k-grid-header-sticky,
|
|
40764
40996
|
.k-grid-header .k-grid-header-sticky.k-sorted {
|
|
40765
40997
|
color: #424242;
|
|
@@ -40799,12 +41031,14 @@ col.k-sorted,
|
|
|
40799
41031
|
|
|
40800
41032
|
.k-master-row.k-selected .k-grid-content-sticky,
|
|
40801
41033
|
.k-master-row.k-selected .k-grid-row-sticky,
|
|
41034
|
+
.k-master-row td.k-grid-content-sticky.k-selected,
|
|
40802
41035
|
.k-master-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
40803
41036
|
background-color: #ffd8d5;
|
|
40804
41037
|
}
|
|
40805
41038
|
|
|
40806
41039
|
.k-master-row.k-selected.k-table-alt-row .k-grid-content-sticky,
|
|
40807
41040
|
.k-master-row.k-selected.k-table-alt-row .k-grid-row-sticky,
|
|
41041
|
+
.k-master-row.k-table-alt-row td.k-grid-content-sticky.k-selected,
|
|
40808
41042
|
.k-master-row.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
40809
41043
|
background-color: #f7d1ce;
|
|
40810
41044
|
}
|
|
@@ -40820,6 +41054,8 @@ col.k-sorted,
|
|
|
40820
41054
|
.k-master-row.k-selected:hover .k-grid-row-sticky,
|
|
40821
41055
|
.k-master-row.k-selected.k-hover .k-grid-content-sticky,
|
|
40822
41056
|
.k-master-row.k-selected.k-hover .k-grid-row-sticky,
|
|
41057
|
+
.k-master-row:hover td.k-grid-content-sticky.k-selected,
|
|
41058
|
+
.k-master-row.k-hover td.k-grid-content-sticky.k-selected,
|
|
40823
41059
|
.k-master-row:hover .k-table-td.k-grid-content-sticky.k-selected,
|
|
40824
41060
|
.k-master-row.k-hover .k-table-td.k-grid-content-sticky.k-selected {
|
|
40825
41061
|
background-color: #f1ccc9;
|
|
@@ -40836,23 +41072,29 @@ kendo-grid.k-grid .k-grid-content-sticky:hover, kendo-grid.k-grid .k-grid-conten
|
|
|
40836
41072
|
background-color: #ebebeb;
|
|
40837
41073
|
}
|
|
40838
41074
|
|
|
41075
|
+
kendo-grid.k-grid .k-grid-row-sticky td,
|
|
40839
41076
|
kendo-grid.k-grid .k-grid-row-sticky .k-table-td {
|
|
40840
41077
|
border-top-color: rgba(0, 0, 0, 0.3);
|
|
40841
41078
|
border-bottom-color: rgba(0, 0, 0, 0.3);
|
|
40842
41079
|
background-color: #ffffff;
|
|
40843
41080
|
}
|
|
40844
41081
|
|
|
41082
|
+
kendo-grid.k-grid .k-grid-row-sticky:hover td,
|
|
41083
|
+
kendo-grid.k-grid .k-grid-row-sticky.k-hover td,
|
|
40845
41084
|
kendo-grid.k-grid .k-grid-row-sticky:hover .k-table-td,
|
|
40846
41085
|
kendo-grid.k-grid .k-grid-row-sticky.k-hover .k-table-td {
|
|
40847
41086
|
background-color: #ebebeb;
|
|
40848
41087
|
}
|
|
40849
41088
|
|
|
40850
41089
|
kendo-grid.k-grid .k-table-alt-row .k-grid-content-sticky,
|
|
41090
|
+
kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row td,
|
|
40851
41091
|
kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row .k-table-td {
|
|
40852
41092
|
background-color: #f6f6f6;
|
|
40853
41093
|
}
|
|
40854
41094
|
|
|
40855
41095
|
kendo-grid.k-grid .k-table-row.k-selected .k-grid-content-sticky,
|
|
41096
|
+
kendo-grid.k-grid .k-selected.k-grid-row-sticky td,
|
|
41097
|
+
kendo-grid.k-grid .k-grid-row-sticky td.k-selected,
|
|
40856
41098
|
kendo-grid.k-grid .k-selected.k-grid-row-sticky .k-table-td,
|
|
40857
41099
|
kendo-grid.k-grid .k-grid-row-sticky .k-table-td.k-selected,
|
|
40858
41100
|
kendo-grid.k-grid .k-selected.k-grid-content-sticky {
|
|
@@ -40860,6 +41102,7 @@ kendo-grid.k-grid .k-selected.k-grid-content-sticky {
|
|
|
40860
41102
|
}
|
|
40861
41103
|
|
|
40862
41104
|
kendo-grid.k-grid .k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky,
|
|
41105
|
+
kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky td,
|
|
40863
41106
|
kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td,
|
|
40864
41107
|
kendo-grid.k-grid .k-table-alt-row .k-selected.k-grid-content-sticky {
|
|
40865
41108
|
background-color: #f7d1ce;
|
|
@@ -40867,6 +41110,10 @@ kendo-grid.k-grid .k-table-alt-row .k-selected.k-grid-content-sticky {
|
|
|
40867
41110
|
|
|
40868
41111
|
kendo-grid.k-grid .k-table-row:hover .k-grid-content-sticky,
|
|
40869
41112
|
kendo-grid.k-grid .k-table-row.k-hover .k-grid-content-sticky,
|
|
41113
|
+
kendo-grid.k-grid .k-grid-row-sticky:hover td,
|
|
41114
|
+
kendo-grid.k-grid .k-grid-row-sticky.k-hover td,
|
|
41115
|
+
kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row:hover td,
|
|
41116
|
+
kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row.k-hover td,
|
|
40870
41117
|
kendo-grid.k-grid .k-grid-row-sticky:hover .k-table-td,
|
|
40871
41118
|
kendo-grid.k-grid .k-grid-row-sticky.k-hover .k-table-td,
|
|
40872
41119
|
kendo-grid.k-grid .k-grid-row-sticky.k-table-alt-row:hover .k-table-td,
|
|
@@ -40878,12 +41125,18 @@ kendo-grid.k-grid .k-table-alt-row.k-hover .k-grid-content-sticky {
|
|
|
40878
41125
|
|
|
40879
41126
|
kendo-grid.k-grid .k-table-row.k-selected:hover .k-grid-content-sticky,
|
|
40880
41127
|
kendo-grid.k-grid .k-table-row.k-selected.k-hover .k-grid-content-sticky,
|
|
41128
|
+
kendo-grid.k-grid .k-selected.k-grid-row-sticky:hover td,
|
|
41129
|
+
kendo-grid.k-grid .k-selected.k-grid-row-sticky.k-hover td,
|
|
41130
|
+
kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky:hover td,
|
|
41131
|
+
kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky.k-hover td,
|
|
40881
41132
|
kendo-grid.k-grid .k-selected.k-grid-row-sticky:hover .k-table-td,
|
|
40882
41133
|
kendo-grid.k-grid .k-selected.k-grid-row-sticky.k-hover .k-table-td,
|
|
40883
41134
|
kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky:hover .k-table-td,
|
|
40884
41135
|
kendo-grid.k-grid .k-selected.k-table-alt-row.k-grid-row-sticky.k-hover .k-table-td,
|
|
40885
41136
|
kendo-grid.k-grid .k-table-row.k-selected.k-table-alt-row:hover .k-grid-content-sticky,
|
|
40886
41137
|
kendo-grid.k-grid .k-table-row.k-selected.k-table-alt-row.k-hover .k-grid-content-sticky,
|
|
41138
|
+
kendo-grid.k-grid .k-grid-row-sticky:hover td.k-selected,
|
|
41139
|
+
kendo-grid.k-grid .k-grid-row-sticky.k-hover td.k-selected,
|
|
40887
41140
|
kendo-grid.k-grid .k-grid-row-sticky:hover .k-table-td.k-selected,
|
|
40888
41141
|
kendo-grid.k-grid .k-grid-row-sticky.k-hover .k-table-td.k-selected,
|
|
40889
41142
|
kendo-grid.k-grid .k-table-row:hover .k-grid-content-sticky.k-selected,
|
|
@@ -42986,6 +43239,8 @@ kendo-grid.k-grid .k-table-row.k-hover .k-grid-content-sticky.k-selected {
|
|
|
42986
43239
|
transform: translate(0, -50%);
|
|
42987
43240
|
}
|
|
42988
43241
|
|
|
43242
|
+
.k-treelist .k-table-row.k-footer td,
|
|
43243
|
+
.k-treelist .k-table-row.k-footer-template td,
|
|
42989
43244
|
.k-treelist .k-table-row.k-footer .k-table-td,
|
|
42990
43245
|
.k-treelist .k-table-row.k-footer-template .k-table-td {
|
|
42991
43246
|
border-width: 1px 0;
|
|
@@ -42993,6 +43248,7 @@ kendo-grid.k-grid .k-table-row.k-hover .k-grid-content-sticky.k-selected {
|
|
|
42993
43248
|
font-weight: bold;
|
|
42994
43249
|
}
|
|
42995
43250
|
|
|
43251
|
+
.k-treelist .k-table-row.k-footer + .k-table-row.k-footer td,
|
|
42996
43252
|
.k-treelist .k-table-row.k-footer + .k-table-row.k-footer .k-table-td {
|
|
42997
43253
|
border-top-width: 0;
|
|
42998
43254
|
}
|