@progress/kendo-theme-material 5.12.1-dev.3 → 5.12.1-dev.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +267 -17
- package/dist/all.scss +144 -23
- 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/grid/_layout.scss +1 -0
- package/scss/grid/_theme.scss +21 -0
package/dist/all.scss
CHANGED
|
@@ -9369,6 +9369,11 @@ $ki-rotate-map: (
|
|
|
9369
9369
|
}
|
|
9370
9370
|
}
|
|
9371
9371
|
|
|
9372
|
+
// kendo-icon-wrapper component
|
|
9373
|
+
.k-icon-wrapper-host {
|
|
9374
|
+
display: contents;
|
|
9375
|
+
}
|
|
9376
|
+
|
|
9372
9377
|
.k-icon-with-modifier {
|
|
9373
9378
|
position: relative;
|
|
9374
9379
|
margin: .25em;
|
|
@@ -14359,6 +14364,45 @@ $kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
|
|
|
14359
14364
|
> .k-button-icon {
|
|
14360
14365
|
min-width: calc( #{$_font-size} * #{$_line-height} );
|
|
14361
14366
|
min-height: calc( #{$_font-size} * #{$_line-height} );
|
|
14367
|
+
display: inline-flex;
|
|
14368
|
+
align-items: center;
|
|
14369
|
+
justify-content: center;
|
|
14370
|
+
|
|
14371
|
+
&.k-svg-icon > svg,
|
|
14372
|
+
&.k-icon-md > svg {
|
|
14373
|
+
width: $kendo-icon-size-md;
|
|
14374
|
+
height: $kendo-icon-size-md;
|
|
14375
|
+
}
|
|
14376
|
+
|
|
14377
|
+
&.k-icon-xs > svg {
|
|
14378
|
+
width: $kendo-icon-size-xs;
|
|
14379
|
+
height: $kendo-icon-size-xs;
|
|
14380
|
+
}
|
|
14381
|
+
|
|
14382
|
+
&.k-icon-sm > svg {
|
|
14383
|
+
width: $kendo-icon-size-sm;
|
|
14384
|
+
height: $kendo-icon-size-sm;
|
|
14385
|
+
}
|
|
14386
|
+
|
|
14387
|
+
&.k-icon-lg > svg {
|
|
14388
|
+
width: $kendo-icon-size-lg;
|
|
14389
|
+
height: $kendo-icon-size-lg;
|
|
14390
|
+
}
|
|
14391
|
+
|
|
14392
|
+
&.k-icon-xl > svg {
|
|
14393
|
+
width: $kendo-icon-size-xl;
|
|
14394
|
+
height: $kendo-icon-size-xl;
|
|
14395
|
+
}
|
|
14396
|
+
|
|
14397
|
+
&.k-icon-xxl > svg {
|
|
14398
|
+
width: $kendo-icon-size-xxl;
|
|
14399
|
+
height: $kendo-icon-size-xxl;
|
|
14400
|
+
}
|
|
14401
|
+
|
|
14402
|
+
&.k-icon-xxxl > svg {
|
|
14403
|
+
width: $kendo-icon-size-xxxl;
|
|
14404
|
+
height: $kendo-icon-size-xxxl;
|
|
14405
|
+
}
|
|
14362
14406
|
}
|
|
14363
14407
|
}
|
|
14364
14408
|
}
|
|
@@ -18030,7 +18074,7 @@ $kendo-form-sizes: (
|
|
|
18030
18074
|
position: relative;
|
|
18031
18075
|
aspect-ratio: auto;
|
|
18032
18076
|
|
|
18033
|
-
|
|
18077
|
+
.k-button-icon {
|
|
18034
18078
|
margin: -1em 0;
|
|
18035
18079
|
min-width: auto !important; // sass-lint:disable-line no-important
|
|
18036
18080
|
min-height: auto !important; // sass-lint:disable-line no-important
|
|
@@ -23248,8 +23292,9 @@ $kendo-color-gradient-contrast-spacer: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
23248
23292
|
}
|
|
23249
23293
|
|
|
23250
23294
|
// Needed for the double check icons
|
|
23251
|
-
.k-icon + .k-icon
|
|
23252
|
-
|
|
23295
|
+
.k-icon + .k-icon,
|
|
23296
|
+
.k-icon-wrapper-host + .k-icon-wrapper-host .k-icon {
|
|
23297
|
+
margin-inline-start: -13px;
|
|
23253
23298
|
}
|
|
23254
23299
|
}
|
|
23255
23300
|
}
|
|
@@ -23263,19 +23308,6 @@ $kendo-color-gradient-contrast-spacer: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
23263
23308
|
|
|
23264
23309
|
}
|
|
23265
23310
|
|
|
23266
|
-
@include exports( "colorgradient/layout/rtl" ) {
|
|
23267
|
-
|
|
23268
|
-
.k-rtl,
|
|
23269
|
-
[dir="rtl"] {
|
|
23270
|
-
|
|
23271
|
-
.k-colorgradient-color-contrast .k-i-check + .k-i-check {
|
|
23272
|
-
margin-left: 0;
|
|
23273
|
-
margin-right: -13px;
|
|
23274
|
-
}
|
|
23275
|
-
|
|
23276
|
-
}
|
|
23277
|
-
|
|
23278
|
-
}
|
|
23279
23311
|
|
|
23280
23312
|
// #endregion
|
|
23281
23313
|
|
|
@@ -34014,6 +34046,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
34014
34046
|
}
|
|
34015
34047
|
|
|
34016
34048
|
.k-table-th,
|
|
34049
|
+
td,
|
|
34017
34050
|
.k-table-td {
|
|
34018
34051
|
border-width: 0;
|
|
34019
34052
|
border-inline-start-width: $kendo-grid-cell-vertical-border-width;
|
|
@@ -34052,6 +34085,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
34052
34085
|
white-space: nowrap;
|
|
34053
34086
|
}
|
|
34054
34087
|
|
|
34088
|
+
td,
|
|
34055
34089
|
.k-table-td {
|
|
34056
34090
|
border-block-end-width: $kendo-grid-cell-horizontal-border-width;
|
|
34057
34091
|
white-space: unset;
|
|
@@ -34208,12 +34242,17 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
34208
34242
|
align-items: center;
|
|
34209
34243
|
align-content: center;
|
|
34210
34244
|
}
|
|
34245
|
+
|
|
34246
|
+
.k-grouping-row td,
|
|
34211
34247
|
.k-grouping-row .k-table-td {
|
|
34212
34248
|
overflow: visible;
|
|
34213
34249
|
}
|
|
34250
|
+
|
|
34251
|
+
.k-grouping-row + .k-table-row td,
|
|
34214
34252
|
.k-grouping-row + .k-table-row .k-table-td {
|
|
34215
34253
|
border-top-width: $kendo-grid-grouping-row-border-top;
|
|
34216
34254
|
}
|
|
34255
|
+
|
|
34217
34256
|
.k-grouping-row .k-group-cell,
|
|
34218
34257
|
.k-grouping-row + .k-table-row .k-group-cell {
|
|
34219
34258
|
border-top-width: 0;
|
|
@@ -34226,11 +34265,13 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
34226
34265
|
text-decoration: none;
|
|
34227
34266
|
}
|
|
34228
34267
|
|
|
34268
|
+
.k-table .k-group-footer td,
|
|
34229
34269
|
.k-table .k-group-footer .k-table-td {
|
|
34230
34270
|
border-style: solid;
|
|
34231
34271
|
border-width: $kendo-grid-group-footer-border-y 0;
|
|
34232
34272
|
}
|
|
34233
34273
|
|
|
34274
|
+
.k-group-footer .k-group-cell + td,
|
|
34234
34275
|
.k-group-footer .k-group-cell + .k-table-td {
|
|
34235
34276
|
border-inline-start-width: $kendo-grid-cell-vertical-border-width;
|
|
34236
34277
|
}
|
|
@@ -34435,11 +34476,15 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
34435
34476
|
.k-grid-footer {
|
|
34436
34477
|
border-top-width: 1px;
|
|
34437
34478
|
|
|
34479
|
+
td,
|
|
34438
34480
|
.k-table-td {
|
|
34439
34481
|
height: $kendo-line-height-em;
|
|
34440
34482
|
}
|
|
34441
34483
|
}
|
|
34442
34484
|
|
|
34485
|
+
.k-grid-footer td,
|
|
34486
|
+
.k-group-footer td,
|
|
34487
|
+
.k-grouping-row td,
|
|
34443
34488
|
.k-grid-footer .k-table-td,
|
|
34444
34489
|
.k-group-footer .k-table-td,
|
|
34445
34490
|
.k-grouping-row .k-table-td {
|
|
@@ -34462,6 +34507,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
34462
34507
|
.k-filter-row {
|
|
34463
34508
|
line-height: $kendo-form-line-height;
|
|
34464
34509
|
|
|
34510
|
+
td,
|
|
34465
34511
|
.k-table-td,
|
|
34466
34512
|
.k-table-th {
|
|
34467
34513
|
border-width: 0;
|
|
@@ -34470,6 +34516,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
34470
34516
|
white-space: nowrap;
|
|
34471
34517
|
}
|
|
34472
34518
|
|
|
34519
|
+
td:first-child,
|
|
34473
34520
|
.k-table-td:first-child {
|
|
34474
34521
|
border-inline-start-width: 0;
|
|
34475
34522
|
}
|
|
@@ -34516,6 +34563,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
34516
34563
|
border-color: inherit;
|
|
34517
34564
|
outline: 0;
|
|
34518
34565
|
|
|
34566
|
+
.k-table-row:last-child > td,
|
|
34519
34567
|
.k-table-row:last-child > .k-table-td {
|
|
34520
34568
|
border-bottom-width: 0;
|
|
34521
34569
|
}
|
|
@@ -34541,11 +34589,13 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
34541
34589
|
// Edit row
|
|
34542
34590
|
.k-grid .k-edit-cell,
|
|
34543
34591
|
.k-grid .k-command-cell,
|
|
34592
|
+
.k-grid .k-grid-edit-row td,
|
|
34544
34593
|
.k-grid .k-grid-edit-row .k-table-td {
|
|
34545
34594
|
text-overflow: clip;
|
|
34546
34595
|
}
|
|
34547
34596
|
|
|
34548
34597
|
.k-grid .k-edit-cell,
|
|
34598
|
+
.k-grid .k-grid-edit-row td,
|
|
34549
34599
|
.k-grid .k-grid-edit-row .k-table-td {
|
|
34550
34600
|
|
|
34551
34601
|
> input:not([type="checkbox"]):not([type="radio"]),
|
|
@@ -34602,19 +34652,19 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
34602
34652
|
|
|
34603
34653
|
.k-grid-virtual .k-grid-content {
|
|
34604
34654
|
.k-grid-table-wrap {
|
|
34605
|
-
float:
|
|
34655
|
+
float: left;
|
|
34606
34656
|
width: 100%;
|
|
34607
34657
|
}
|
|
34608
34658
|
|
|
34609
34659
|
.k-grid-table {
|
|
34610
34660
|
position: relative;
|
|
34611
|
-
float:
|
|
34661
|
+
float: left;
|
|
34612
34662
|
z-index: 1;
|
|
34613
34663
|
}
|
|
34614
34664
|
|
|
34615
34665
|
> .k-height-container {
|
|
34616
34666
|
position: relative;
|
|
34617
|
-
float:
|
|
34667
|
+
float: left;
|
|
34618
34668
|
}
|
|
34619
34669
|
|
|
34620
34670
|
&::after {
|
|
@@ -34633,6 +34683,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
34633
34683
|
height: 1px;
|
|
34634
34684
|
}
|
|
34635
34685
|
|
|
34686
|
+
.k-grid-add-row td,
|
|
34636
34687
|
.k-grid-add-row .k-table-td {
|
|
34637
34688
|
border-bottom-style: solid;
|
|
34638
34689
|
border-bottom-width: 1px;
|
|
@@ -34708,6 +34759,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
34708
34759
|
z-index: auto;
|
|
34709
34760
|
}
|
|
34710
34761
|
|
|
34762
|
+
.k-grid-row-sticky td,
|
|
34711
34763
|
.k-grid-row-sticky .k-table-td {
|
|
34712
34764
|
border-bottom-width: $kendo-grid-border-width;
|
|
34713
34765
|
border-top-width: $kendo-grid-border-width;
|
|
@@ -34715,12 +34767,11 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
34715
34767
|
position: sticky;
|
|
34716
34768
|
top: inherit;
|
|
34717
34769
|
bottom: inherit;
|
|
34718
|
-
}
|
|
34719
|
-
|
|
34720
|
-
.k-grid-row-sticky .k-table-td {
|
|
34721
34770
|
z-index: 2;
|
|
34722
34771
|
}
|
|
34723
34772
|
|
|
34773
|
+
.k-grid-row-sticky td.k-grid-content-sticky,
|
|
34774
|
+
.k-grid-row-sticky.k-alt td.k-grid-content-sticky,
|
|
34724
34775
|
.k-grid-row-sticky .k-table-td.k-grid-content-sticky,
|
|
34725
34776
|
.k-grid-row-sticky.k-alt .k-table-td.k-grid-content-sticky {
|
|
34726
34777
|
z-index: 3;
|
|
@@ -34747,6 +34798,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
34747
34798
|
.k-grid .k-table .k-grid-footer-sticky {
|
|
34748
34799
|
border-inline-end-width: $kendo-grid-cell-vertical-border-width;
|
|
34749
34800
|
|
|
34801
|
+
&:not([style*="display: none"]) + td,
|
|
34750
34802
|
&:not([style*="display: none"]) + .k-table-td,
|
|
34751
34803
|
&:not([style*="display: none"]) + .k-table-th {
|
|
34752
34804
|
border-inline-start-width: 0;
|
|
@@ -34832,6 +34884,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
34832
34884
|
padding: $_header-padding-y $_header-padding-x;
|
|
34833
34885
|
}
|
|
34834
34886
|
|
|
34887
|
+
td,
|
|
34835
34888
|
.k-table-td {
|
|
34836
34889
|
padding: $_cell-padding-y $_cell-padding-x;
|
|
34837
34890
|
}
|
|
@@ -34893,6 +34946,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
34893
34946
|
// Edit row
|
|
34894
34947
|
.k-edit-cell,
|
|
34895
34948
|
.k-command-cell,
|
|
34949
|
+
.k-grid-edit-row td,
|
|
34896
34950
|
.k-grid-edit-row .k-table-td {
|
|
34897
34951
|
padding: $_edit-cell-padding-y $_edit-cell-padding-x;
|
|
34898
34952
|
}
|
|
@@ -34900,6 +34954,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
34900
34954
|
|
|
34901
34955
|
// Filter row
|
|
34902
34956
|
.k-filter-row {
|
|
34957
|
+
td,
|
|
34903
34958
|
.k-table-td,
|
|
34904
34959
|
.k-table-th {
|
|
34905
34960
|
padding: $_filter-cell-padding-y $_filter-cell-padding-x;
|
|
@@ -34962,7 +35017,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
34962
35017
|
// Remove Grid scrollbar during built-in export
|
|
34963
35018
|
.k-pdf-export-shadow {
|
|
34964
35019
|
.k-grid {
|
|
34965
|
-
float:
|
|
35020
|
+
float: left;
|
|
34966
35021
|
width: auto !important; // sass-lint:disable-line no-important
|
|
34967
35022
|
}
|
|
34968
35023
|
|
|
@@ -35070,6 +35125,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35070
35125
|
table-layout: auto !important;
|
|
35071
35126
|
|
|
35072
35127
|
.k-table-th,
|
|
35128
|
+
td,
|
|
35073
35129
|
.k-table-td {
|
|
35074
35130
|
white-space: nowrap !important;
|
|
35075
35131
|
}
|
|
@@ -35196,6 +35252,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35196
35252
|
|
|
35197
35253
|
.k-grid {
|
|
35198
35254
|
|
|
35255
|
+
.k-group-footer td,
|
|
35199
35256
|
.k-group-footer .k-table-td {
|
|
35200
35257
|
border-top-width: 0;
|
|
35201
35258
|
}
|
|
@@ -35299,6 +35356,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35299
35356
|
.k-grid-header-wrap,
|
|
35300
35357
|
.k-grouping-header,
|
|
35301
35358
|
.k-grid .k-table-th,
|
|
35359
|
+
.k-grid td,
|
|
35302
35360
|
.k-grid .k-table-td,
|
|
35303
35361
|
.k-grid-footer,
|
|
35304
35362
|
.k-grid-footer-wrap,
|
|
@@ -35306,6 +35364,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35306
35364
|
.k-grid-footer-locked,
|
|
35307
35365
|
.k-grid-header-locked,
|
|
35308
35366
|
.k-filter-row > .k-table-th,
|
|
35367
|
+
.k-filter-row > td,
|
|
35309
35368
|
.k-filter-row > .k-table-td {
|
|
35310
35369
|
@include fill( $border: $kendo-grid-header-border );
|
|
35311
35370
|
}
|
|
@@ -35339,6 +35398,8 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35339
35398
|
@include fill($bg: $kendo-grid-bg );
|
|
35340
35399
|
}
|
|
35341
35400
|
|
|
35401
|
+
.k-group-footer td,
|
|
35402
|
+
.k-grouping-row td,
|
|
35342
35403
|
.k-group-footer .k-table-td,
|
|
35343
35404
|
.k-grouping-row .k-table-td,
|
|
35344
35405
|
.k-table-tbody .k-group-cell {
|
|
@@ -35374,6 +35435,8 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35374
35435
|
}
|
|
35375
35436
|
|
|
35376
35437
|
// Selected state
|
|
35438
|
+
td.k-selected,
|
|
35439
|
+
.k-table-row.k-selected > td,
|
|
35377
35440
|
.k-table-td.k-selected,
|
|
35378
35441
|
.k-table-row.k-selected > .k-table-td {
|
|
35379
35442
|
color: $kendo-grid-selected-text;
|
|
@@ -35382,7 +35445,12 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35382
35445
|
|
|
35383
35446
|
// Focused state
|
|
35384
35447
|
.k-table-th,
|
|
35448
|
+
td,
|
|
35385
35449
|
.k-table-td,
|
|
35450
|
+
.k-master-row > td,
|
|
35451
|
+
.k-grouping-row > td,
|
|
35452
|
+
.k-detail-row > td,
|
|
35453
|
+
.k-group-footer > td,
|
|
35386
35454
|
.k-master-row > .k-table-td,
|
|
35387
35455
|
.k-grouping-row > .k-table-td,
|
|
35388
35456
|
.k-detail-row > .k-table-td,
|
|
@@ -35418,30 +35486,37 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35418
35486
|
.k-grid-header-locked,
|
|
35419
35487
|
.k-grid-content-locked,
|
|
35420
35488
|
.k-grid-header-locked .k-table-th,
|
|
35489
|
+
.k-grid-content-locked td,
|
|
35421
35490
|
.k-grid-content-locked .k-table-td {
|
|
35422
35491
|
border-color: $kendo-grid-sticky-header-border;
|
|
35423
35492
|
}
|
|
35424
35493
|
|
|
35425
35494
|
.k-grid-content-locked {
|
|
35495
|
+
.k-group-footer td,
|
|
35426
35496
|
.k-group-footer .k-table-td,
|
|
35427
35497
|
.k-group-cell {
|
|
35428
35498
|
@include fill( $border: $kendo-grid-header-border );
|
|
35429
35499
|
}
|
|
35430
35500
|
|
|
35501
|
+
.k-grouping-row + .k-table-row td,
|
|
35431
35502
|
.k-grouping-row + .k-table-row .k-table-td {
|
|
35432
35503
|
border-top-color: $kendo-grid-header-border;
|
|
35433
35504
|
}
|
|
35434
35505
|
|
|
35435
35506
|
// Selected state
|
|
35507
|
+
.k-selected td,
|
|
35436
35508
|
.k-selected .k-table-td {
|
|
35437
35509
|
@include fill( $bg: $kendo-grid-sticky-selected-bg );
|
|
35438
35510
|
}
|
|
35439
35511
|
|
|
35512
|
+
.k-selected.k-table-alt-row td,
|
|
35440
35513
|
.k-selected.k-table-alt-row .k-table-td {
|
|
35441
35514
|
@include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
|
|
35442
35515
|
}
|
|
35443
35516
|
|
|
35444
35517
|
// Selected hover
|
|
35518
|
+
.k-selected:hover td,
|
|
35519
|
+
.k-selected.k-hover td,
|
|
35445
35520
|
.k-selected:hover .k-table-td,
|
|
35446
35521
|
.k-selected.k-hover .k-table-td {
|
|
35447
35522
|
@include fill( $bg: $kendo-grid-sticky-selected-hover-bg );
|
|
@@ -35485,6 +35560,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35485
35560
|
}
|
|
35486
35561
|
|
|
35487
35562
|
.k-table-th.k-grid-header-sticky,
|
|
35563
|
+
td.k-grid-header-sticky,
|
|
35488
35564
|
.k-table-td.k-grid-header-sticky,
|
|
35489
35565
|
.k-grid-header-sticky.k-sorted {
|
|
35490
35566
|
@include fill(
|
|
@@ -35535,12 +35611,14 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35535
35611
|
// Selected state
|
|
35536
35612
|
&.k-selected .k-grid-content-sticky,
|
|
35537
35613
|
&.k-selected .k-grid-row-sticky,
|
|
35614
|
+
td.k-grid-content-sticky.k-selected,
|
|
35538
35615
|
.k-table-td.k-grid-content-sticky.k-selected {
|
|
35539
35616
|
@include fill( $bg: $kendo-grid-sticky-selected-bg );
|
|
35540
35617
|
}
|
|
35541
35618
|
|
|
35542
35619
|
&.k-selected.k-table-alt-row .k-grid-content-sticky,
|
|
35543
35620
|
&.k-selected.k-table-alt-row .k-grid-row-sticky,
|
|
35621
|
+
&.k-table-alt-row td.k-grid-content-sticky.k-selected,
|
|
35544
35622
|
&.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
35545
35623
|
@include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
|
|
35546
35624
|
}
|
|
@@ -35560,6 +35638,8 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35560
35638
|
&.k-selected:hover .k-grid-row-sticky,
|
|
35561
35639
|
&.k-selected.k-hover .k-grid-content-sticky,
|
|
35562
35640
|
&.k-selected.k-hover .k-grid-row-sticky,
|
|
35641
|
+
&:hover td.k-grid-content-sticky.k-selected,
|
|
35642
|
+
&.k-hover td.k-grid-content-sticky.k-selected,
|
|
35563
35643
|
&:hover .k-table-td.k-grid-content-sticky.k-selected,
|
|
35564
35644
|
&.k-hover .k-table-td.k-grid-content-sticky.k-selected {
|
|
35565
35645
|
background-color: $kendo-grid-sticky-selected-hover-bg;
|
|
@@ -35580,12 +35660,15 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35580
35660
|
}
|
|
35581
35661
|
|
|
35582
35662
|
.k-grid-row-sticky {
|
|
35663
|
+
td,
|
|
35583
35664
|
.k-table-td {
|
|
35584
35665
|
border-top-color: $kendo-grid-sticky-border;
|
|
35585
35666
|
border-bottom-color: $kendo-grid-sticky-border;
|
|
35586
35667
|
background-color: $kendo-grid-sticky-bg;
|
|
35587
35668
|
}
|
|
35588
35669
|
|
|
35670
|
+
&:hover td,
|
|
35671
|
+
&.k-hover td,
|
|
35589
35672
|
&:hover .k-table-td,
|
|
35590
35673
|
&.k-hover .k-table-td {
|
|
35591
35674
|
background-color: $kendo-grid-sticky-hover-bg;
|
|
@@ -35593,12 +35676,15 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35593
35676
|
}
|
|
35594
35677
|
|
|
35595
35678
|
.k-table-alt-row .k-grid-content-sticky,
|
|
35679
|
+
.k-grid-row-sticky.k-table-alt-row td,
|
|
35596
35680
|
.k-grid-row-sticky.k-table-alt-row .k-table-td {
|
|
35597
35681
|
@include fill( $bg: $kendo-grid-sticky-alt-bg );
|
|
35598
35682
|
}
|
|
35599
35683
|
|
|
35600
35684
|
// Selected state
|
|
35601
35685
|
.k-table-row.k-selected .k-grid-content-sticky,
|
|
35686
|
+
.k-selected.k-grid-row-sticky td,
|
|
35687
|
+
.k-grid-row-sticky td.k-selected,
|
|
35602
35688
|
.k-selected.k-grid-row-sticky .k-table-td,
|
|
35603
35689
|
.k-grid-row-sticky .k-table-td.k-selected,
|
|
35604
35690
|
.k-selected.k-grid-content-sticky {
|
|
@@ -35606,6 +35692,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35606
35692
|
}
|
|
35607
35693
|
|
|
35608
35694
|
.k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky,
|
|
35695
|
+
.k-selected.k-table-alt-row.k-grid-row-sticky td,
|
|
35609
35696
|
.k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td,
|
|
35610
35697
|
.k-table-alt-row .k-selected.k-grid-content-sticky {
|
|
35611
35698
|
@include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
|
|
@@ -35614,6 +35701,10 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35614
35701
|
// Hover state
|
|
35615
35702
|
.k-table-row:hover .k-grid-content-sticky,
|
|
35616
35703
|
.k-table-row.k-hover .k-grid-content-sticky,
|
|
35704
|
+
.k-grid-row-sticky:hover td,
|
|
35705
|
+
.k-grid-row-sticky.k-hover td,
|
|
35706
|
+
.k-grid-row-sticky.k-table-alt-row:hover td,
|
|
35707
|
+
.k-grid-row-sticky.k-table-alt-row.k-hover td,
|
|
35617
35708
|
.k-grid-row-sticky:hover .k-table-td,
|
|
35618
35709
|
.k-grid-row-sticky.k-hover .k-table-td,
|
|
35619
35710
|
.k-grid-row-sticky.k-table-alt-row:hover .k-table-td,
|
|
@@ -35626,12 +35717,18 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35626
35717
|
// Selected + Hover
|
|
35627
35718
|
.k-table-row.k-selected:hover .k-grid-content-sticky,
|
|
35628
35719
|
.k-table-row.k-selected.k-hover .k-grid-content-sticky,
|
|
35720
|
+
.k-selected.k-grid-row-sticky:hover td,
|
|
35721
|
+
.k-selected.k-grid-row-sticky.k-hover td,
|
|
35722
|
+
.k-selected.k-table-alt-row.k-grid-row-sticky:hover td,
|
|
35723
|
+
.k-selected.k-table-alt-row.k-grid-row-sticky.k-hover td,
|
|
35629
35724
|
.k-selected.k-grid-row-sticky:hover .k-table-td,
|
|
35630
35725
|
.k-selected.k-grid-row-sticky.k-hover .k-table-td,
|
|
35631
35726
|
.k-selected.k-table-alt-row.k-grid-row-sticky:hover .k-table-td,
|
|
35632
35727
|
.k-selected.k-table-alt-row.k-grid-row-sticky.k-hover .k-table-td,
|
|
35633
35728
|
.k-table-row.k-selected.k-table-alt-row:hover .k-grid-content-sticky,
|
|
35634
35729
|
.k-table-row.k-selected.k-table-alt-row.k-hover .k-grid-content-sticky,
|
|
35730
|
+
.k-grid-row-sticky:hover td.k-selected,
|
|
35731
|
+
.k-grid-row-sticky.k-hover td.k-selected,
|
|
35635
35732
|
.k-grid-row-sticky:hover .k-table-td.k-selected,
|
|
35636
35733
|
.k-grid-row-sticky.k-hover .k-table-td.k-selected,
|
|
35637
35734
|
.k-table-row:hover .k-grid-content-sticky.k-selected,
|
|
@@ -35744,6 +35841,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35744
35841
|
background-color: $kendo-grid-selected-bg;
|
|
35745
35842
|
}
|
|
35746
35843
|
|
|
35844
|
+
.k-table-row.k-selected > td,
|
|
35747
35845
|
.k-table-row.k-selected > .k-table-td {
|
|
35748
35846
|
color: inherit;
|
|
35749
35847
|
background-color: transparent;
|
|
@@ -35753,10 +35851,16 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35753
35851
|
.k-table {
|
|
35754
35852
|
> .k-table-row:not(.k-detail-row):hover,
|
|
35755
35853
|
> .k-table-row:not(.k-detail-row).k-hover,
|
|
35854
|
+
td:focus,
|
|
35855
|
+
td.k-focus,
|
|
35756
35856
|
.k-table-td:focus,
|
|
35757
35857
|
.k-table-td.k-focus,
|
|
35758
35858
|
.k-table-th:focus,
|
|
35759
35859
|
.k-table-th.k-focus,
|
|
35860
|
+
.k-master-row > td:focus,
|
|
35861
|
+
.k-grouping-row > td:focus,
|
|
35862
|
+
.k-detail-row > td:focus,
|
|
35863
|
+
.k-group-footer > td:focus,
|
|
35760
35864
|
.k-master-row > .k-table-td:focus,
|
|
35761
35865
|
.k-grouping-row > .k-table-td:focus,
|
|
35762
35866
|
.k-detail-row > .k-table-td:focus,
|
|
@@ -35775,7 +35879,12 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35775
35879
|
}
|
|
35776
35880
|
|
|
35777
35881
|
.k-table-th,
|
|
35882
|
+
td,
|
|
35778
35883
|
.k-table-td,
|
|
35884
|
+
.k-master-row > td,
|
|
35885
|
+
.k-grouping-row > td,
|
|
35886
|
+
.k-detail-row > td,
|
|
35887
|
+
.k-group-footer > td,
|
|
35779
35888
|
.k-master-row > .k-table-td,
|
|
35780
35889
|
.k-grouping-row > .k-table-td,
|
|
35781
35890
|
.k-detail-row > .k-table-td,
|
|
@@ -35798,6 +35907,7 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35798
35907
|
}
|
|
35799
35908
|
|
|
35800
35909
|
.k-table-th,
|
|
35910
|
+
td,
|
|
35801
35911
|
.k-table-td {
|
|
35802
35912
|
border-inline-start-color: transparent;
|
|
35803
35913
|
}
|
|
@@ -35805,11 +35915,14 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35805
35915
|
.k-grid-header-locked,
|
|
35806
35916
|
.k-grid-content-locked,
|
|
35807
35917
|
.k-grid-header-locked .k-table-th,
|
|
35918
|
+
.k-grid-content-locked td,
|
|
35808
35919
|
.k-grid-content-locked .k-table-td {
|
|
35809
35920
|
border-top-color: $kendo-grid-header-border;
|
|
35810
35921
|
border-bottom-color: $kendo-grid-header-border;
|
|
35811
35922
|
|
|
35812
35923
|
.k-group-footer {
|
|
35924
|
+
&:hover td,
|
|
35925
|
+
&.k-hover td,
|
|
35813
35926
|
&:hover .k-table-td,
|
|
35814
35927
|
&.k-hover .k-table-td {
|
|
35815
35928
|
color: inherit;
|
|
@@ -35835,6 +35948,8 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35835
35948
|
border-color: $kendo-grid-sticky-border;
|
|
35836
35949
|
border-bottom-color: $kendo-grid-header-border;
|
|
35837
35950
|
}
|
|
35951
|
+
|
|
35952
|
+
.k-grid-row-sticky td,
|
|
35838
35953
|
.k-grid-row-sticky .k-table-td {
|
|
35839
35954
|
border-top-color: $kendo-grid-sticky-border;
|
|
35840
35955
|
border-bottom-color: $kendo-grid-sticky-border;
|
|
@@ -35887,11 +36002,14 @@ $kendo-grid-group-footer-second-cell-border: 0px !default;
|
|
|
35887
36002
|
}
|
|
35888
36003
|
|
|
35889
36004
|
.k-group-footer {
|
|
36005
|
+
td,
|
|
35890
36006
|
.k-table-td,
|
|
35891
36007
|
.k-grid-footer-sticky {
|
|
35892
36008
|
background: $kendo-grid-sticky-footer-bg;
|
|
35893
36009
|
}
|
|
35894
36010
|
|
|
36011
|
+
&:hover td,
|
|
36012
|
+
&.k-hover td,
|
|
35895
36013
|
&:hover .k-table-td,
|
|
35896
36014
|
&.k-hover .k-table-td {
|
|
35897
36015
|
@include fill( $bg: $kendo-grid-sticky-footer-hover-bg );
|
|
@@ -38722,6 +38840,8 @@ $kendo-treelist-footer-row-border-width: 1px !default;
|
|
|
38722
38840
|
transform: translate(0, -50%);
|
|
38723
38841
|
}
|
|
38724
38842
|
|
|
38843
|
+
.k-table-row.k-footer td,
|
|
38844
|
+
.k-table-row.k-footer-template td,
|
|
38725
38845
|
.k-table-row.k-footer .k-table-td,
|
|
38726
38846
|
.k-table-row.k-footer-template .k-table-td {
|
|
38727
38847
|
border-width: $kendo-treelist-footer-row-border-width 0;
|
|
@@ -38729,6 +38849,7 @@ $kendo-treelist-footer-row-border-width: 1px !default;
|
|
|
38729
38849
|
font-weight: bold;
|
|
38730
38850
|
}
|
|
38731
38851
|
|
|
38852
|
+
.k-table-row.k-footer + .k-table-row.k-footer td,
|
|
38732
38853
|
.k-table-row.k-footer + .k-table-row.k-footer .k-table-td {
|
|
38733
38854
|
border-top-width: 0;
|
|
38734
38855
|
}
|