@progress/kendo-theme-material 7.0.3-dev.2 → 7.1.0-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +142 -109
- package/dist/all.scss +375 -176
- package/dist/meta/sassdoc-data.json +28176 -19494
- package/dist/meta/sassdoc-raw-data.json +13416 -9416
- package/dist/meta/variables.json +6 -62
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +5 -5
- package/scss/captcha/_variables.scss +29 -1
- package/scss/dropzone/_variables.scss +39 -1
- package/scss/filemanager/_variables.scss +116 -1
- package/scss/pdf-viewer/_variables.scss +67 -1
- package/scss/rating/_variables.scss +30 -0
- package/scss/skeleton/_variables.scss +13 -1
- package/scss/tooltip/_variables.scss +48 -16
package/dist/all.css
CHANGED
|
@@ -27356,6 +27356,7 @@ kendo-sortable {
|
|
|
27356
27356
|
.k-popup.k-popup-transparent {
|
|
27357
27357
|
border-width: 0;
|
|
27358
27358
|
background-color: transparent;
|
|
27359
|
+
box-shadow: none;
|
|
27359
27360
|
}
|
|
27360
27361
|
|
|
27361
27362
|
.k-popup.k-popup-flush {
|
|
@@ -32436,48 +32437,55 @@ kendo-label > .k-label {
|
|
|
32436
32437
|
pointer-events: none;
|
|
32437
32438
|
}
|
|
32438
32439
|
|
|
32439
|
-
.k-tooltip-wrapper .k-tooltip {
|
|
32440
|
-
box-shadow: var(--kendo-elevation-2, 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 3px 1px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.14));
|
|
32441
|
-
}
|
|
32442
|
-
|
|
32443
32440
|
.k-tooltip {
|
|
32444
32441
|
border-color: rgba(97, 97, 97, 0.9);
|
|
32445
32442
|
color: #ffffff;
|
|
32446
32443
|
background-color: rgba(97, 97, 97, 0.9);
|
|
32444
|
+
box-shadow: var(--kendo-elevation-2, 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 3px 1px 0px rgba(0, 0, 0, 0.12), 0px 2px 2px 0px rgba(0, 0, 0, 0.14));
|
|
32447
32445
|
}
|
|
32448
32446
|
|
|
32449
32447
|
.k-tooltip .k-callout {
|
|
32450
32448
|
color: rgba(97, 97, 97, 0.9);
|
|
32451
32449
|
}
|
|
32452
32450
|
|
|
32453
|
-
.k-tooltip-
|
|
32454
|
-
border-color: #
|
|
32451
|
+
.k-tooltip-inverse {
|
|
32452
|
+
border-color: #424242;
|
|
32455
32453
|
color: white;
|
|
32456
|
-
background-color: #
|
|
32454
|
+
background-color: #424242;
|
|
32457
32455
|
}
|
|
32458
32456
|
|
|
32459
|
-
.k-tooltip-
|
|
32460
|
-
color: #
|
|
32457
|
+
.k-tooltip-inverse .k-callout {
|
|
32458
|
+
color: #424242;
|
|
32461
32459
|
}
|
|
32462
32460
|
|
|
32463
|
-
.k-tooltip-
|
|
32464
|
-
border-color: #
|
|
32461
|
+
.k-tooltip-light {
|
|
32462
|
+
border-color: #f5f5f5;
|
|
32463
|
+
color: black;
|
|
32464
|
+
background-color: #f5f5f5;
|
|
32465
|
+
}
|
|
32466
|
+
|
|
32467
|
+
.k-tooltip-light .k-callout {
|
|
32468
|
+
color: #f5f5f5;
|
|
32469
|
+
}
|
|
32470
|
+
|
|
32471
|
+
.k-tooltip-dark {
|
|
32472
|
+
border-color: #424242;
|
|
32465
32473
|
color: white;
|
|
32466
|
-
background-color: #
|
|
32474
|
+
background-color: #424242;
|
|
32467
32475
|
}
|
|
32468
32476
|
|
|
32469
|
-
.k-tooltip-
|
|
32470
|
-
color: #
|
|
32477
|
+
.k-tooltip-dark .k-callout {
|
|
32478
|
+
color: #424242;
|
|
32471
32479
|
}
|
|
32472
32480
|
|
|
32473
|
-
.k-tooltip-
|
|
32474
|
-
border-color: #
|
|
32481
|
+
.k-tooltip-error {
|
|
32482
|
+
border-color: #f31700;
|
|
32475
32483
|
color: black;
|
|
32476
|
-
background-color: #
|
|
32484
|
+
background-color: #f31700;
|
|
32477
32485
|
}
|
|
32478
32486
|
|
|
32479
|
-
.k-tooltip-
|
|
32480
|
-
color: #
|
|
32487
|
+
.k-tooltip-error .k-callout {
|
|
32488
|
+
color: #f31700;
|
|
32481
32489
|
}
|
|
32482
32490
|
|
|
32483
32491
|
.k-tooltip-warning {
|
|
@@ -32490,14 +32498,54 @@ kendo-label > .k-label {
|
|
|
32490
32498
|
color: #ffc000;
|
|
32491
32499
|
}
|
|
32492
32500
|
|
|
32493
|
-
.k-tooltip-
|
|
32494
|
-
border-color: #
|
|
32501
|
+
.k-tooltip-success {
|
|
32502
|
+
border-color: #37b400;
|
|
32495
32503
|
color: black;
|
|
32496
|
-
background-color: #
|
|
32504
|
+
background-color: #37b400;
|
|
32497
32505
|
}
|
|
32498
32506
|
|
|
32499
|
-
.k-tooltip-
|
|
32500
|
-
color: #
|
|
32507
|
+
.k-tooltip-success .k-callout {
|
|
32508
|
+
color: #37b400;
|
|
32509
|
+
}
|
|
32510
|
+
|
|
32511
|
+
.k-tooltip-info {
|
|
32512
|
+
border-color: #0058e9;
|
|
32513
|
+
color: white;
|
|
32514
|
+
background-color: #0058e9;
|
|
32515
|
+
}
|
|
32516
|
+
|
|
32517
|
+
.k-tooltip-info .k-callout {
|
|
32518
|
+
color: #0058e9;
|
|
32519
|
+
}
|
|
32520
|
+
|
|
32521
|
+
.k-tooltip-tertiary {
|
|
32522
|
+
border-color: #00695c;
|
|
32523
|
+
color: white;
|
|
32524
|
+
background-color: #00695c;
|
|
32525
|
+
}
|
|
32526
|
+
|
|
32527
|
+
.k-tooltip-tertiary .k-callout {
|
|
32528
|
+
color: #00695c;
|
|
32529
|
+
}
|
|
32530
|
+
|
|
32531
|
+
.k-tooltip-secondary {
|
|
32532
|
+
border-color: #e51a5f;
|
|
32533
|
+
color: white;
|
|
32534
|
+
background-color: #e51a5f;
|
|
32535
|
+
}
|
|
32536
|
+
|
|
32537
|
+
.k-tooltip-secondary .k-callout {
|
|
32538
|
+
color: #e51a5f;
|
|
32539
|
+
}
|
|
32540
|
+
|
|
32541
|
+
.k-tooltip-primary {
|
|
32542
|
+
border-color: #3f51b5;
|
|
32543
|
+
color: white;
|
|
32544
|
+
background-color: #3f51b5;
|
|
32545
|
+
}
|
|
32546
|
+
|
|
32547
|
+
.k-tooltip-primary .k-callout {
|
|
32548
|
+
color: #3f51b5;
|
|
32501
32549
|
}
|
|
32502
32550
|
|
|
32503
32551
|
.k-validator-tooltip {
|
|
@@ -34449,16 +34497,6 @@ select.k-picker-lg {
|
|
|
34449
34497
|
cursor: default;
|
|
34450
34498
|
}
|
|
34451
34499
|
|
|
34452
|
-
.k-slider-wrap {
|
|
34453
|
-
width: 100%;
|
|
34454
|
-
height: 100%;
|
|
34455
|
-
display: flex;
|
|
34456
|
-
flex-flow: inherit;
|
|
34457
|
-
align-items: inherit;
|
|
34458
|
-
gap: inherit;
|
|
34459
|
-
position: relative;
|
|
34460
|
-
}
|
|
34461
|
-
|
|
34462
34500
|
.k-slider {
|
|
34463
34501
|
width: min-content;
|
|
34464
34502
|
height: min-content;
|
|
@@ -34871,16 +34909,6 @@ select.k-picker-lg {
|
|
|
34871
34909
|
position: absolute;
|
|
34872
34910
|
}
|
|
34873
34911
|
|
|
34874
|
-
.k-slider-horizontal .k-slider-wrap:not(.k-slider-buttons) {
|
|
34875
|
-
padding-inline-start: 7px;
|
|
34876
|
-
padding-inline-end: 7px;
|
|
34877
|
-
}
|
|
34878
|
-
|
|
34879
|
-
.k-slider-vertical .k-slider-wrap:not(.k-slider-buttons) {
|
|
34880
|
-
padding-top: 7px;
|
|
34881
|
-
padding-bottom: 7px;
|
|
34882
|
-
}
|
|
34883
|
-
|
|
34884
34912
|
.k-slider .k-tick {
|
|
34885
34913
|
margin: 0;
|
|
34886
34914
|
}
|
|
@@ -36169,7 +36197,6 @@ select.k-picker-lg {
|
|
|
36169
36197
|
z-index: -1;
|
|
36170
36198
|
}
|
|
36171
36199
|
|
|
36172
|
-
.k-colorgradient-slider .k-slider-wrap,
|
|
36173
36200
|
.k-colorgradient-slider .k-slider-track-wrap {
|
|
36174
36201
|
z-index: 1;
|
|
36175
36202
|
}
|
|
@@ -39351,6 +39378,14 @@ kendo-card-footer {
|
|
|
39351
39378
|
box-sizing: border-box;
|
|
39352
39379
|
}
|
|
39353
39380
|
|
|
39381
|
+
.k-card .k-card-avatar,
|
|
39382
|
+
.k-card .k-avatar {
|
|
39383
|
+
margin-right: 16px;
|
|
39384
|
+
width: 45px;
|
|
39385
|
+
height: 45px;
|
|
39386
|
+
flex-basis: 45px;
|
|
39387
|
+
}
|
|
39388
|
+
|
|
39354
39389
|
.k-card > .k-card-inner {
|
|
39355
39390
|
border-radius: 4px;
|
|
39356
39391
|
display: flex;
|
|
@@ -39418,15 +39453,6 @@ kendo-card-footer {
|
|
|
39418
39453
|
padding: 0;
|
|
39419
39454
|
}
|
|
39420
39455
|
|
|
39421
|
-
.k-card-avatar,
|
|
39422
|
-
.k-card .k-avatar {
|
|
39423
|
-
margin-right: 16px;
|
|
39424
|
-
width: 45px;
|
|
39425
|
-
height: 45px;
|
|
39426
|
-
flex-basis: 45px;
|
|
39427
|
-
}
|
|
39428
|
-
|
|
39429
|
-
.k-card-image,
|
|
39430
39456
|
.k-card-media {
|
|
39431
39457
|
border: 0;
|
|
39432
39458
|
max-width: 100%;
|
|
@@ -39434,14 +39460,7 @@ kendo-card-footer {
|
|
|
39434
39460
|
overflow: hidden;
|
|
39435
39461
|
}
|
|
39436
39462
|
|
|
39437
|
-
.k-card-
|
|
39438
|
-
.k-card-media > img {
|
|
39439
|
-
border: 0;
|
|
39440
|
-
max-width: 100%;
|
|
39441
|
-
}
|
|
39442
|
-
|
|
39443
|
-
.k-card-horizontal .k-card-image, .k-card-horizontal
|
|
39444
|
-
.k-card-media {
|
|
39463
|
+
.k-card-horizontal .k-card-media {
|
|
39445
39464
|
max-width: 100px;
|
|
39446
39465
|
object-fit: cover;
|
|
39447
39466
|
}
|
|
@@ -39472,16 +39491,16 @@ kendo-card-footer {
|
|
|
39472
39491
|
align-self: stretch;
|
|
39473
39492
|
}
|
|
39474
39493
|
|
|
39475
|
-
.k-card-separator.k-separator-vertical,
|
|
39476
|
-
.k-card-horizontal > .k-card-separator {
|
|
39477
|
-
border-left-width: 1px;
|
|
39478
|
-
}
|
|
39479
|
-
|
|
39480
39494
|
.k-card-separator.k-separator-horizontal,
|
|
39481
39495
|
.k-card-vertical > .k-card-separator {
|
|
39482
39496
|
border-top-width: 1px;
|
|
39483
39497
|
}
|
|
39484
39498
|
|
|
39499
|
+
.k-card-separator.k-separator-vertical,
|
|
39500
|
+
.k-card-horizontal > .k-card-separator {
|
|
39501
|
+
border-left-width: 1px;
|
|
39502
|
+
}
|
|
39503
|
+
|
|
39485
39504
|
.k-card > .k-hr {
|
|
39486
39505
|
margin: 0;
|
|
39487
39506
|
flex: 0 0 auto;
|
|
@@ -39501,37 +39520,6 @@ kendo-card-footer {
|
|
|
39501
39520
|
gap: 8px;
|
|
39502
39521
|
}
|
|
39503
39522
|
|
|
39504
|
-
.k-card-actions-start {
|
|
39505
|
-
justify-content: flex-start;
|
|
39506
|
-
}
|
|
39507
|
-
|
|
39508
|
-
.k-card-actions-end {
|
|
39509
|
-
justify-content: flex-end;
|
|
39510
|
-
}
|
|
39511
|
-
|
|
39512
|
-
.k-card-actions-center {
|
|
39513
|
-
justify-content: center;
|
|
39514
|
-
}
|
|
39515
|
-
|
|
39516
|
-
.k-card-actions-horizontal {
|
|
39517
|
-
flex-flow: row nowrap;
|
|
39518
|
-
}
|
|
39519
|
-
|
|
39520
|
-
.k-card-actions-vertical {
|
|
39521
|
-
flex-flow: column nowrap;
|
|
39522
|
-
}
|
|
39523
|
-
|
|
39524
|
-
.k-card-actions-stretched > * {
|
|
39525
|
-
flex: 1 1 auto;
|
|
39526
|
-
}
|
|
39527
|
-
|
|
39528
|
-
.k-card-action {
|
|
39529
|
-
border-width: 0;
|
|
39530
|
-
border-style: solid;
|
|
39531
|
-
border-color: inherit;
|
|
39532
|
-
display: inline-flex;
|
|
39533
|
-
}
|
|
39534
|
-
|
|
39535
39523
|
.k-card-list {
|
|
39536
39524
|
display: flex;
|
|
39537
39525
|
flex-flow: column nowrap;
|
|
@@ -42296,17 +42284,6 @@ kendo-card-footer {
|
|
|
42296
42284
|
border-width: 1px 0 0;
|
|
42297
42285
|
}
|
|
42298
42286
|
|
|
42299
|
-
@supports (not (-ms-ime-mode: none)) and (not (overflow: -webkit-marquee)) and (not (-moz-appearance: none)) {
|
|
42300
|
-
.k-dock-manager-toolbar .k-toolbar-button {
|
|
42301
|
-
padding-block: 16px;
|
|
42302
|
-
padding-inline: 8px;
|
|
42303
|
-
}
|
|
42304
|
-
.k-dock-manager-toolbar .k-toolbar-button .k-button-text {
|
|
42305
|
-
-ms-writing-mode: tb-lr;
|
|
42306
|
-
writing-mode: vertical-lr;
|
|
42307
|
-
}
|
|
42308
|
-
}
|
|
42309
|
-
|
|
42310
42287
|
.k-dock-manager-pane-container {
|
|
42311
42288
|
width: 100%;
|
|
42312
42289
|
height: 100%;
|
|
@@ -43905,27 +43882,33 @@ div.k-grid-norecords {
|
|
|
43905
43882
|
overflow: hidden;
|
|
43906
43883
|
}
|
|
43907
43884
|
|
|
43885
|
+
.k-grid .k-grid-sm .k-table-th,
|
|
43908
43886
|
.k-grid-sm .k-table-th {
|
|
43909
43887
|
padding-block: 10px;
|
|
43910
43888
|
padding-inline: 10px;
|
|
43911
43889
|
}
|
|
43912
43890
|
|
|
43891
|
+
.k-grid .k-grid-sm td,
|
|
43892
|
+
.k-grid .k-grid-sm .k-table-td,
|
|
43913
43893
|
.k-grid-sm td,
|
|
43914
43894
|
.k-grid-sm .k-table-td {
|
|
43915
43895
|
padding-block: 4px;
|
|
43916
43896
|
padding-inline: 10px;
|
|
43917
43897
|
}
|
|
43918
43898
|
|
|
43899
|
+
.k-grid .k-grid-sm .k-grouping-header,
|
|
43919
43900
|
.k-grid-sm .k-grouping-header {
|
|
43920
43901
|
padding-block: 6px;
|
|
43921
43902
|
padding-inline: 6px;
|
|
43922
43903
|
gap: 6px;
|
|
43923
43904
|
}
|
|
43924
43905
|
|
|
43906
|
+
.k-grid .k-grid-sm .k-grouping-header::before,
|
|
43925
43907
|
.k-grid-sm .k-grouping-header::before {
|
|
43926
43908
|
margin-inline-start: -6px;
|
|
43927
43909
|
}
|
|
43928
43910
|
|
|
43911
|
+
.k-grid .k-grid-sm .k-grid-header .k-table-th > .k-link,
|
|
43929
43912
|
.k-grid-sm .k-grid-header .k-table-th > .k-link {
|
|
43930
43913
|
margin-block: -10px;
|
|
43931
43914
|
margin-inline: -10px;
|
|
@@ -43933,6 +43916,9 @@ div.k-grid-norecords {
|
|
|
43933
43916
|
padding-inline: 10px;
|
|
43934
43917
|
}
|
|
43935
43918
|
|
|
43919
|
+
.k-grid .k-grid-sm .k-grid-header .k-grid-filter,
|
|
43920
|
+
.k-grid .k-grid-sm .k-grid-header .k-header-column-menu,
|
|
43921
|
+
.k-grid .k-grid-sm .k-grid-header .k-grid-header-menu,
|
|
43936
43922
|
.k-grid-sm .k-grid-header .k-grid-filter,
|
|
43937
43923
|
.k-grid-sm .k-grid-header .k-header-column-menu,
|
|
43938
43924
|
.k-grid-sm .k-grid-header .k-grid-header-menu {
|
|
@@ -43942,35 +43928,47 @@ div.k-grid-norecords {
|
|
|
43942
43928
|
bottom: calc(2px + 0.2857142857em);
|
|
43943
43929
|
}
|
|
43944
43930
|
|
|
43931
|
+
.k-grid .k-grid-sm .k-table-th > .k-cell-inner,
|
|
43945
43932
|
.k-grid-sm .k-table-th > .k-cell-inner {
|
|
43946
43933
|
margin-block: -10px;
|
|
43947
43934
|
margin-inline: -10px;
|
|
43948
43935
|
}
|
|
43949
43936
|
|
|
43937
|
+
.k-grid .k-grid-sm .k-table-th > .k-cell-inner > .k-link,
|
|
43950
43938
|
.k-grid-sm .k-table-th > .k-cell-inner > .k-link {
|
|
43951
43939
|
padding-block: 10px;
|
|
43952
43940
|
padding-inline: 10px;
|
|
43953
43941
|
}
|
|
43954
43942
|
|
|
43943
|
+
.k-grid .k-grid-sm .k-grouping-row .k-icon,
|
|
43955
43944
|
.k-grid-sm .k-grouping-row .k-icon {
|
|
43956
43945
|
margin-inline-start: -2px;
|
|
43957
43946
|
}
|
|
43958
43947
|
|
|
43948
|
+
.k-grid .k-grid-sm .k-grouping-dropclue,
|
|
43959
43949
|
.k-grid-sm .k-grouping-dropclue {
|
|
43960
43950
|
height: calc(1.2857142857em + 12px);
|
|
43961
43951
|
}
|
|
43962
43952
|
|
|
43953
|
+
.k-grid .k-grid-sm .k-hierarchy-cell,
|
|
43954
|
+
.k-grid .k-grid-sm .k-drag-cell,
|
|
43963
43955
|
.k-grid-sm .k-hierarchy-cell,
|
|
43964
43956
|
.k-grid-sm .k-drag-cell {
|
|
43965
43957
|
padding: 0;
|
|
43966
43958
|
}
|
|
43967
43959
|
|
|
43960
|
+
.k-grid .k-grid-sm .k-hierarchy-cell > .k-icon,
|
|
43961
|
+
.k-grid .k-grid-sm .k-drag-cell > .k-icon,
|
|
43968
43962
|
.k-grid-sm .k-hierarchy-cell > .k-icon,
|
|
43969
43963
|
.k-grid-sm .k-drag-cell > .k-icon {
|
|
43970
43964
|
padding-block: 4px;
|
|
43971
43965
|
padding-inline: 0;
|
|
43972
43966
|
}
|
|
43973
43967
|
|
|
43968
|
+
.k-grid .k-grid-sm .k-edit-cell,
|
|
43969
|
+
.k-grid .k-grid-sm .k-command-cell,
|
|
43970
|
+
.k-grid .k-grid-sm .k-grid-edit-row td,
|
|
43971
|
+
.k-grid .k-grid-sm .k-grid-edit-row .k-table-td,
|
|
43974
43972
|
.k-grid-sm .k-edit-cell,
|
|
43975
43973
|
.k-grid-sm .k-command-cell,
|
|
43976
43974
|
.k-grid-sm .k-grid-edit-row td,
|
|
@@ -43979,6 +43977,9 @@ div.k-grid-norecords {
|
|
|
43979
43977
|
padding-inline: 10px;
|
|
43980
43978
|
}
|
|
43981
43979
|
|
|
43980
|
+
.k-grid .k-grid-sm .k-filter-row td,
|
|
43981
|
+
.k-grid .k-grid-sm .k-filter-row .k-table-td,
|
|
43982
|
+
.k-grid .k-grid-sm .k-filter-row .k-table-th,
|
|
43982
43983
|
.k-grid-sm .k-filter-row td,
|
|
43983
43984
|
.k-grid-sm .k-filter-row .k-table-td,
|
|
43984
43985
|
.k-grid-sm .k-filter-row .k-table-th {
|
|
@@ -43986,16 +43987,20 @@ div.k-grid-norecords {
|
|
|
43986
43987
|
padding-inline: 10px;
|
|
43987
43988
|
}
|
|
43988
43989
|
|
|
43990
|
+
.k-grid .k-grid-sm .k-filtercell > span,
|
|
43991
|
+
.k-grid .k-grid-sm .k-filtercell .k-filtercell-wrapper,
|
|
43989
43992
|
.k-grid-sm .k-filtercell > span,
|
|
43990
43993
|
.k-grid-sm .k-filtercell .k-filtercell-wrapper {
|
|
43991
43994
|
gap: 2px;
|
|
43992
43995
|
}
|
|
43993
43996
|
|
|
43997
|
+
.k-grid .k-grid-sm .k-selection-aggregates,
|
|
43994
43998
|
.k-grid-sm .k-selection-aggregates {
|
|
43995
43999
|
padding-block: 4px;
|
|
43996
44000
|
padding-inline: 4px;
|
|
43997
44001
|
}
|
|
43998
44002
|
|
|
44003
|
+
.k-grid .k-grid-sm .k-resizer-wrap,
|
|
43999
44004
|
.k-grid-sm .k-resizer-wrap {
|
|
44000
44005
|
display: block;
|
|
44001
44006
|
width: 100%;
|
|
@@ -44007,27 +44012,33 @@ div.k-grid-norecords {
|
|
|
44007
44012
|
z-index: 2;
|
|
44008
44013
|
}
|
|
44009
44014
|
|
|
44015
|
+
.k-grid .k-grid-md .k-table-th,
|
|
44010
44016
|
.k-grid-md .k-table-th {
|
|
44011
44017
|
padding-block: 16px;
|
|
44012
44018
|
padding-inline: 24px;
|
|
44013
44019
|
}
|
|
44014
44020
|
|
|
44021
|
+
.k-grid .k-grid-md td,
|
|
44022
|
+
.k-grid .k-grid-md .k-table-td,
|
|
44015
44023
|
.k-grid-md td,
|
|
44016
44024
|
.k-grid-md .k-table-td {
|
|
44017
44025
|
padding-block: 10px;
|
|
44018
44026
|
padding-inline: 24px;
|
|
44019
44027
|
}
|
|
44020
44028
|
|
|
44029
|
+
.k-grid .k-grid-md .k-grouping-header,
|
|
44021
44030
|
.k-grid-md .k-grouping-header {
|
|
44022
44031
|
padding-block: 8px;
|
|
44023
44032
|
padding-inline: 8px;
|
|
44024
44033
|
gap: 8px;
|
|
44025
44034
|
}
|
|
44026
44035
|
|
|
44036
|
+
.k-grid .k-grid-md .k-grouping-header::before,
|
|
44027
44037
|
.k-grid-md .k-grouping-header::before {
|
|
44028
44038
|
margin-inline-start: -8px;
|
|
44029
44039
|
}
|
|
44030
44040
|
|
|
44041
|
+
.k-grid .k-grid-md .k-grid-header .k-table-th > .k-link,
|
|
44031
44042
|
.k-grid-md .k-grid-header .k-table-th > .k-link {
|
|
44032
44043
|
margin-block: -16px;
|
|
44033
44044
|
margin-inline: -24px;
|
|
@@ -44035,6 +44046,9 @@ div.k-grid-norecords {
|
|
|
44035
44046
|
padding-inline: 24px;
|
|
44036
44047
|
}
|
|
44037
44048
|
|
|
44049
|
+
.k-grid .k-grid-md .k-grid-header .k-grid-filter,
|
|
44050
|
+
.k-grid .k-grid-md .k-grid-header .k-header-column-menu,
|
|
44051
|
+
.k-grid .k-grid-md .k-grid-header .k-grid-header-menu,
|
|
44038
44052
|
.k-grid-md .k-grid-header .k-grid-filter,
|
|
44039
44053
|
.k-grid-md .k-grid-header .k-header-column-menu,
|
|
44040
44054
|
.k-grid-md .k-grid-header .k-grid-header-menu {
|
|
@@ -44044,35 +44058,47 @@ div.k-grid-norecords {
|
|
|
44044
44058
|
bottom: calc(8px + 0.2857142857em);
|
|
44045
44059
|
}
|
|
44046
44060
|
|
|
44061
|
+
.k-grid .k-grid-md .k-table-th > .k-cell-inner,
|
|
44047
44062
|
.k-grid-md .k-table-th > .k-cell-inner {
|
|
44048
44063
|
margin-block: -16px;
|
|
44049
44064
|
margin-inline: -24px;
|
|
44050
44065
|
}
|
|
44051
44066
|
|
|
44067
|
+
.k-grid .k-grid-md .k-table-th > .k-cell-inner > .k-link,
|
|
44052
44068
|
.k-grid-md .k-table-th > .k-cell-inner > .k-link {
|
|
44053
44069
|
padding-block: 16px;
|
|
44054
44070
|
padding-inline: 24px;
|
|
44055
44071
|
}
|
|
44056
44072
|
|
|
44073
|
+
.k-grid .k-grid-md .k-grouping-row .k-icon,
|
|
44057
44074
|
.k-grid-md .k-grouping-row .k-icon {
|
|
44058
44075
|
margin-inline-start: -16px;
|
|
44059
44076
|
}
|
|
44060
44077
|
|
|
44078
|
+
.k-grid .k-grid-md .k-grouping-dropclue,
|
|
44061
44079
|
.k-grid-md .k-grouping-dropclue {
|
|
44062
44080
|
height: calc(1.2857142857em + 10px);
|
|
44063
44081
|
}
|
|
44064
44082
|
|
|
44083
|
+
.k-grid .k-grid-md .k-hierarchy-cell,
|
|
44084
|
+
.k-grid .k-grid-md .k-drag-cell,
|
|
44065
44085
|
.k-grid-md .k-hierarchy-cell,
|
|
44066
44086
|
.k-grid-md .k-drag-cell {
|
|
44067
44087
|
padding: 0;
|
|
44068
44088
|
}
|
|
44069
44089
|
|
|
44090
|
+
.k-grid .k-grid-md .k-hierarchy-cell > .k-icon,
|
|
44091
|
+
.k-grid .k-grid-md .k-drag-cell > .k-icon,
|
|
44070
44092
|
.k-grid-md .k-hierarchy-cell > .k-icon,
|
|
44071
44093
|
.k-grid-md .k-drag-cell > .k-icon {
|
|
44072
44094
|
padding-block: 10px;
|
|
44073
44095
|
padding-inline: 0;
|
|
44074
44096
|
}
|
|
44075
44097
|
|
|
44098
|
+
.k-grid .k-grid-md .k-edit-cell,
|
|
44099
|
+
.k-grid .k-grid-md .k-command-cell,
|
|
44100
|
+
.k-grid .k-grid-md .k-grid-edit-row td,
|
|
44101
|
+
.k-grid .k-grid-md .k-grid-edit-row .k-table-td,
|
|
44076
44102
|
.k-grid-md .k-edit-cell,
|
|
44077
44103
|
.k-grid-md .k-command-cell,
|
|
44078
44104
|
.k-grid-md .k-grid-edit-row td,
|
|
@@ -44081,6 +44107,9 @@ div.k-grid-norecords {
|
|
|
44081
44107
|
padding-inline: 24px;
|
|
44082
44108
|
}
|
|
44083
44109
|
|
|
44110
|
+
.k-grid .k-grid-md .k-filter-row td,
|
|
44111
|
+
.k-grid .k-grid-md .k-filter-row .k-table-td,
|
|
44112
|
+
.k-grid .k-grid-md .k-filter-row .k-table-th,
|
|
44084
44113
|
.k-grid-md .k-filter-row td,
|
|
44085
44114
|
.k-grid-md .k-filter-row .k-table-td,
|
|
44086
44115
|
.k-grid-md .k-filter-row .k-table-th {
|
|
@@ -44088,16 +44117,20 @@ div.k-grid-norecords {
|
|
|
44088
44117
|
padding-inline: 24px;
|
|
44089
44118
|
}
|
|
44090
44119
|
|
|
44120
|
+
.k-grid .k-grid-md .k-filtercell > span,
|
|
44121
|
+
.k-grid .k-grid-md .k-filtercell .k-filtercell-wrapper,
|
|
44091
44122
|
.k-grid-md .k-filtercell > span,
|
|
44092
44123
|
.k-grid-md .k-filtercell .k-filtercell-wrapper {
|
|
44093
44124
|
gap: 5px;
|
|
44094
44125
|
}
|
|
44095
44126
|
|
|
44127
|
+
.k-grid .k-grid-md .k-selection-aggregates,
|
|
44096
44128
|
.k-grid-md .k-selection-aggregates {
|
|
44097
44129
|
padding-block: 8px;
|
|
44098
44130
|
padding-inline: 8px;
|
|
44099
44131
|
}
|
|
44100
44132
|
|
|
44133
|
+
.k-grid .k-grid-md .k-resizer-wrap,
|
|
44101
44134
|
.k-grid-md .k-resizer-wrap {
|
|
44102
44135
|
display: block;
|
|
44103
44136
|
width: 100%;
|