@progress/kendo-theme-material 5.6.1-dev.7 → 5.7.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.
Files changed (34) hide show
  1. package/dist/all.css +265 -648
  2. package/dist/all.scss +126 -499
  3. package/lib/swatches/material-aqua-dark.json +1 -1
  4. package/lib/swatches/material-arctic.json +1 -1
  5. package/lib/swatches/material-burnt-teal.json +1 -1
  6. package/lib/swatches/material-dataviz-v4.json +1 -1
  7. package/lib/swatches/material-eggplant.json +1 -1
  8. package/lib/swatches/material-lime-dark.json +1 -1
  9. package/lib/swatches/material-lime.json +1 -1
  10. package/lib/swatches/material-main-dark.json +1 -1
  11. package/lib/swatches/material-main.json +1 -1
  12. package/lib/swatches/material-nova.json +1 -1
  13. package/lib/swatches/material-pacific-dark.json +1 -1
  14. package/lib/swatches/material-pacific.json +1 -1
  15. package/lib/swatches/material-sky-dark.json +1 -1
  16. package/lib/swatches/material-sky.json +1 -1
  17. package/lib/swatches/material-smoke.json +1 -1
  18. package/package.json +3 -3
  19. package/scss/button/_layout.scss +1 -2
  20. package/scss/calendar/_theme.scss +0 -2
  21. package/scss/drawer/_theme.scss +2 -2
  22. package/scss/editor/_theme.scss +2 -3
  23. package/scss/floating-label/_theme.scss +0 -3
  24. package/scss/forms/_variables.scss +1 -1
  25. package/scss/grid/_theme.scss +6 -22
  26. package/scss/input/_layout.scss +2 -4
  27. package/scss/listview/_theme.scss +1 -2
  28. package/scss/pivotgrid/_theme.scss +1 -2
  29. package/scss/scheduler/_layout.scss +0 -1
  30. package/scss/signature/_variables.scss +23 -21
  31. package/scss/slider/_theme.scss +0 -1
  32. package/scss/spreadsheet/_theme.scss +0 -8
  33. package/scss/timeline/_layout.scss +0 -2
  34. package/scss/typography/_variables.scss +1 -1
package/dist/all.scss CHANGED
@@ -2337,7 +2337,7 @@ $line-height-xs: 1 !default;
2337
2337
  $line-height-sm: 1.2 !default;
2338
2338
  $line-height-md: $line-height !default;
2339
2339
  $line-height-lg: 1.5 !default;
2340
- $line-height-em: $line-height * 1em !default;
2340
+ $line-height-em: calc( #{$line-height} * 1em ) !default;
2341
2341
 
2342
2342
 
2343
2343
  // Font weight
@@ -2571,7 +2571,6 @@ $display4-letter-spacing: null !default;
2571
2571
  @include exports( "common/disabled" ) {
2572
2572
 
2573
2573
  // Disabled state
2574
- .k-state-disabled,
2575
2574
  .k-disabled,
2576
2575
  .k-widget[disabled],
2577
2576
  .k-disabled {
@@ -2586,8 +2585,7 @@ $display4-letter-spacing: null !default;
2586
2585
 
2587
2586
  // Nested disabled
2588
2587
  [disabled],
2589
- .k-disabled,
2590
- .k-state-disabled {
2588
+ .k-disabled {
2591
2589
  opacity: 1;
2592
2590
  filter: grayscale(0);
2593
2591
  }
@@ -5365,18 +5363,28 @@ $utils-border-radius: (
5365
5363
  @include exports( "common/decoration/color" ) {
5366
5364
 
5367
5365
  // sass-lint:disable-block no-important
5366
+ // sass-lint:disable-block class-name-format
5368
5367
  // stylelint-disable block-opening-brace-space-before
5369
5368
 
5370
5369
  .k-text-base,
5371
5370
  .k-color-base {
5372
5371
  color: $base-text;
5373
5372
  }
5373
+ .\!k-text-base,
5374
+ .\!k-color-base {
5375
+ color: $base-text !important;
5376
+ }
5374
5377
 
5375
5378
  .k-color-inherit { color: inherit; }
5379
+ .\!k-color-inherit { color: inherit !important; }
5376
5380
 
5377
5381
  @each $name, $color in $kendo-theme-colors {
5378
5382
  .k-text-#{$name},
5379
5383
  .k-color-#{$name} {
5384
+ color: $color;
5385
+ }
5386
+ .\!k-text-#{$name},
5387
+ .\!k-color-#{$name} {
5380
5388
  color: $color !important;
5381
5389
  }
5382
5390
  }
@@ -5387,60 +5395,16 @@ $utils-border-radius: (
5387
5395
  @include exports( "common/decoration/background" ) {
5388
5396
 
5389
5397
  // sass-lint:disable-block no-important
5398
+ // sass-lint:disable-block class-name-format
5390
5399
 
5391
5400
  @each $name, $bg-color in $kendo-theme-colors {
5392
5401
  .k-bg-#{$name} {
5393
- background-color: $bg-color !important;
5402
+ background-color: $bg-color;
5394
5403
  }
5395
- }
5396
-
5397
- }
5398
-
5399
-
5400
- @mixin variant( $base ) {
5401
- background-color: tint($base, 10);
5402
- color: shade($base, 6);
5403
- border-color: tint($base, 9);
5404
- }
5405
-
5406
- @include exports( "common/decoration/variant" ) {
5407
-
5408
- @each $name, $variant in $kendo-theme-colors {
5409
- .k-state-#{$name} {
5410
- @include variant( $variant );
5404
+ .\!k-bg-#{$name} {
5405
+ background-color: $bg-color !important;
5411
5406
  }
5412
5407
  }
5413
- }
5414
-
5415
-
5416
- @include exports( "common/decoration/legacy" ) {
5417
-
5418
- .k-info-colored {
5419
- color: #50607f;
5420
- border-color: #d0d9df;
5421
- background-color: #f0f9ff;
5422
- }
5423
-
5424
- .k-success-colored {
5425
- color: #507f50;
5426
- border-color: #d0dfd0;
5427
- background-color: #f0fff0;
5428
- }
5429
-
5430
- .k-error-colored {
5431
- color: #7f5050;
5432
- border-color: #dfd0d0;
5433
- background-color: #fff0f0;
5434
- }
5435
-
5436
- .k-shadow {
5437
- // Shadow moved to popup/_layout.scss due to variable flow
5438
- // box-shadow: $popup-shadow;
5439
- }
5440
-
5441
- .k-inset {
5442
- box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .03), inset 0 4px 5px 0 rgba(0, 0, 0, .04);
5443
- }
5444
5408
 
5445
5409
  }
5446
5410
 
@@ -9489,8 +9453,7 @@ $kendo-button-transition: box-shadow 280ms cubic-bezier( .4, 0, .2, 1 ) !default
9489
9453
 
9490
9454
  &:disabled,
9491
9455
  &[disabled],
9492
- &.k-disabled,
9493
- &.k-state-disabled {
9456
+ &.k-disabled {
9494
9457
  opacity: 1;
9495
9458
  filter: none;
9496
9459
  }
@@ -10242,8 +10205,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
10242
10205
  @include disabled( $disabled-styling );
10243
10206
 
10244
10207
  [disabled] &,
10245
- .k-disabled &,
10246
- .k-state-disabled & {
10208
+ .k-disabled & {
10247
10209
  opacity: 1;
10248
10210
  filter: grayscale(0);
10249
10211
  }
@@ -10264,8 +10226,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
10264
10226
  @include disabled( $disabled-styling );
10265
10227
 
10266
10228
  [disabled] &,
10267
- .k-disabled &,
10268
- .k-state-disabled & {
10229
+ .k-disabled & {
10269
10230
  opacity: 1;
10270
10231
  filter: grayscale(0);
10271
10232
  }
@@ -10710,8 +10671,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
10710
10671
  pointer-events: none;
10711
10672
  }
10712
10673
 
10713
- &.k-focus::after,
10714
- &.k-state-focused::after {
10674
+ &.k-focus::after {
10715
10675
  opacity: 1;
10716
10676
  transform: scaleX(1);
10717
10677
  }
@@ -10729,8 +10689,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
10729
10689
  transform: none;
10730
10690
  }
10731
10691
 
10732
- &.k-focus::after,
10733
- &.k-state-focused::after {
10692
+ &.k-focus::after {
10734
10693
  transform: none;
10735
10694
  }
10736
10695
  &:focus-within::after {
@@ -11299,7 +11258,6 @@ $floating-label-focus-text: $primary !default;
11299
11258
  width: auto;
11300
11259
  }
11301
11260
 
11302
- &.k-state-empty,
11303
11261
  &.k-empty {
11304
11262
  > .k-label {
11305
11263
  top: $floating-label-offset-y;
@@ -11310,8 +11268,6 @@ $floating-label-focus-text: $primary !default;
11310
11268
  }
11311
11269
 
11312
11270
  > .k-label,
11313
- // &:focus-within > .k-label,
11314
- &.k-state-focused > .k-label,
11315
11271
  &.k-focus > .k-label {
11316
11272
  top: $floating-label-focus-offset-y;
11317
11273
  left: $floating-label-focus-offset-x;
@@ -11323,7 +11279,6 @@ $floating-label-focus-text: $primary !default;
11323
11279
  transform: scale( $floating-label-focus-scale );
11324
11280
  }
11325
11281
 
11326
- &.k-state-empty:not(.k-state-focused) ::placeholder,
11327
11282
  &.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
11328
11283
  color: transparent;
11329
11284
  }
@@ -11337,7 +11292,6 @@ $floating-label-focus-text: $primary !default;
11337
11292
  transition: transform $floating-label-transition, color $floating-label-transition, top $floating-label-transition, right $floating-label-transition;
11338
11293
  }
11339
11294
 
11340
- &.k-state-empty,
11341
11295
  &.k-empty {
11342
11296
  > .k-label {
11343
11297
  left: auto;
@@ -11346,8 +11300,6 @@ $floating-label-focus-text: $primary !default;
11346
11300
  }
11347
11301
 
11348
11302
  > .k-label,
11349
- // &:focus-within > .k-label,
11350
- &.k-state-focused > .k-label,
11351
11303
  &.k-focus > .k-label {
11352
11304
  left: auto;
11353
11305
  right: $floating-label-focus-offset-x;
@@ -11402,8 +11354,7 @@ $floating-label-focus-text: $primary !default;
11402
11354
  );
11403
11355
  }
11404
11356
 
11405
- &.k-focus > .k-label,
11406
- &.k-state-focused > .k-label {
11357
+ &.k-focus > .k-label {
11407
11358
  @include fill(
11408
11359
  $color: $floating-label-focus-text,
11409
11360
  $bg: $floating-label-focus-bg
@@ -11424,9 +11375,6 @@ $floating-label-focus-text: $primary !default;
11424
11375
 
11425
11376
  &.k-invalid + .k-label,
11426
11377
  .k-invalid + .k-label,
11427
- &.k-state-invalid + .k-label,
11428
- .k-state-invalid + .k-label,
11429
- .k-invalid + .k-label,
11430
11378
  .ng-invalid.ng-touched + .k-label,
11431
11379
  .ng-invalid.ng-dirty + .k-label {
11432
11380
  @include fill( $color: $error );
@@ -13837,8 +13785,11 @@ $loader-container-font-size-lg: $font-size-lg !default;
13837
13785
  }
13838
13786
 
13839
13787
  .k-loader-container-inner {
13840
- .k-text-secondary {
13841
- color: $loader-secondary-bg !important; // sass-lint:disable-line no-important
13788
+ // sass-lint:disable-block no-important
13789
+ // sass-lint:disable-block class-name-format
13790
+ .k-text-secondary,
13791
+ .\!k-text-secondary {
13792
+ color: $loader-secondary-bg !important;
13842
13793
  }
13843
13794
  }
13844
13795
 
@@ -15351,7 +15302,7 @@ $form-spacer: $padding-x * 2 !default;
15351
15302
 
15352
15303
  $form-font-size: $font-size !default;
15353
15304
  $form-line-height: $line-height !default;
15354
- $form-line-height-em: $form-line-height * 1em !default;
15305
+ $form-line-height-em: calc( #{$form-line-height} * 1em ) !default;
15355
15306
  $form-line-height-sm: $line-height-sm !default;
15356
15307
  $form-line-height-lg: $line-height-lg !default;
15357
15308
 
@@ -16741,7 +16692,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16741
16692
 
16742
16693
 
16743
16694
  // Selection
16744
- > .k-state-selected,
16745
16695
  > .k-selected {
16746
16696
  border-width: 0;
16747
16697
  border-style: solid;
@@ -16812,7 +16762,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16812
16762
  flex-direction: row;
16813
16763
  }
16814
16764
 
16815
- > .k-state-selected,
16816
16765
  > .k-selected {
16817
16766
  width: 0;
16818
16767
  width: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
@@ -16839,7 +16788,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16839
16788
  // Horizontal reverse
16840
16789
  &.k-progressbar-reverse {
16841
16790
 
16842
- > .k-state-selected,
16843
16791
  > .k-selected {
16844
16792
  flex-direction: row-reverse;
16845
16793
  justify-self: flex-end;
@@ -16864,7 +16812,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16864
16812
  writing-mode: vertical-lr;
16865
16813
  }
16866
16814
 
16867
- > .k-state-selected,
16868
16815
  > .k-selected {
16869
16816
  height: 0;
16870
16817
  height: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
@@ -16894,7 +16841,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16894
16841
  &.k-progressbar-reverse {
16895
16842
  flex-direction: column;
16896
16843
 
16897
- > .k-state-selected,
16898
16844
  > .k-selected {
16899
16845
  flex-direction: column;
16900
16846
  align-self: flex-start;
@@ -16906,7 +16852,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16906
16852
  // Indeterminate
16907
16853
  .k-progressbar-indeterminate {
16908
16854
  .k-progress-status-wrap,
16909
- .k-state-selected,
16910
16855
  .k-selected,
16911
16856
  .k-item {
16912
16857
  display: none;
@@ -16917,9 +16862,7 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16917
16862
  // Blazor specific
16918
16863
  .telerik-blazor.k-progressbar-horizontal {
16919
16864
 
16920
- > .k-state-selected,
16921
16865
  > .k-selected,
16922
- > .k-state-selected > .k-progress-status-wrap,
16923
16866
  > .k-selected > .k-progress-status-wrap {
16924
16867
  transition: width .1s ease-in-out;
16925
16868
  }
@@ -16948,7 +16891,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16948
16891
  display: -ms-inline-grid;
16949
16892
 
16950
16893
  > .k-progress-status-wrap,
16951
- > .k-state-selected,
16952
16894
  > .k-selected {
16953
16895
  -ms-grid-column: 1;
16954
16896
  -ms-grid-row: 1;
@@ -16958,7 +16900,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16958
16900
  -ms-grid-columns: 1fr;
16959
16901
  -ms-grid-rows: $progressbar-height;
16960
16902
 
16961
- &.k-progressbar-reverse > .k-state-selected,
16962
16903
  &.k-progressbar-reverse > .k-selected {
16963
16904
  -ms-grid-column-align: end;
16964
16905
  }
@@ -16967,12 +16908,10 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16967
16908
  -ms-grid-columns: $progressbar-height;
16968
16909
  -ms-grid-rows: 1fr;
16969
16910
 
16970
- > .k-state-selected,
16971
16911
  > .k-selected {
16972
16912
  -ms-grid-row-align: end;
16973
16913
  }
16974
16914
 
16975
- &.k-progressbar-reverse > .k-state-selected,
16976
16915
  &.k-progressbar-reverse > .k-selected {
16977
16916
  -ms-grid-row-align: start;
16978
16917
  }
@@ -17111,7 +17050,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
17111
17050
  .k-progressbar {
17112
17051
  @include fill( $progressbar-text, $progressbar-bg, $progressbar-border, $progressbar-gradient );
17113
17052
 
17114
- .k-state-selected,
17115
17053
  .k-selected {
17116
17054
  @include fill( $progressbar-fill-text, $progressbar-fill-bg, $progressbar-fill-border, $progressbar-fill-gradient );
17117
17055
  }
@@ -17550,7 +17488,6 @@ $kendo-radio-ripple-opacity: .2 !default;
17550
17488
  }
17551
17489
 
17552
17490
  .k-radio:focus,
17553
- .k-radio.k-state-focus,
17554
17491
  .k-radio.k-focus {
17555
17492
  box-shadow: none !important; // sass-lint:disable-line no-important
17556
17493
 
@@ -17623,7 +17560,6 @@ $kendo-radio-ripple-opacity: .2 !default;
17623
17560
 
17624
17561
  // Hover state
17625
17562
  .k-radio:hover,
17626
- .k-radio.k-state-hover,
17627
17563
  .k-radio.k-hover {
17628
17564
  @include fill(
17629
17565
  $kendo-radio-hover-text,
@@ -17635,7 +17571,6 @@ $kendo-radio-ripple-opacity: .2 !default;
17635
17571
 
17636
17572
  // Focus state
17637
17573
  .k-radio:focus,
17638
- .k-radio.k-state-focus,
17639
17574
  .k-radio.k-focus {
17640
17575
  @include fill( $border: $kendo-radio-focus-border );
17641
17576
  @include box-shadow( $kendo-radio-focus-shadow );
@@ -17644,13 +17579,11 @@ $kendo-radio-ripple-opacity: .2 !default;
17644
17579
 
17645
17580
  // Invalid state
17646
17581
  .k-radio.k-invalid,
17647
- .k-radio.k-state-invalid,
17648
17582
  .k-radio.ng-invalid.ng-touched,
17649
17583
  .k-radio.ng-invalid.ng-dirty {
17650
17584
  @include fill( $border: $kendo-radio-invalid-border );
17651
17585
  }
17652
17586
  .k-radio.k-invalid + .k-radio-label,
17653
- .k-radio.k-state-invalid + .k-radio-label,
17654
17587
  .k-radio.ng-invalid.ng-touched + .k-radio-label,
17655
17588
  .k-radio.ng-invalid.ng-dirty + .k-radio-label {
17656
17589
  @include fill( $color: $kendo-radio-invalid-text );
@@ -17667,7 +17600,6 @@ $kendo-radio-ripple-opacity: .2 !default;
17667
17600
  );
17668
17601
  }
17669
17602
  .k-radio:checked:focus,
17670
- .k-radio.k-checked.k-state-focus,
17671
17603
  .k-radio.k-checked.k-focus {
17672
17604
  @include fill( $border: $kendo-radio-focus-checked-border );
17673
17605
  @include box-shadow( $kendo-radio-focus-checked-shadow );
@@ -17841,7 +17773,6 @@ $slider-disabled-opacity: .65 !default;
17841
17773
  }
17842
17774
 
17843
17775
 
17844
- &.k-state-disabled,
17845
17776
  &.k-disabled {
17846
17777
  .k-tick,
17847
17778
  .k-slider-track,
@@ -18347,20 +18278,17 @@ $slider-disabled-opacity: .65 !default;
18347
18278
  }
18348
18279
 
18349
18280
  &:focus,
18350
- &.k-state-focused,
18351
18281
  &.k-focus {
18352
18282
  @include box-shadow( $slider-draghandle-focused-shadow );
18353
18283
  }
18354
18284
  }
18355
18285
 
18356
- &.k-state-focused,
18357
18286
  &.k-focus {
18358
18287
  .k-draghandle {
18359
18288
  @include box-shadow( $slider-draghandle-focused-shadow );
18360
18289
  }
18361
18290
  }
18362
18291
 
18363
- &.k-state-disabled,
18364
18292
  &.k-disabled {
18365
18293
  opacity: $slider-disabled-opacity;
18366
18294
  }
@@ -18399,7 +18327,6 @@ $slider-disabled-opacity: .65 !default;
18399
18327
  }
18400
18328
  }
18401
18329
 
18402
- &.k-state-disabled,
18403
18330
  &.k-disabled {
18404
18331
  opacity: 1;
18405
18332
 
@@ -19051,7 +18978,6 @@ $kendo-calendar-sizes: (
19051
18978
  }
19052
18979
 
19053
18980
  // // styles are applied to the k-link element inside
19054
- // .k-state-selected,
19055
18981
  // .k-selected {
19056
18982
  // color: inherit;
19057
18983
  // background: transparent;
@@ -19206,10 +19132,8 @@ $kendo-calendar-sizes: (
19206
19132
 
19207
19133
  &:hover,
19208
19134
  &.k-hover,
19209
- &.k-state-hover,
19210
19135
  &:focus,
19211
- &.k-focus,
19212
- &.k-state-focus {
19136
+ &.k-focus {
19213
19137
  color: $calendar-today-nav-hover-text;
19214
19138
  }
19215
19139
  }
@@ -19230,8 +19154,7 @@ $kendo-calendar-sizes: (
19230
19154
  .k-calendar-cell-inner {
19231
19155
  box-shadow: inset 0 0 0 1px $calendar-today-color;
19232
19156
  }
19233
- &.k-focus .k-calendar-cell-inner,
19234
- &.k-state-focused .k-calendar-cell-inner {
19157
+ &.k-focus .k-calendar-cell-inner {
19235
19158
  box-shadow: inset 0 0 0 1px $calendar-today-color, $calendar-cell-focused-shadow;
19236
19159
  }
19237
19160
  } @else if $calendar-today-style == color {
@@ -19265,8 +19188,7 @@ $kendo-calendar-sizes: (
19265
19188
 
19266
19189
  // Interactive states
19267
19190
  .k-calendar-td:hover .k-calendar-cell-inner,
19268
- .k-calendar-td.k-hover .k-calendar-cell-inner,
19269
- .k-calendar-td.k-state-hover .k-calendar-cell-inner {
19191
+ .k-calendar-td.k-hover .k-calendar-cell-inner {
19270
19192
  @include fill(
19271
19193
  $calendar-cell-hover-text,
19272
19194
  $calendar-cell-hover-bg,
@@ -19274,8 +19196,7 @@ $kendo-calendar-sizes: (
19274
19196
  $calendar-cell-hover-gradient
19275
19197
  );
19276
19198
  }
19277
- .k-calendar-td.k-selected .k-calendar-cell-inner,
19278
- .k-calendar-td.k-state-selected .k-calendar-cell-inner {
19199
+ .k-calendar-td.k-selected .k-calendar-cell-inner {
19279
19200
  @include fill(
19280
19201
  $calendar-cell-selected-text,
19281
19202
  $calendar-cell-selected-bg,
@@ -19284,8 +19205,7 @@ $kendo-calendar-sizes: (
19284
19205
  );
19285
19206
  }
19286
19207
  .k-calendar-td.k-selected:hover .k-calendar-cell-inner,
19287
- .k-calendar-td.k-selected.k-hover .k-calendar-cell-inner,
19288
- .k-calendar-td.k-state-selected:hover .k-calendar-cell-inner {
19208
+ .k-calendar-td.k-selected.k-hover .k-calendar-cell-inner {
19289
19209
  @include fill(
19290
19210
  $calendar-cell-selected-hover-text,
19291
19211
  $calendar-cell-selected-hover-bg,
@@ -19294,14 +19214,11 @@ $kendo-calendar-sizes: (
19294
19214
  );
19295
19215
  }
19296
19216
  .k-calendar-td:focus .k-calendar-cell-inner,
19297
- .k-calendar-td.k-focus .k-calendar-cell-inner,
19298
- .k-calendar-td.k-state-focus .k-calendar-cell-inner,
19299
- .k-calendar-td.k-state-focused .k-calendar-cell-inner {
19217
+ .k-calendar-td.k-focus .k-calendar-cell-inner {
19300
19218
  box-shadow: $calendar-cell-focused-shadow;
19301
19219
  }
19302
19220
  .k-calendar-td.k-selected:focus .k-calendar-cell-inner,
19303
- .k-calendar-td.k-selected.k-focus .k-calendar-cell-inner,
19304
- .k-calendar-td.k-state-selected.k-state-focus .k-calendar-cell-inner {
19221
+ .k-calendar-td.k-selected.k-focus .k-calendar-cell-inner {
19305
19222
  box-shadow: $calendar-cell-selected-focus-shadow;
19306
19223
  }
19307
19224
 
@@ -19315,8 +19232,7 @@ $kendo-calendar-sizes: (
19315
19232
  box-shadow: inset -1px 0 $calendar-navigation-border;
19316
19233
 
19317
19234
  li:hover,
19318
- li.k-hover,
19319
- li.k-state-hover {
19235
+ li.k-hover {
19320
19236
  color: $calendar-today-nav-hover-text;
19321
19237
  }
19322
19238
  }
@@ -19339,7 +19255,6 @@ $kendo-calendar-sizes: (
19339
19255
  // Invalid
19340
19256
  &.k-invalid,
19341
19257
  &.k-invalid:hover,
19342
- &.k-state-invalid,
19343
19258
  &.ng-invalid.ng-touched,
19344
19259
  &.ng-invalid.ng-dirty {
19345
19260
  border-color: $invalid-border;
@@ -19387,9 +19302,7 @@ $kendo-calendar-sizes: (
19387
19302
  }
19388
19303
 
19389
19304
  .k-range-start.k-active,
19390
- .k-range-start.k-state-active,
19391
- .k-range-end.k-active,
19392
- .k-range-end.k-state-active {
19305
+ .k-range-end.k-active {
19393
19306
  .k-calendar-cell-inner {
19394
19307
  box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, .2);
19395
19308
  }
@@ -19430,7 +19343,6 @@ $kendo-calendar-sizes: (
19430
19343
 
19431
19344
  .k-calendar {
19432
19345
 
19433
- .k-state-focused .k-link,
19434
19346
  .k-focus .k-link {
19435
19347
  @include fill(
19436
19348
  $calendar-cell-hover-text,
@@ -19438,7 +19350,6 @@ $kendo-calendar-sizes: (
19438
19350
  $calendar-cell-hover-border
19439
19351
  );
19440
19352
  }
19441
- .k-state-selected.k-state-focused .k-link,
19442
19353
  .k-selected.k-focus .k-link {
19443
19354
  @include fill(
19444
19355
  $calendar-cell-selected-text,
@@ -19649,7 +19560,6 @@ $kendo-time-selector-sizes: (
19649
19560
  display: block;
19650
19561
  }
19651
19562
 
19652
- &.k-state-focused,
19653
19563
  &.k-focus {
19654
19564
  &::before,
19655
19565
  &::after {
@@ -19824,7 +19734,6 @@ $kendo-time-selector-sizes: (
19824
19734
  color: $time-list-title-text;
19825
19735
  }
19826
19736
 
19827
- &.k-state-focused,
19828
19737
  &.k-focus {
19829
19738
  .k-title {
19830
19739
  color: $time-list-title-focus-text;
@@ -20160,18 +20069,14 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
20160
20069
  -ms-high-contrast-adjust: none;
20161
20070
 
20162
20071
  &:hover,
20163
- &.k-state-hover,
20164
20072
  &.k-hover {
20165
20073
  position: relative;
20166
20074
  z-index: 101;
20167
20075
  }
20168
20076
 
20169
20077
  &:focus,
20170
- &.k-state-focus,
20171
20078
  &.k-focus,
20172
- &.k-state-selected,
20173
20079
  &.k-selected,
20174
- &.k-state-selected:hover,
20175
20080
  &.k-selected:hover {
20176
20081
  position: relative;
20177
20082
  z-index: 100;
@@ -20191,20 +20096,15 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
20191
20096
  .k-colorpalette-tile {
20192
20097
 
20193
20098
  &:focus,
20194
- &.k-state-focus,
20195
20099
  &.k-focus {
20196
20100
  @include box-shadow( $colorpalette-tile-focus-shadow );
20197
20101
  }
20198
20102
 
20199
20103
  &:hover,
20200
- &.k-state-hover,
20201
20104
  &.k-hover {
20202
20105
  @include box-shadow( $colorpalette-tile-hover-shadow );
20203
20106
  }
20204
20107
 
20205
- &.k-state-selected,
20206
- &.k-selected,
20207
- &.k-state-selected:hover,
20208
20108
  &.k-selected,
20209
20109
  &.k-selected:hover {
20210
20110
  @include box-shadow( $colorpalette-tile-selected-shadow );
@@ -20583,7 +20483,6 @@ $colorgradient-contrast-spacer: map-get( $spacing, 2 ) !default;
20583
20483
  }
20584
20484
 
20585
20485
  .k-colorgradient:focus,
20586
- .k-colorgradient.k-state-focus,
20587
20486
  .k-colorgradient.k-focus {
20588
20487
  @include fill( $border: $colorgradient-focus-border );
20589
20488
  @include box-shadow( $colorgradient-focus-shadow );
@@ -20604,16 +20503,15 @@ $colorgradient-contrast-spacer: map-get( $spacing, 2 ) !default;
20604
20503
  @include box-shadow( $colorgradient-draghandle-shadow );
20605
20504
 
20606
20505
  &:focus,
20607
- &.k-state-focus,
20608
20506
  &.k-focus {
20609
20507
  @include fill( $bg: transparent, $border: $white );
20610
20508
  @include box-shadow( $colorgradient-draghandle-focus-shadow );
20611
20509
  }
20612
20510
 
20613
- &:active,
20614
20511
  &:hover,
20615
- &.k-state-hover,
20616
- &.k-hover {
20512
+ &.k-hover,
20513
+ &.k-active,
20514
+ &:active {
20617
20515
  @include fill( $bg: transparent, $border: $white );
20618
20516
  @include box-shadow( $colorgradient-draghandle-hover-shadow );
20619
20517
  }
@@ -20808,7 +20706,6 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
20808
20706
  }
20809
20707
 
20810
20708
  .k-coloreditor:focus,
20811
- .k-coloreditor.k-state-focus,
20812
20709
  .k-coloreditor.k-focus {
20813
20710
  @include fill( $border: $coloreditor-focus-border );
20814
20711
  @include box-shadow( $coloreditor-focus-shadow );
@@ -22155,7 +22052,7 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
22155
22052
  box-sizing: border-box;
22156
22053
  }
22157
22054
 
22158
- &.k-state-readonly {
22055
+ &.k-readonly {
22159
22056
  pointer-events: none;
22160
22057
  }
22161
22058
  }
@@ -22235,7 +22132,6 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
22235
22132
  color: $component-text;
22236
22133
 
22237
22134
  &:focus,
22238
- &.k-state-focused,
22239
22135
  &.k-focus {
22240
22136
 
22241
22137
  .k-rating-item {
@@ -22243,7 +22139,6 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
22243
22139
  text-shadow: $rating-icon-focused-shadow;
22244
22140
  }
22245
22141
 
22246
- &.k-state-selected > .k-icon,
22247
22142
  &.k-selected > .k-icon {
22248
22143
  text-shadow: $rating-icon-focused-selected-shadow;
22249
22144
  }
@@ -22254,19 +22149,16 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
22254
22149
  .k-rating-item {
22255
22150
  color: $rating-icon-text;
22256
22151
 
22257
- &.k-state-selected,
22258
22152
  &.k-selected {
22259
22153
  color: $rating-icon-selected-text;
22260
22154
 
22261
22155
  &:focus,
22262
- &.k-state-focused,
22263
22156
  &.k-focus {
22264
22157
  color: $rating-icon-focused-text;
22265
22158
  }
22266
22159
  }
22267
22160
 
22268
22161
  &:hover,
22269
- &.k-state-hover,
22270
22162
  &.k-hover {
22271
22163
  color: $rating-icon-hover-text;
22272
22164
  cursor: pointer;
@@ -22274,7 +22166,6 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
22274
22166
  }
22275
22167
  }
22276
22168
 
22277
-
22278
22169
  // #endregion
22279
22170
 
22280
22171
  // #endregion
@@ -23560,7 +23451,6 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
23560
23451
  z-index: 1;
23561
23452
  }
23562
23453
  input[disabled],
23563
- input.k-state-disabled,
23564
23454
  input.k-disabled {
23565
23455
  visibility: hidden;
23566
23456
  }
@@ -23608,12 +23498,10 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
23608
23498
 
23609
23499
  .k-file {
23610
23500
 
23611
- &.k-state-focused,
23612
23501
  &.k-focus {
23613
23502
  box-shadow: inset $upload-focused-shadow;
23614
23503
  }
23615
23504
 
23616
- .k-upload-action.k-state-focused,
23617
23505
  .k-upload-action.k-focus {
23618
23506
  box-shadow: $upload-focused-shadow;
23619
23507
  }
@@ -23705,7 +23593,6 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
23705
23593
  }
23706
23594
 
23707
23595
  // Invalid,
23708
- &.k-state-invalid,
23709
23596
  &.k-invalid,
23710
23597
  &.ng-invalid.ng-touched,
23711
23598
  &.ng-invalid.ng-dirty {
@@ -24755,7 +24642,6 @@ $actionsheet-item-disabled-opacity: .42 !default;
24755
24642
 
24756
24643
  // Hover state
24757
24644
  &:hover,
24758
- &.k-state-hover,
24759
24645
  &.k-hover {
24760
24646
  @include fill(
24761
24647
  $actionsheet-item-hover-text,
@@ -24769,7 +24655,6 @@ $actionsheet-item-disabled-opacity: .42 !default;
24769
24655
 
24770
24656
  // Focus state
24771
24657
  &:focus,
24772
- &.k-state-focus,
24773
24658
  &.k-focus {
24774
24659
  @include fill(
24775
24660
  $actionsheet-item-focus-text,
@@ -24783,7 +24668,6 @@ $actionsheet-item-disabled-opacity: .42 !default;
24783
24668
 
24784
24669
  // Disabed state
24785
24670
  &:disabled,
24786
- &.k-state-disabled,
24787
24671
  &.k-disabled {
24788
24672
  @include fill(
24789
24673
  $actionsheet-item-disabled-text,
@@ -25037,7 +24921,6 @@ $actionsheet-item-disabled-opacity: .42 !default;
25037
24921
 
25038
24922
  .k-window {
25039
24923
  &:focus,
25040
- &.k-state-focused,
25041
24924
  &.k-focus {
25042
24925
  @include box-shadow( $window-focused-shadow );
25043
24926
  }
@@ -25573,33 +25456,28 @@ $drawer-selected-hover-text: $secondary !default;
25573
25456
  .k-drawer-item {
25574
25457
 
25575
25458
  &:hover,
25576
- &.k-state-hover,
25577
25459
  &.k-hover {
25578
25460
  color: $drawer-hovered-text;
25579
25461
  background-color: $drawer-hovered-bg;
25580
25462
  }
25581
25463
 
25582
25464
  &:focus,
25583
- &.k-state-focused,
25584
25465
  &.k-focus {
25585
25466
  background-color: $drawer-focused-bg;
25586
25467
  box-shadow: $drawer-focused-shadow;
25587
25468
 
25588
25469
  &:hover,
25589
- &.k-state-hover,
25590
25470
  &.k-hover {
25591
25471
  color: $drawer-hovered-text;
25592
25472
  background-color: $drawer-hovered-bg;
25593
25473
  }
25594
25474
  }
25595
25475
 
25596
- &.k-state-selected,
25597
25476
  &.k-selected {
25598
25477
  color: $drawer-selected-text;
25599
25478
  background-color: $drawer-selected-bg;
25600
25479
 
25601
25480
  &:hover,
25602
- &.k-state-hover,
25603
25481
  &.k-hover {
25604
25482
  color: $drawer-selected-hover-text;
25605
25483
  background-color: $drawer-selected-hover-bg;
@@ -25615,18 +25493,18 @@ $drawer-selected-hover-text: $secondary !default;
25615
25493
  // #endregion
25616
25494
 
25617
25495
  @include exports( "drawer/theme/material" ) {
25496
+
25618
25497
  .k-drawer-item {
25619
- &.k-state-selected,
25620
25498
  &.k-selected {
25621
25499
 
25622
25500
  &:focus,
25623
- &.k-state-focused,
25624
25501
  &.k-focus {
25625
25502
  background-color: $drawer-focused-bg;
25626
25503
  box-shadow: $drawer-focused-shadow;
25627
25504
  }
25628
25505
  }
25629
25506
  }
25507
+
25630
25508
  }
25631
25509
 
25632
25510
  // #endregion
@@ -26357,8 +26235,7 @@ $card-callout-height: 20px !default;
26357
26235
  }
26358
26236
 
26359
26237
  &:focus,
26360
- &.k-focus,
26361
- &.k-state-focus {
26238
+ &.k-focus {
26362
26239
  @include fill(
26363
26240
  $card-focus-text,
26364
26241
  $card-focus-bg,
@@ -26367,8 +26244,7 @@ $card-callout-height: 20px !default;
26367
26244
  @include box-shadow( $card-focus-shadow );
26368
26245
  }
26369
26246
 
26370
- &.k-selected,
26371
- &.k-state-selected {
26247
+ &.k-selected {
26372
26248
  @include box-shadow( $card-focus-shadow );
26373
26249
  }
26374
26250
  }
@@ -26420,10 +26296,8 @@ $card-callout-height: 20px !default;
26420
26296
 
26421
26297
 
26422
26298
  .k-card-wrap {
26423
- &.k-state-focused,
26424
- &.k-focus,
26425
26299
  &:focus,
26426
- &.k-state-selected,
26300
+ &.k-focus,
26427
26301
  &.k-selected {
26428
26302
  > .k-card {
26429
26303
  @include box-shadow( $card-focus-shadow );
@@ -26857,7 +26731,6 @@ $bottom-nav-flat-border: $component-border !default;
26857
26731
  outline: 0;
26858
26732
  }
26859
26733
  }
26860
- .k-bottom-nav-item.k-state-disabled,
26861
26734
  .k-bottom-nav-item.k-disabled {
26862
26735
  background-color: initial;
26863
26736
  }
@@ -26904,15 +26777,11 @@ $bottom-nav-flat-border: $component-border !default;
26904
26777
  $bg: $color
26905
26778
  );
26906
26779
 
26907
- .k-bottom-nav-item.k-state-focus,
26908
- .k-bottom-nav-item.k-focus,
26909
- .k-bottom-nav-item.k-state-focused,
26910
26780
  .k-bottom-nav-item.k-focus,
26911
26781
  .k-bottom-nav-item:focus {
26912
26782
  @include fill( $bg: rgba(true-mix( $color, contrast-wcag( $color ), 35%), .2));
26913
26783
  }
26914
26784
 
26915
- .k-bottom-nav-item.k-state-selected,
26916
26785
  .k-bottom-nav-item.k-selected {
26917
26786
  @include fill( $color: contrast-wcag( $color ) );
26918
26787
  }
@@ -26927,16 +26796,12 @@ $bottom-nav-flat-border: $component-border !default;
26927
26796
  $bottom-nav-flat-border
26928
26797
  );
26929
26798
 
26930
- .k-bottom-nav-item.k-state-focus,
26931
- .k-bottom-nav-item.k-focus,
26932
- .k-bottom-nav-item.k-state-focused,
26933
26799
  .k-bottom-nav-item.k-focus,
26934
26800
  .k-bottom-nav-item:focus {
26935
26801
  @include fill( $bg: rgba($bottom-nav-flat-text, .05) );
26936
26802
  }
26937
26803
 
26938
26804
  @each $name, $color in $kendo-theme-colors {
26939
- &.k-bottom-nav-#{$name} .k-bottom-nav-item.k-state-selected,
26940
26805
  &.k-bottom-nav-#{$name} .k-bottom-nav-item.k-selected {
26941
26806
  @if $name == "secondary" or $name == "light" {
26942
26807
  @include fill( $color: try-shade($color, 3) );
@@ -27197,7 +27062,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
27197
27062
  );
27198
27063
 
27199
27064
  &:focus,
27200
- &.k-state-focused,
27201
27065
  &.k-focus {
27202
27066
  @include box-shadow( $breadcrumb-focused-shadow );
27203
27067
  }
@@ -27214,7 +27078,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
27214
27078
 
27215
27079
  // Hovered state
27216
27080
  &:hover,
27217
- &.k-state-hover,
27218
27081
  &.k-hover {
27219
27082
  @include fill(
27220
27083
  $breadcrumb-link-hovered-text,
@@ -27225,7 +27088,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
27225
27088
 
27226
27089
  // Focused state
27227
27090
  &:focus,
27228
- &.k-state-focused,
27229
27091
  &.k-focus {
27230
27092
  @include fill(
27231
27093
  $breadcrumb-link-focused-text,
@@ -27247,7 +27109,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
27247
27109
 
27248
27110
  // Hovered state
27249
27111
  &:hover,
27250
- &.k-state-hover,
27251
27112
  &.k-hover {
27252
27113
  @include fill(
27253
27114
  $breadcrumb-root-link-hovered-text,
@@ -27258,7 +27119,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
27258
27119
 
27259
27120
  // Focused state
27260
27121
  &:focus,
27261
- &.k-state-focused,
27262
27122
  &.k-focus {
27263
27123
  @include fill(
27264
27124
  $breadcrumb-root-link-focused-text,
@@ -27408,7 +27268,6 @@ $pager-dropdown-width: 5em !default;
27408
27268
 
27409
27269
  // Focused state
27410
27270
  &:focus,
27411
- &.k-state-focus,
27412
27271
  &.k-focus {
27413
27272
  z-index: 3;
27414
27273
  }
@@ -27462,7 +27321,6 @@ $pager-dropdown-width: 5em !default;
27462
27321
  &:hover {
27463
27322
  z-index: 2;
27464
27323
  }
27465
- &.k-state-disabled,
27466
27324
  &.k-disabled {
27467
27325
  color: inherit;
27468
27326
  }
@@ -27512,7 +27370,6 @@ $pager-dropdown-width: 5em !default;
27512
27370
  }
27513
27371
 
27514
27372
  // Selected state
27515
- .k-state-selected,
27516
27373
  .k-selected {
27517
27374
  cursor: inherit;
27518
27375
  z-index: 2;
@@ -27678,9 +27535,6 @@ $pager-dropdown-width: 5em !default;
27678
27535
  );
27679
27536
 
27680
27537
  &:focus,
27681
- &.k-focus,
27682
- &.k-state-focus,
27683
- &.k-state-focused,
27684
27538
  &.k-focus {
27685
27539
  @include fill( $bg: $pager-focus-bg );
27686
27540
  @include box-shadow( $pager-focus-shadow );
@@ -27696,7 +27550,6 @@ $pager-dropdown-width: 5em !default;
27696
27550
  );
27697
27551
 
27698
27552
  &:hover,
27699
- &.k-state-hover,
27700
27553
  &.k-hover {
27701
27554
  @include fill(
27702
27555
  $pager-item-hover-text,
@@ -27705,7 +27558,6 @@ $pager-dropdown-width: 5em !default;
27705
27558
  );
27706
27559
  }
27707
27560
 
27708
- &.k-state-selected,
27709
27561
  &.k-selected {
27710
27562
  @include fill(
27711
27563
  $pager-item-selected-text,
@@ -27715,7 +27567,6 @@ $pager-dropdown-width: 5em !default;
27715
27567
  }
27716
27568
 
27717
27569
  &:focus,
27718
- &.k-state-focus,
27719
27570
  &.k-focus {
27720
27571
  background-color: $pager-item-focus-bg;
27721
27572
  @include box-shadow( $pager-item-focus-shadow );
@@ -27739,7 +27590,6 @@ $pager-dropdown-width: 5em !default;
27739
27590
  );
27740
27591
 
27741
27592
  &:hover,
27742
- &.k-state-hover,
27743
27593
  &.k-hover {
27744
27594
  @include fill(
27745
27595
  $pager-number-hover-text,
@@ -27749,13 +27599,11 @@ $pager-dropdown-width: 5em !default;
27749
27599
  }
27750
27600
 
27751
27601
  &:focus,
27752
- &.k-state-focus,
27753
27602
  &.k-focus {
27754
27603
  background-color: $pager-number-focus-bg;
27755
27604
  @include box-shadow( $pager-number-focus-shadow );
27756
27605
  }
27757
27606
 
27758
- &.k-state-selected,
27759
27607
  &.k-selected {
27760
27608
  @include fill(
27761
27609
  $pager-number-selected-text,
@@ -27788,7 +27636,6 @@ $pager-dropdown-width: 5em !default;
27788
27636
  );
27789
27637
 
27790
27638
  &:hover,
27791
- &.k-state-hover,
27792
27639
  &.k-hover {
27793
27640
  @include fill(
27794
27641
  $dropdownlist-hovered-text,
@@ -27798,7 +27645,7 @@ $pager-dropdown-width: 5em !default;
27798
27645
  }
27799
27646
  }
27800
27647
 
27801
- &.k-state-expanded {
27648
+ &.k-expanded {
27802
27649
  @include fill(
27803
27650
  $popup-text,
27804
27651
  $popup-bg,
@@ -27809,7 +27656,6 @@ $pager-dropdown-width: 5em !default;
27809
27656
  .k-link {
27810
27657
 
27811
27658
  &:hover,
27812
- &.k-state-hover,
27813
27659
  &.k-hover {
27814
27660
  @include fill(
27815
27661
  $kendo-list-item-hover-text,
@@ -27817,7 +27663,6 @@ $pager-dropdown-width: 5em !default;
27817
27663
  );
27818
27664
  }
27819
27665
 
27820
- &.k-state-selected,
27821
27666
  &.k-selected {
27822
27667
  @include fill(
27823
27668
  $kendo-list-item-selected-text,
@@ -28451,7 +28296,6 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
28451
28296
  $bg: $stepper-progressbar-bg
28452
28297
  );
28453
28298
 
28454
- .k-state-selected,
28455
28299
  .k-selected {
28456
28300
  @include fill(
28457
28301
  $color: $stepper-progressbar-fill-text,
@@ -28702,13 +28546,11 @@ $tabstrip-content-border-focused: $component-text !default;
28702
28546
  position: relative;
28703
28547
  z-index: 1;
28704
28548
 
28705
- &.k-state-active,
28706
28549
  &.k-active {
28707
28550
  display: block;
28708
28551
  }
28709
28552
 
28710
28553
  &:focus,
28711
- &.k-state-focused,
28712
28554
  &.k-focus {
28713
28555
  outline-width: 1px;
28714
28556
  outline-style: dotted;
@@ -28797,7 +28639,6 @@ $tabstrip-content-border-focused: $component-text !default;
28797
28639
  margin-left: $tabstrip-item-gap;
28798
28640
  }
28799
28641
 
28800
- .k-item.k-state-active,
28801
28642
  .k-item.k-active {
28802
28643
  border-bottom-color: transparent;
28803
28644
  }
@@ -28827,7 +28668,6 @@ $tabstrip-content-border-focused: $component-text !default;
28827
28668
  margin-left: $tabstrip-item-gap;
28828
28669
  }
28829
28670
 
28830
- .k-item.k-state-active,
28831
28671
  .k-item.k-active {
28832
28672
  border-top-color: transparent;
28833
28673
  }
@@ -28861,7 +28701,6 @@ $tabstrip-content-border-focused: $component-text !default;
28861
28701
  margin-top: $tabstrip-item-gap;
28862
28702
  }
28863
28703
 
28864
- .k-item.k-state-active,
28865
28704
  .k-item.k-active {
28866
28705
  border-right-color: transparent;
28867
28706
  }
@@ -28897,7 +28736,6 @@ $tabstrip-content-border-focused: $component-text !default;
28897
28736
  margin-top: $tabstrip-item-gap;
28898
28737
  }
28899
28738
 
28900
- .k-item.k-state-active,
28901
28739
  .k-item.k-active {
28902
28740
  border-left-color: transparent;
28903
28741
  }
@@ -28943,7 +28781,6 @@ $tabstrip-content-border-focused: $component-text !default;
28943
28781
  border-left-width: $tabstrip-indicator-size;
28944
28782
  }
28945
28783
  }
28946
- .k-item.k-state-active::after,
28947
28784
  .k-item.k-active::after {
28948
28785
  display: block;
28949
28786
  }
@@ -29038,7 +28875,6 @@ $tabstrip-content-border-focused: $component-text !default;
29038
28875
  );
29039
28876
 
29040
28877
  &:hover,
29041
- &.k-state-hover,
29042
28878
  &.k-hover {
29043
28879
  @include fill(
29044
28880
  $tabstrip-item-hovered-text,
@@ -29049,9 +28885,7 @@ $tabstrip-content-border-focused: $component-text !default;
29049
28885
  }
29050
28886
 
29051
28887
  &:active,
29052
- &.k-state-active,
29053
28888
  &.k-active,
29054
- &.k-state-selected,
29055
28889
  &.k-selected {
29056
28890
  @include fill(
29057
28891
  $tabstrip-item-selected-text,
@@ -29062,7 +28896,6 @@ $tabstrip-content-border-focused: $component-text !default;
29062
28896
  }
29063
28897
 
29064
28898
  &:focus,
29065
- &.k-state-focused,
29066
28899
  &.k-focus {
29067
28900
  @include box-shadow( $tabstrip-item-focused-shadow );
29068
28901
  }
@@ -29085,7 +28918,6 @@ $tabstrip-content-border-focused: $component-text !default;
29085
28918
  );
29086
28919
 
29087
28920
  &:focus,
29088
- &.k-state-focused,
29089
28921
  &.k-focus {
29090
28922
  outline-color: $tabstrip-content-border-focused;
29091
28923
  }
@@ -29096,7 +28928,6 @@ $tabstrip-content-border-focused: $component-text !default;
29096
28928
  @if ($tabstrip-indicator-size) {
29097
28929
 
29098
28930
  .k-tabstrip-items-wrapper {
29099
- .k-item.k-state-active::after,
29100
28931
  .k-item.k-active::after {
29101
28932
  border-color: $tabstrip-indicator-color;
29102
28933
  }
@@ -29202,7 +29033,6 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
29202
29033
  justify-content: space-between;
29203
29034
 
29204
29035
  &:focus,
29205
- &.k-state-focused,
29206
29036
  &.k-focus {
29207
29037
  outline-width: 1px;
29208
29038
  outline-style: dotted;
@@ -29297,20 +29127,20 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
29297
29127
  // #region @import "_theme.scss"; -> packages/material/scss/wizard/_theme.scss
29298
29128
  // #region @import "~@progress/kendo-theme-default/scss/wizard/_theme.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/wizard/_theme.scss
29299
29129
  @include exports("wizard/theme") {
29130
+
29300
29131
  .k-wizard-step {
29301
29132
  &:focus,
29302
- &.k-state-focused,
29303
29133
  &.k-focus {
29304
29134
  outline-color: $wizard-step-border-focused;
29305
29135
  }
29306
29136
 
29307
29137
  .k-ie &:focus,
29308
- .k-ie &.k-state-focused,
29309
29138
  .k-ie &.k-focus {
29310
29139
  @include box-shadow($wizard-focused-shadow);
29311
29140
  outline: none;
29312
29141
  }
29313
29142
  }
29143
+
29314
29144
  }
29315
29145
 
29316
29146
  // #endregion
@@ -29476,7 +29306,6 @@ $expander-content-padding-y: $padding-y * 6 !default;
29476
29306
  $expander-border
29477
29307
  );
29478
29308
 
29479
- &.k-state-focus,
29480
29309
  &.k-focus {
29481
29310
  box-shadow: $expander-focus-shadow;
29482
29311
  }
@@ -29491,13 +29320,10 @@ $expander-content-padding-y: $padding-y * 6 !default;
29491
29320
  outline: none;
29492
29321
 
29493
29322
  &:hover,
29494
- &.k-state-hover,
29495
29323
  &.k-hover {
29496
29324
  background-color: $expander-header-hover-bg;
29497
29325
  }
29498
29326
 
29499
- // Should be removed
29500
- &.k-state-focused,
29501
29327
  &.k-focus {
29502
29328
  background-color: $expander-header-focused-bg;
29503
29329
  box-shadow: $expander-header-focused-shadow;
@@ -29744,6 +29570,10 @@ $panelbar-header-expanded-gradient: null !default;
29744
29570
  }
29745
29571
  }
29746
29572
 
29573
+ // Panelbar item
29574
+ .k-panelbar-item {
29575
+ outline-style: none;
29576
+ }
29747
29577
 
29748
29578
  // Panelbar content
29749
29579
  .k-panelbar-content {
@@ -29845,7 +29675,6 @@ $panelbar-header-expanded-gradient: null !default;
29845
29675
  > .k-item,
29846
29676
  > .k-panelbar-header {
29847
29677
 
29848
- &.k-state-expanded.k-level-0 > .k-link,
29849
29678
  &.k-expanded.k-level-0 > .k-link {
29850
29679
  @include fill(
29851
29680
  $panelbar-header-expanded-text,
@@ -29872,7 +29701,6 @@ $panelbar-header-expanded-gradient: null !default;
29872
29701
 
29873
29702
  // Hover
29874
29703
  > .k-link:hover,
29875
- > .k-link.k-state-hover,
29876
29704
  > .k-link.k-hover {
29877
29705
  @include fill(
29878
29706
  $panelbar-header-hovered-text,
@@ -29884,9 +29712,6 @@ $panelbar-header-expanded-gradient: null !default;
29884
29712
 
29885
29713
  // Focus
29886
29714
  > .k-link:focus,
29887
- > .k-link.k-state-focus,
29888
- > .k-link.k-focus,
29889
- > .k-link.k-state-focused,
29890
29715
  > .k-link.k-focus {
29891
29716
  @include fill(
29892
29717
  $panelbar-header-focused-text,
@@ -29899,7 +29724,6 @@ $panelbar-header-expanded-gradient: null !default;
29899
29724
 
29900
29725
  // Focus & Hover
29901
29726
  > .k-link:focus:hover,
29902
- > .k-link.k-state-focus.k-state-hover,
29903
29727
  > .k-link.k-focus.k-hover {
29904
29728
  @include fill(
29905
29729
  $panelbar-header-hovered-focused-text,
@@ -29910,7 +29734,6 @@ $panelbar-header-expanded-gradient: null !default;
29910
29734
  }
29911
29735
 
29912
29736
  // Selected
29913
- > .k-link.k-state-selected,
29914
29737
  > .k-link.k-selected {
29915
29738
  @include fill(
29916
29739
  $panelbar-header-selected-text,
@@ -29926,9 +29749,7 @@ $panelbar-header-expanded-gradient: null !default;
29926
29749
  }
29927
29750
 
29928
29751
  // Selected Hover
29929
- > .k-link.k-state-selected:hover,
29930
29752
  > .k-link.k-selected:hover,
29931
- > .k-link.k-state-selected.k-state-hover,
29932
29753
  > .k-link.k-selected.k-hover {
29933
29754
  @include fill(
29934
29755
  $panelbar-header-selected-hovered-text,
@@ -29939,12 +29760,8 @@ $panelbar-header-expanded-gradient: null !default;
29939
29760
  }
29940
29761
 
29941
29762
  // Selected Focus
29942
- > .k-link.k-state-selected:focus,
29943
29763
  > .k-link.k-selected:focus,
29944
- > .k-link.k-state-selected.k-state-focus,
29945
- > .k-link.k-selected.k-focus,
29946
- > .k-link.k-state-selected.k-state-focused,
29947
- > .k-link.k-selected.k-focused {
29764
+ > .k-link.k-selected.k-focus {
29948
29765
  @include fill(
29949
29766
  $panelbar-header-selected-focused-text,
29950
29767
  $panelbar-header-selected-focused-bg,
@@ -29954,12 +29771,8 @@ $panelbar-header-expanded-gradient: null !default;
29954
29771
  }
29955
29772
 
29956
29773
  // Selected Focus & Hover
29957
- > .k-link.k-state-selected:hover:focus,
29958
29774
  > .k-link.k-selected:hover:focus,
29959
- > .k-link.k-state-selected.k-state-hover.k-state-focus,
29960
- > .k-link.k-selected.k-hover.k-state-focus,
29961
- > .k-link.k-state-selected.k-state-hover.k-state-focused,
29962
- > .k-link.k-selected.k-hover.k-state-focused {
29775
+ > .k-link.k-selected.k-hover.k-focus {
29963
29776
  @include fill(
29964
29777
  $panelbar-header-selected-hovered-focused-text,
29965
29778
  $panelbar-header-selected-hovered-focused-bg,
@@ -29976,10 +29789,8 @@ $panelbar-header-expanded-gradient: null !default;
29976
29789
 
29977
29790
  // Hover
29978
29791
  > .k-item > .k-link:hover,
29979
- > .k-item > .k-link.k-state-hover,
29980
29792
  > .k-item > .k-link.k-hover,
29981
29793
  > .k-panelbar-item > .k-link:hover,
29982
- > .k-panelbar-item > .k-link.k-state-hover,
29983
29794
  > .k-panelbar-item > .k-link.k-hover {
29984
29795
  @include fill(
29985
29796
  $panelbar-item-hovered-text,
@@ -29991,14 +29802,8 @@ $panelbar-header-expanded-gradient: null !default;
29991
29802
 
29992
29803
  // Focus
29993
29804
  > .k-item > .k-link:focus,
29994
- > .k-item > .k-link.k-state-focus,
29995
- > .k-item > .k-link.k-focus,
29996
- > .k-item > .k-link.k-state-focused,
29997
29805
  > .k-item > .k-link.k-focus,
29998
29806
  > .k-panelbar-item > .k-link:focus,
29999
- > .k-panelbar-item > .k-link.k-state-focus,
30000
- > .k-panelbar-item > .k-link.k-focus,
30001
- > .k-panelbar-item > .k-link.k-state-focused,
30002
29807
  > .k-panelbar-item > .k-link.k-focus {
30003
29808
  @include fill(
30004
29809
  $panelbar-item-focused-text,
@@ -30011,10 +29816,8 @@ $panelbar-header-expanded-gradient: null !default;
30011
29816
 
30012
29817
  // Focus & Hover
30013
29818
  > .k-item > .k-link:focus:hover,
30014
- > .k-item > .k-link.k-state-focus.k-state-hover,
30015
29819
  > .k-item > .k-link.k-focus.k-hover,
30016
29820
  > .k-panelbar-item > .k-link:focus:hover,
30017
- > .k-panelbar-item > .k-link.k-state-focus.k-state-hover,
30018
29821
  > .k-panelbar-item > .k-link.k-focus.k-hover {
30019
29822
  @include fill(
30020
29823
  $panelbar-item-hovered-focused-text,
@@ -30025,9 +29828,7 @@ $panelbar-header-expanded-gradient: null !default;
30025
29828
  }
30026
29829
 
30027
29830
  // Selected
30028
- > .k-item > .k-link.k-state-selected,
30029
29831
  > .k-item > .k-link.k-selected,
30030
- > .k-panelbar-item > .k-link.k-state-selected,
30031
29832
  > .k-panelbar-item > .k-link.k-selected {
30032
29833
  @include fill(
30033
29834
  $panelbar-item-selected-text,
@@ -30038,13 +29839,9 @@ $panelbar-header-expanded-gradient: null !default;
30038
29839
  }
30039
29840
 
30040
29841
  // Selected Hover
30041
- > .k-item > .k-link.k-state-selected:hover,
30042
29842
  > .k-item > .k-link.k-selected:hover,
30043
- > .k-item > .k-link.k-state-selected.k-state-hover,
30044
29843
  > .k-item > .k-link.k-selected.k-hover,
30045
- > .k-panelbar-item > .k-link.k-state-selected:hover,
30046
29844
  > .k-panelbar-item > .k-link.k-selected:hover,
30047
- > .k-panelbar-item > .k-link.k-state-selected.k-state-hover,
30048
29845
  > .k-panelbar-item > .k-link.k-selected.k-hover {
30049
29846
  @include fill(
30050
29847
  $panelbar-item-selected-hovered-text,
@@ -30055,18 +29852,10 @@ $panelbar-header-expanded-gradient: null !default;
30055
29852
  }
30056
29853
 
30057
29854
  // Selected Focus
30058
- > .k-item > .k-link.k-state-selected:focus,
30059
29855
  > .k-item > .k-link.k-selected:focus,
30060
- > .k-item > .k-link.k-state-selected.k-state-focus,
30061
29856
  > .k-item > .k-link.k-selected.k-focus,
30062
- > .k-item > .k-link.k-state-selected.k-state-focused,
30063
- > .k-item > .k-link.k-selected.k-focused,
30064
- > .k-panelbar-item > .k-link.k-state-selected:focus,
30065
29857
  > .k-panelbar-item > .k-link.k-selected:focus,
30066
- > .k-panelbar-item > .k-link.k-state-selected.k-state-focus,
30067
- > .k-panelbar-item > .k-link.k-selected.k-focus,
30068
- > .k-item > .k-link.k-state-selected.k-state-focused,
30069
- > .k-item > .k-link.k-selected.k-focused {
29858
+ > .k-panelbar-item > .k-link.k-selected.k-focus {
30070
29859
  @include fill(
30071
29860
  $panelbar-item-selected-focused-text,
30072
29861
  $panelbar-item-selected-focused-bg,
@@ -30076,18 +29865,10 @@ $panelbar-header-expanded-gradient: null !default;
30076
29865
  }
30077
29866
 
30078
29867
  // Selected Focus & Hover
30079
- > .k-item > .k-link.k-state-selected:focus:hover,
30080
29868
  > .k-item > .k-link.k-selected:focus:hover,
30081
- > .k-item > .k-link.k-state-selected.k-state-focus.k-state-hover,
30082
- > .k-item > .k-link.k-selected.k-focus.k-state-hover,
30083
- > .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover,
30084
- > .k-item > .k-link.k-selected.k-focused.k-state-hover,
30085
- > .k-panelbar-item > .k-link.k-state-selected:focus:hover,
29869
+ > .k-item > .k-link.k-selected.k-focus.k-hover,
30086
29870
  > .k-panelbar-item > .k-link.k-selected:focus:hover,
30087
- > .k-panelbar-item > .k-link.k-state-selected.k-state-focus.k-state-hover,
30088
- > .k-panelbar-item > .k-link.k-selected.k-focus.k-state-hover,
30089
- > .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover,
30090
- > .k-item > .k-link.k-selected.k-focused.k-state-hover {
29871
+ > .k-panelbar-item > .k-link.k-selected.k-focus.k-hover {
30091
29872
  @include fill(
30092
29873
  $panelbar-item-selected-hovered-focused-text,
30093
29874
  $panelbar-item-selected-hovered-focused-bg,
@@ -30325,7 +30106,7 @@ $splitbar-selected-text: $primary-contrast !default;
30325
30106
 
30326
30107
  .k-pane,
30327
30108
  .k-pane-flex {
30328
- &.k-state-hidden,
30109
+ &.k-hidden,
30329
30110
  &[hidden] {
30330
30111
  // sass-lint:disable-block no-important
30331
30112
  // hidden panes need to be zero-width to allow pane animation
@@ -30374,7 +30155,6 @@ $splitbar-selected-text: $primary-contrast !default;
30374
30155
  background-color: $splitbar-bg;
30375
30156
  }
30376
30157
  .k-splitbar:hover,
30377
- .k-splitbar.k-state-hover,
30378
30158
  .k-splitbar.k-hover,
30379
30159
  .k-splitbar-horizontal-hover,
30380
30160
  .k-splitbar-vertical-hover {
@@ -30382,9 +30162,6 @@ $splitbar-selected-text: $primary-contrast !default;
30382
30162
  background-color: $splitbar-hover-bg;
30383
30163
  }
30384
30164
  .k-splitbar:focus,
30385
- .k-splitbar.k-state-focus,
30386
- .k-splitbar.k-focus,
30387
- .k-splitbar.k-state-focused,
30388
30165
  .k-splitbar.k-focus {
30389
30166
  color: $splitbar-selected-text;
30390
30167
  background: $splitbar-selected-bg;
@@ -30495,9 +30272,6 @@ $tilelayout-hint-border: $component-border !default;
30495
30272
  }
30496
30273
 
30497
30274
  .k-tilelayout-item:focus,
30498
- .k-tilelayout-item.k-focus,
30499
- .k-tilelayout-item.k-state-focus,
30500
- .k-tilelayout-item.k-state-focused,
30501
30275
  .k-tilelayout-item.k-focus {
30502
30276
  @include box-shadow($tilelayout-card-focus-shadow);
30503
30277
  }
@@ -31175,12 +30949,10 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
31175
30949
 
31176
30950
  .k-column-menu {
31177
30951
 
31178
- .k-listgroup-item.k-state-selected,
31179
30952
  .k-listgroup-item.k-selected {
31180
30953
  color: $adaptive-grid-sort-text;
31181
30954
  background: none;
31182
30955
  }
31183
- .k-listgroup-item.k-state-selected .k-link,
31184
30956
  .k-listgroup-item.k-selected .k-link {
31185
30957
  color: inherit;
31186
30958
  }
@@ -32939,33 +32711,28 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
32939
32711
  }
32940
32712
 
32941
32713
  // Hover state
32942
- tbody>tr:not(.k-detail-row):hover,
32943
- tbody>tr:not(.k-detail-row).k-state-hover,
32944
- tbody>tr:not(.k-detail-row).k-hover {
32714
+ tbody > tr:not(.k-detail-row):hover,
32715
+ tbody > tr:not(.k-detail-row).k-hover {
32945
32716
  color: $grid-hovered-text;
32946
32717
  background-color: $grid-hovered-bg;
32947
32718
  }
32948
32719
 
32949
32720
  // Selected state
32950
- td.k-state-selected,
32951
32721
  td.k-selected,
32952
- tr.k-state-selected > td,
32953
32722
  tr.k-selected > td {
32954
32723
  color: $grid-selected-text;
32955
32724
  background-color: $grid-selected-bg;
32956
32725
  }
32957
32726
 
32958
32727
  // Focused state
32959
- td.k-state-focused,
32728
+ td:focus,
32960
32729
  td.k-focus,
32961
- th.k-state-focused,
32962
- th.k-focus,
32963
32730
  th:focus,
32731
+ th.k-focus,
32964
32732
  .k-master-row > td:focus,
32965
32733
  .k-grouping-row > td:focus,
32966
32734
  .k-detail-row > td:focus,
32967
32735
  .k-group-footer > td:focus,
32968
- .k-grid-pager.k-state-focused,
32969
32736
  .k-grid-pager.k-focus {
32970
32737
  box-shadow: $grid-focused-shadow;
32971
32738
  }
@@ -33009,20 +32776,16 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33009
32776
  }
33010
32777
 
33011
32778
  // Selected state
33012
- .k-state-selected td,
33013
32779
  .k-selected td {
33014
32780
  @include fill( $bg: $grid-sticky-selected-bg );
33015
32781
  }
33016
32782
 
33017
- .k-state-selected.k-alt td,
33018
32783
  .k-selected.k-alt td {
33019
32784
  @include fill( $bg: $grid-sticky-selected-alt-bg );
33020
32785
  }
33021
32786
 
33022
32787
  // Selected hover
33023
- .k-state-selected:hover td,
33024
32788
  .k-selected:hover td,
33025
- .k-state-selected.k-state-hover td,
33026
32789
  .k-selected.k-hover td {
33027
32790
  @include fill( $bg: $grid-sticky-selected-hovered-bg );
33028
32791
  }
@@ -33066,12 +32829,9 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33066
32829
  background-color: $kendo-button-hover-bg;
33067
32830
  }
33068
32831
  &:focus,
33069
- &.k-state-focus,
33070
- &.k-focus,
33071
- &.k-state-border-down {
32832
+ &.k-focus {
33072
32833
  box-shadow: inset 0 0 0 2px rgba( 0, 0, 0, .1 );
33073
32834
  }
33074
- &.k-state-active,
33075
32835
  &.k-active {
33076
32836
  color: $selected-text;
33077
32837
  background-color: $selected-bg;
@@ -33127,20 +32887,14 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33127
32887
  }
33128
32888
 
33129
32889
  // Selected state
33130
- &.k-state-selected .k-grid-content-sticky,
33131
32890
  &.k-selected .k-grid-content-sticky,
33132
- &.k-state-selected .k-grid-row-sticky,
33133
32891
  &.k-selected .k-grid-row-sticky,
33134
- td.k-grid-content-sticky.k-state-selected,
33135
32892
  td.k-grid-content-sticky.k-selected {
33136
32893
  @include fill( $bg: $grid-sticky-selected-bg );
33137
32894
  }
33138
32895
 
33139
- &.k-state-selected.k-alt .k-grid-content-sticky,
33140
32896
  &.k-selected.k-alt .k-grid-content-sticky,
33141
- &.k-state-selected.k-alt .k-grid-row-sticky,
33142
32897
  &.k-selected.k-alt .k-grid-row-sticky,
33143
- &.k-alt td.k-grid-content-sticky.k-state-selected,
33144
32898
  &.k-alt td.k-grid-content-sticky.k-selected {
33145
32899
  @include fill( $bg: $grid-sticky-selected-alt-bg );
33146
32900
  }
@@ -33149,26 +32903,18 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33149
32903
  // Hovered state
33150
32904
  &:hover .k-grid-content-sticky,
33151
32905
  &:hover .k-grid-row-sticky,
33152
- &.k-state-hover .k-grid-content-sticky,
33153
32906
  &.k-hover .k-grid-content-sticky,
33154
- &.k-state-hover .k-grid-row-sticky,
33155
32907
  &.k-hover .k-grid-row-sticky {
33156
32908
  background-color: $grid-sticky-hovered-bg;
33157
32909
  }
33158
32910
 
33159
32911
 
33160
32912
  // Selected hover
33161
- &.k-state-selected:hover .k-grid-content-sticky,
33162
32913
  &.k-selected:hover .k-grid-content-sticky,
33163
- &.k-state-selected:hover .k-grid-row-sticky,
33164
32914
  &.k-selected:hover .k-grid-row-sticky,
33165
- &.k-state-selected.k-state-hover .k-grid-content-sticky,
33166
32915
  &.k-selected.k-hover .k-grid-content-sticky,
33167
- &.k-state-selected.k-state-hover .k-grid-row-sticky,
33168
32916
  &.k-selected.k-hover .k-grid-row-sticky,
33169
- &:hover td.k-grid-content-sticky.k-state-selected,
33170
32917
  &:hover td.k-grid-content-sticky.k-selected,
33171
- &.k-state-hover td.k-grid-content-sticky.k-state-selected,
33172
32918
  &.k-hover td.k-grid-content-sticky.k-selected {
33173
32919
  background-color: $grid-sticky-selected-hovered-bg;
33174
32920
  }
@@ -33182,7 +32928,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33182
32928
  background-color: $grid-sticky-bg;
33183
32929
 
33184
32930
  &:hover,
33185
- &.k-state-hover,
33186
32931
  &.k-hover {
33187
32932
  background-color: $grid-sticky-hovered-bg;
33188
32933
  }
@@ -33196,7 +32941,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33196
32941
  }
33197
32942
 
33198
32943
  &:hover td,
33199
- &.k-state-hover td,
33200
32944
  &.k-hover td {
33201
32945
  background-color: $grid-sticky-hovered-bg;
33202
32946
  }
@@ -33208,66 +32952,43 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33208
32952
  }
33209
32953
 
33210
32954
  // Selected state
33211
- tr.k-state-selected .k-grid-content-sticky,
33212
32955
  tr.k-selected .k-grid-content-sticky,
33213
- .k-state-selected.k-grid-row-sticky td,
33214
32956
  .k-selected.k-grid-row-sticky td,
33215
- .k-grid-row-sticky td.k-state-selected,
33216
32957
  .k-grid-row-sticky td.k-selected,
33217
- .k-state-selected.k-grid-content-sticky,
33218
32958
  .k-selected.k-grid-content-sticky {
33219
32959
  @include fill( $bg: $grid-sticky-selected-bg );
33220
32960
  }
33221
32961
 
33222
- tr.k-state-selected.k-alt .k-grid-content-sticky,
33223
32962
  tr.k-selected.k-alt .k-grid-content-sticky,
33224
- .k-state-selected.k-alt.k-grid-row-sticky td,
33225
32963
  .k-selected.k-alt.k-grid-row-sticky td,
33226
- .k-alt .k-state-selected.k-grid-content-sticky,
33227
32964
  .k-alt .k-selected.k-grid-content-sticky {
33228
32965
  @include fill( $bg: $grid-sticky-selected-alt-bg );
33229
32966
  }
33230
32967
 
33231
32968
  // Hover state
33232
32969
  tr:hover .k-grid-content-sticky,
33233
- tr.k-state-hover .k-grid-content-sticky,
33234
32970
  tr.k-hover .k-grid-content-sticky,
33235
32971
  .k-grid-row-sticky:hover td,
33236
- .k-grid-row-sticky.k-state-hover td,
33237
32972
  .k-grid-row-sticky.k-hover td,
33238
32973
  .k-grid-row-sticky.k-alt:hover td,
33239
- .k-grid-row-sticky.k-alt.k-state-hover td,
33240
32974
  .k-grid-row-sticky.k-alt.k-hover td,
33241
32975
  .k-alt:hover .k-grid-content-sticky,
33242
- .k-alt.k-state-hover .k-grid-content-sticky,
33243
32976
  .k-alt.k-hover .k-grid-content-sticky {
33244
32977
  background-color: $grid-sticky-hovered-bg;
33245
32978
  }
33246
32979
 
33247
32980
  // Selected + Hover
33248
- tr.k-state-selected:hover .k-grid-content-sticky,
33249
32981
  tr.k-selected:hover .k-grid-content-sticky,
33250
- tr.k-state-selected.k-state-hover .k-grid-content-sticky,
33251
32982
  tr.k-selected.k-hover .k-grid-content-sticky,
33252
- .k-state-selected.k-grid-row-sticky:hover td,
33253
32983
  .k-selected.k-grid-row-sticky:hover td,
33254
- .k-state-selected.k-grid-row-sticky.k-state-hover td,
33255
32984
  .k-selected.k-grid-row-sticky.k-hover td,
33256
- .k-state-selected.k-alt.k-grid-row-sticky:hover td,
33257
32985
  .k-selected.k-alt.k-grid-row-sticky:hover td,
33258
- .k-state-selected.k-alt.k-grid-row-sticky.k-state-hover td,
33259
32986
  .k-selected.k-alt.k-grid-row-sticky.k-hover td,
33260
- tr.k-state-selected.k-alt:hover .k-grid-content-sticky,
33261
32987
  tr.k-selected.k-alt:hover .k-grid-content-sticky,
33262
- tr.k-state-selected.k-alt.k-state-hover .k-grid-content-sticky,
33263
32988
  tr.k-selected.k-alt.k-hover .k-grid-content-sticky,
33264
- .k-grid-row-sticky:hover td.k-state-selected,
33265
32989
  .k-grid-row-sticky:hover td.k-selected,
33266
- .k-grid-row-sticky.k-state-hover td.k-state-selected,
33267
32990
  .k-grid-row-sticky.k-hover td.k-selected,
33268
- tr:hover .k-grid-content-sticky.k-state-selected,
33269
32991
  tr:hover .k-grid-content-sticky.k-selected,
33270
- tr.k-state-hover .k-grid-content-sticky.k-state-selected,
33271
32992
  tr.k-hover .k-grid-content-sticky.k-selected {
33272
32993
  background-color: $grid-sticky-selected-hovered-bg;
33273
32994
  }
@@ -33279,7 +33000,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33279
33000
  }
33280
33001
 
33281
33002
  &:hover .k-grid-content-sticky,
33282
- &.k-state-hover .k-grid-content-sticky,
33283
33003
  &.k-hover .k-grid-content-sticky {
33284
33004
  @include fill( $bg: $grid-sticky-hovered-bg );
33285
33005
  }
@@ -33293,13 +33013,11 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33293
33013
  );
33294
33014
  }
33295
33015
  .k-columnmenu-item:focus,
33296
- .k-columnmenu-item.k-state-focus,
33297
33016
  .k-columnmenu-item.k-focus {
33298
33017
  @include box-shadow( $kendo-list-item-focus-shadow );
33299
33018
  }
33300
33019
 
33301
33020
  .k-columnmenu-item {
33302
- &.k-state-selected,
33303
33021
  &.k-selected {
33304
33022
  @include fill(
33305
33023
  $kendo-list-item-selected-text,
@@ -33325,7 +33043,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33325
33043
  );
33326
33044
 
33327
33045
  &:hover,
33328
- &.k-state-hover,
33329
33046
  &.k-hover {
33330
33047
  @include fill(
33331
33048
  $kendo-list-item-hover-text,
@@ -33333,7 +33050,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33333
33050
  );
33334
33051
  }
33335
33052
 
33336
- &.k-state-selected,
33337
33053
  &.k-selected {
33338
33054
  @include fill(
33339
33055
  $kendo-list-item-selected-text,
@@ -33342,7 +33058,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33342
33058
  }
33343
33059
 
33344
33060
  &:focus,
33345
- &.k-state-focused,
33346
33061
  &.k-focus {
33347
33062
  @include box-shadow( $kendo-list-item-focus-shadow );
33348
33063
  }
@@ -33377,14 +33092,11 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33377
33092
  .k-grid {
33378
33093
 
33379
33094
  // Selected state
33380
- td.k-state-selected,
33381
33095
  td.k-selected,
33382
- tr.k-state-selected,
33383
33096
  tr.k-selected {
33384
33097
  color: $grid-selected-text;
33385
33098
  background-color: $grid-selected-bg;
33386
33099
  }
33387
- tr.k-state-selected > td,
33388
33100
  tr.k-selected > td {
33389
33101
  color: inherit;
33390
33102
  background-color: transparent;
@@ -33392,14 +33104,12 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33392
33104
 
33393
33105
  // Hover, Focused state
33394
33106
  table {
33395
- >tr:not(.k-detail-row):hover,
33396
- >tr:not(.k-detail-row).k-state-hover,
33397
- >tr:not(.k-detail-row).k-hover,
33398
- td.k-state-focused,
33107
+ > tr:not(.k-detail-row):hover,
33108
+ > tr:not(.k-detail-row).k-hover,
33109
+ td:focus,
33399
33110
  td.k-focus,
33400
- th.k-state-focused,
33401
- th.k-focus,
33402
33111
  th:focus,
33112
+ th.k-focus,
33403
33113
  .k-master-row > td:focus,
33404
33114
  .k-grouping-row > td:focus,
33405
33115
  .k-detail-row > td:focus,
@@ -33409,7 +33119,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33409
33119
  }
33410
33120
 
33411
33121
  tr:hover,
33412
- tr.k-state-hover,
33413
33122
  tr.k-hover {
33414
33123
  .k-grid-header-sticky,
33415
33124
  .k-grid-footer-sticky {
@@ -33418,9 +33127,8 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33418
33127
  }
33419
33128
  }
33420
33129
 
33421
- td.k-state-focused,
33130
+ td:focus,
33422
33131
  td.k-focus,
33423
- th.k-state-focused,
33424
33132
  th.k-focus,
33425
33133
  th:focus,
33426
33134
  .k-master-row > td:focus,
@@ -33437,7 +33145,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33437
33145
 
33438
33146
  }
33439
33147
  .k-grid-pager:focus,
33440
- .k-grid-pager.k-state-focused,
33441
33148
  .k-grid-pager.k-focus {
33442
33149
  color: inherit;
33443
33150
  }
@@ -33491,7 +33198,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33491
33198
 
33492
33199
  .k-group-footer {
33493
33200
  &:hover td,
33494
- &.k-state-hover td,
33495
33201
  &.k-hover td {
33496
33202
  color: inherit;
33497
33203
  @include fill( $bg: $grid-sticky-footer-hovered-bg );
@@ -33542,15 +33248,12 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33542
33248
  }
33543
33249
 
33544
33250
  &:focus,
33545
- &.k-state-focus,
33546
- &.k-focus,
33547
- &.k-state-border-down {
33251
+ &.k-focus {
33548
33252
  color: $grid-text;
33549
33253
  background-color: $grid-filter-button-focus;
33550
33254
  box-shadow: none;
33551
33255
  }
33552
33256
 
33553
- &.k-state-active,
33554
33257
  &.k-active {
33555
33258
  color: $primary-contrast;
33556
33259
  background-color: $primary;
@@ -33591,7 +33294,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33591
33294
  }
33592
33295
 
33593
33296
  &:hover td,
33594
- &.k-state-hover td,
33595
33297
  &.k-hover td {
33596
33298
  @include fill( $bg: $grid-sticky-footer-hovered-bg );
33597
33299
  }
@@ -33624,7 +33326,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33624
33326
  }
33625
33327
 
33626
33328
  .k-columnmenu-item {
33627
- &.k-state-selected,
33628
33329
  &.k-selected {
33629
33330
  @include fill(
33630
33331
  $kendo-list-item-selected-text,
@@ -33633,7 +33334,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33633
33334
  }
33634
33335
  }
33635
33336
  .k-columnmenu-item:focus,
33636
- .k-columnmenu-item.k-state-focus,
33637
33337
  .k-columnmenu-item.k-focus {
33638
33338
  background: $kendo-list-item-hover-bg;
33639
33339
  }
@@ -33642,7 +33342,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33642
33342
 
33643
33343
  .k-item {
33644
33344
  // Selected state
33645
- &.k-state-selected,
33646
33345
  &.k-selected {
33647
33346
  background: $kendo-list-item-hover-bg;
33648
33347
  }
@@ -33863,7 +33562,6 @@ $listview-item-focus-shadow: null !default;
33863
33562
  // Listview content
33864
33563
  .k-listview-content {
33865
33564
 
33866
- > .k-state-focused,
33867
33565
  > .k-focus {
33868
33566
  @include fill(
33869
33567
  $listview-item-focus-text,
@@ -33873,7 +33571,6 @@ $listview-item-focus-shadow: null !default;
33873
33571
  @include box-shadow( $listview-item-focus-shadow );
33874
33572
  }
33875
33573
 
33876
- > .k-state-selected,
33877
33574
  > .k-selected {
33878
33575
  @include fill(
33879
33576
  $listview-item-selected-text,
@@ -33896,8 +33593,7 @@ $listview-item-focus-shadow: null !default;
33896
33593
 
33897
33594
  // Listview content
33898
33595
  .k-listview-content {}
33899
- .k-listview-content > .k-state-selected.k-state-focused,
33900
- .k-listview-content > .k-selected.k-focused {
33596
+ .k-listview-content > .k-selected.k-focus {
33901
33597
  background-color: rgba( contrast-wcag( $listview-bg ), .12 );
33902
33598
  }
33903
33599
 
@@ -34100,7 +33796,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
34100
33796
  [data-tool="merge"],
34101
33797
  [data-tool="freeze"] {
34102
33798
  width: auto;
34103
- min-width: $form-line-height * 1em;
33799
+ min-width: calc( #{$form-line-height} * 1em );
34104
33800
  }
34105
33801
 
34106
33802
  .k-color-picker {
@@ -34269,7 +33965,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
34269
33965
  overflow: hidden;
34270
33966
 
34271
33967
  // disabled cells in the Spreadsheet should allow navigation if link is used
34272
- .k-state-disabled,
34273
33968
  .k-disabled {
34274
33969
  pointer-events: auto;
34275
33970
  }
@@ -34831,7 +34526,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
34831
34526
  background-position: 50% 50%;
34832
34527
 
34833
34528
  &:hover div,
34834
- &.k-state-hovered div,
34835
34529
  &.k-hover div {
34836
34530
  margin: 0;
34837
34531
  align-self: center;
@@ -34897,7 +34591,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
34897
34591
  .k-spreadsheet-insert-image-dialog {
34898
34592
  .k-spreadsheet-has-image {
34899
34593
  &:hover,
34900
- &.k-state-hovered,
34901
34594
  &.k-hover {
34902
34595
  border-radius: $spreadsheet-insert-image-dialog-preview-overlay-border-radius;
34903
34596
  }
@@ -35018,7 +34711,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
35018
34711
  .k-tabstrip-items .k-item {
35019
34712
  color: inherit;
35020
34713
  }
35021
- .k-tabstrip-items .k-item.k-state-active::after,
35022
34714
  .k-tabstrip-items .k-item.k-active::after {
35023
34715
  border-color: $primary-contrast;
35024
34716
  }
@@ -35041,7 +34733,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
35041
34733
  $toolbar-gradient
35042
34734
  );
35043
34735
 
35044
- .k-tabstrip-items .k-item.k-state-active,
35045
34736
  .k-tabstrip-items .k-item.k-active {
35046
34737
  border-color: $secondary;
35047
34738
  }
@@ -35163,7 +34854,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
35163
34854
  );
35164
34855
  box-shadow: inset 0 0 0 1px $kendo-button-border;
35165
34856
 
35166
- &.k-state-active,
35167
34857
  &.k-active {
35168
34858
  @include fill(
35169
34859
  $kendo-button-active-text,
@@ -35209,13 +34899,11 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
35209
34899
 
35210
34900
  .k-spreadsheet-has-image {
35211
34901
  &:hover,
35212
- &.k-state-hovered,
35213
34902
  &.k-hover {
35214
34903
  box-shadow: $spreadsheet-insert-image-dialog-preview-overlay-shadow;
35215
34904
  }
35216
34905
 
35217
34906
  &:hover div,
35218
- &.k-state-hovered div,
35219
34907
  &.k-hover div {
35220
34908
  color: $spreadsheet-insert-image-dialog-overlay-hovered-text;
35221
34909
  }
@@ -35250,7 +34938,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
35250
34938
  .k-button {}
35251
34939
 
35252
34940
  .k-button:hover,
35253
- .k-button.k-state-hover,
35254
34941
  .k-button.k-hover {
35255
34942
  @include fill(
35256
34943
  $kendo-list-item-hover-text,
@@ -35258,9 +34945,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
35258
34945
  );
35259
34946
  }
35260
34947
  .k-button:active,
35261
- .k-button.k-state-active,
35262
34948
  .k-button.k-active,
35263
- .k-button.k-state-selected,
35264
34949
  .k-button.k-selected {
35265
34950
  @include fill(
35266
34951
  $kendo-list-item-selected-text,
@@ -36219,15 +35904,12 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
36219
35904
 
36220
35905
 
36221
35906
  // Hover state
36222
- .k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-state-hover,
36223
- .k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-hover,
36224
35907
  .k-pivotgrid-row-headers tbody > .k-pivotgrid-row:hover,
36225
- .k-pivotgrid-column-headers tbody > .k-pivotgrid-row.k-state-hover,
36226
- .k-pivotgrid-column-headers tbody > .k-pivotgrid-row.k-hover,
35908
+ .k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-hover,
36227
35909
  .k-pivotgrid-column-headers tbody > .k-pivotgrid-row:hover,
36228
- .k-pivotgrid-values tbody > .k-pivotgrid-row.k-state-hover,
36229
- .k-pivotgrid-values tbody > .k-pivotgrid-row.k-hover,
36230
- .k-pivotgrid-values tbody > .k-pivotgrid-row:hover {
35910
+ .k-pivotgrid-column-headers tbody > .k-pivotgrid-row.k-hover,
35911
+ .k-pivotgrid-values tbody > .k-pivotgrid-row:hover,
35912
+ .k-pivotgrid-values tbody > .k-pivotgrid-row.k-hover {
36231
35913
  @include fill (
36232
35914
  $pivotgrid-hover-text,
36233
35915
  $pivotgrid-hover-bg,
@@ -36236,9 +35918,10 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
36236
35918
  }
36237
35919
 
36238
35920
  // Focus state
36239
- .k-pivotgrid-cell.k-state-focus,
36240
- .k-pivotgrid-cell.k-focus,
36241
35921
  .k-pivotgrid-cell:focus,
35922
+ .k-pivotgrid-cell.k-focus,
35923
+ .k-pivotgrid-empty-cell:focus,
35924
+ .k-pivotgrid-empty-cell.k-focus,
36242
35925
  .k-master-row > .k-pivotgrid-cell:focus,
36243
35926
  .k-grouping-row > .k-pivotgrid-cell:focus,
36244
35927
  .k-detail-row > .k-pivotgrid-cell:focus,
@@ -36247,9 +35930,7 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
36247
35930
  }
36248
35931
 
36249
35932
  // Selected state
36250
- .k-pivotgrid-cell.k-state-selected,
36251
35933
  .k-pivotgrid-cell.k-selected,
36252
- .k-pivotgrid-row.k-state-selected > .k-pivotgrid-cell,
36253
35934
  .k-pivotgrid-row.k-selected > .k-pivotgrid-cell {
36254
35935
  @include fill (
36255
35936
  $pivotgrid-selected-text,
@@ -36427,9 +36108,8 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
36427
36108
  @include exports("pivotgrid/theme/material") {
36428
36109
 
36429
36110
  // Hover and Focus state have the same bg color
36430
- .k-pivotgrid-cell.k-state-focus,
36431
- .k-pivotgrid-cell.k-focus,
36432
36111
  .k-pivotgrid-cell:focus,
36112
+ .k-pivotgrid-cell.k-focus,
36433
36113
  .k-master-row > .k-pivotgrid-cell:focus,
36434
36114
  .k-grouping-row > .k-pivotgrid-cell:focus,
36435
36115
  .k-detail-row > .k-pivotgrid-cell:focus,
@@ -36496,7 +36176,6 @@ $treelist-footer-row-border-width: 1px !default;
36496
36176
  }
36497
36177
 
36498
36178
  .k-treelist-dragging,
36499
- .k-treelist-dragging .k-state-hover,
36500
36179
  .k-treelist-dragging .k-hover {
36501
36180
  cursor: default;
36502
36181
  }
@@ -37272,7 +36951,6 @@ $filemanager-preview-icon-border: null !default;
37272
36951
  );
37273
36952
  }
37274
36953
 
37275
- &.k-state-selected .k-file-icon,
37276
36954
  &.k-selected .k-file-icon {
37277
36955
  @include fill(
37278
36956
  inherit,
@@ -37642,10 +37320,8 @@ $taskboard-drag-placeholder-border: $component-border !default;
37642
37320
 
37643
37321
  &:focus,
37644
37322
  &.k-focus,
37645
- &.k-state-focus,
37646
37323
  &:hover,
37647
- &.k-hover,
37648
- &.k-state-hover {
37324
+ &.k-hover {
37649
37325
  text-decoration: underline;
37650
37326
  }
37651
37327
  }
@@ -37737,7 +37413,6 @@ $taskboard-drag-placeholder-border: $component-border !default;
37737
37413
  );
37738
37414
  }
37739
37415
  .k-taskboard-column:focus,
37740
- .k-taskboard-column.k-state-focus,
37741
37416
  .k-taskboard-column.k-focus {
37742
37417
  @include fill(
37743
37418
  $taskboard-column-focus-text,
@@ -37776,39 +37451,33 @@ $taskboard-drag-placeholder-border: $component-border !default;
37776
37451
  @include fill( $color: $taskboard-card-header-text );
37777
37452
 
37778
37453
  &:focus,
37779
- &.k-focus,
37780
- &.k-state-focus {
37454
+ &.k-focus {
37781
37455
  @include fill( $color: $taskboard-card-header-focus-text );
37782
37456
  }
37783
37457
 
37784
37458
  &:hover,
37785
- &.k-hover,
37786
- &.k-state-hover {
37459
+ &.k-hover {
37787
37460
  @include fill( $color: $taskboard-card-header-hover-text );
37788
37461
  }
37789
37462
  }
37790
37463
 
37791
37464
  &:focus,
37792
- &.k-focus,
37793
- &.k-state-focus {
37465
+ &.k-focus {
37794
37466
  @include fill( $border: $taskboard-card-focus-border );
37795
37467
  @include box-shadow( $taskboard-card-focus-shadow );
37796
37468
  }
37797
37469
 
37798
37470
  &:hover,
37799
- &.k-hover,
37800
- &.k-state-hover {
37471
+ &.k-hover {
37801
37472
  @include fill( $border: $taskboard-card-hover-border );
37802
37473
  }
37803
37474
 
37804
- &.k-selected,
37805
- &.k-state-selected {
37475
+ &.k-selected {
37806
37476
  @include fill( $border: $taskboard-card-selected-border );
37807
37477
  @include box-shadow( $taskboard-card-selected-shadow );
37808
37478
  }
37809
37479
 
37810
- &.k-disabled,
37811
- &.k-state-disabled {
37480
+ &.k-disabled {
37812
37481
  @include disabled( $disabled-styling );
37813
37482
  }
37814
37483
  }
@@ -37940,7 +37609,6 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
37940
37609
  pointer-events: auto;
37941
37610
  }
37942
37611
 
37943
- .k-editor-content.k-state-focused,
37944
37612
  .k-editor-content.k-focus {
37945
37613
  outline-width: 1px;
37946
37614
  outline-style: dashed;
@@ -38395,7 +38063,6 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
38395
38063
  display: block;
38396
38064
  margin: auto;
38397
38065
 
38398
- &.k-state-selected,
38399
38066
  &.k-selected {
38400
38067
  color: inherit;
38401
38068
  border-width: 0;
@@ -38704,9 +38371,9 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
38704
38371
  }
38705
38372
  }
38706
38373
 
38707
- // Hover & Actve state
38374
+ // Hover & Active state
38708
38375
  &:hover,
38709
- &.k-state-active,
38376
+ &.k-hover
38710
38377
  &.k-active {
38711
38378
  border-color: $panel-border;
38712
38379
  }
@@ -38724,7 +38391,6 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
38724
38391
 
38725
38392
  // Insert table
38726
38393
  .k-ct-popup {
38727
- .k-state-selected,
38728
38394
  .k-selected {
38729
38395
  @include fill( $selected-text, $selected-bg, $selected-border, none );
38730
38396
  }
@@ -39235,7 +38901,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
39235
38901
  }
39236
38902
 
39237
38903
  &.k-gantt-planned .k-grid-content tr {
39238
- height: calc( #{$line-height-em * 1.7} + #{$grid-cell-padding-y * 2} + #{$grid-cell-horizontal-border-width} );
38904
+ height: calc( #{$line-height-em} * 1.7 + #{$grid-cell-padding-y * 2} + #{$grid-cell-horizontal-border-width} );
39239
38905
  }
39240
38906
 
39241
38907
  // Layout
@@ -39280,7 +38946,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
39280
38946
  }
39281
38947
  }
39282
38948
 
39283
- tr.k-state-selected > td:last-child,
39284
38949
  tr.k-selected > td:last-child {
39285
38950
  background: transparent;
39286
38951
  }
@@ -39459,7 +39124,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
39459
39124
  padding: 0 !important; // sass-lint:disable-line no-important
39460
39125
  }
39461
39126
  .k-grid-header tr {
39462
- height: calc( #{$line-height-em * 2} + #{$grid-header-padding-y * 4} + 2px );
39127
+ height: calc( #{$line-height-em} * 2 + #{$grid-header-padding-y * 4} + 2px );
39463
39128
  vertical-align: bottom;
39464
39129
  }
39465
39130
  .k-grid-content {
@@ -39550,7 +39215,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
39550
39215
  border-color: currentColor;
39551
39216
  position: absolute;
39552
39217
  }
39553
- .k-gantt-line.k-state-selected,
39554
39218
  .k-gantt-line.k-selected {
39555
39219
  z-index: 3;
39556
39220
  }
@@ -39624,7 +39288,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
39624
39288
  transform: translate(-50%, -50%);
39625
39289
  }
39626
39290
  .k-task-dot:hover::before,
39627
- .k-task-dot.k-state-hover::before,
39628
39291
  .k-task-dot.k-hover::before {
39629
39292
  border-width: 1px;
39630
39293
  }
@@ -40112,7 +39775,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
40112
39775
  $border: $gantt-milestone-border
40113
39776
  );
40114
39777
  }
40115
- .k-task-milestone.k-state-selected .k-task-milestone-content,
40116
39778
  .k-task-milestone.k-selected .k-task-milestone-content {
40117
39779
  @include fill(
40118
39780
  $bg: $gantt-milestone-selected-bg,
@@ -40127,7 +39789,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
40127
39789
  stroke: $gantt-line-fill;
40128
39790
  }
40129
39791
 
40130
- polyline.k-state-selected,
40131
39792
  polyline.k-selected {
40132
39793
  stroke: $gantt-line-selected-fill;
40133
39794
  }
@@ -40181,7 +39842,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
40181
39842
  );
40182
39843
  }
40183
39844
  .k-task-dot:hover::before,
40184
- .k-task-dot.k-state-hover::before,
40185
39845
  .k-task-dot.k-hover::before {
40186
39846
  @include fill(
40187
39847
  $bg: $gantt-dot-hover-bg,
@@ -40207,7 +39867,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
40207
39867
  );
40208
39868
  }
40209
39869
  }
40210
- .k-task-milestone.k-state-selected,
40211
39870
  .k-task-milestone.k-selected {
40212
39871
  background-image: none;
40213
39872
  @include fill(
@@ -40238,7 +39897,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
40238
39897
  .k-task-advanced .k-task-summary-complete {
40239
39898
  color: $gantt-advanced-bg;
40240
39899
  }
40241
- .k-task-summary.k-state-selected,
40242
39900
  .k-task-summary.k-selected {
40243
39901
  color: $gantt-summary-selected-bg;
40244
39902
 
@@ -40282,7 +39940,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
40282
39940
  $bg: $gantt-advanced-bg
40283
39941
  );
40284
39942
  }
40285
- .k-task-single.k-state-selected,
40286
39943
  .k-task-single.k-selected {
40287
39944
  @include fill(
40288
39945
  $gantt-task-selected-text,
@@ -40299,7 +39956,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
40299
39956
  .k-gantt-line {
40300
39957
  color: $gantt-line-fill;
40301
39958
  }
40302
- .k-gantt-line.k-state-selected,
40303
39959
  .k-gantt-line.k-selected {
40304
39960
  color: $gantt-line-selected-fill;
40305
39961
  }
@@ -40980,7 +40636,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
40980
40636
  }
40981
40637
 
40982
40638
  &:hover,
40983
- &.k-state-hover,
40984
40639
  &.k-hover {
40985
40640
  .k-event-delete {
40986
40641
  opacity: 1;
@@ -41046,7 +40701,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
41046
40701
 
41047
40702
  // Hover
41048
40703
  &:hover,
41049
- &.k-state-hover,
41050
40704
  &.k-hover {
41051
40705
  .k-event-actions .k-event-delete,
41052
40706
  .k-resize-handle {
@@ -41304,11 +40958,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
41304
40958
  opacity: .5;
41305
40959
  visibility: hidden;
41306
40960
  }
41307
- .k-state-hover .k-task > .k-event-delete,
41308
40961
  .k-hover .k-task > .k-event-delete,
41309
40962
  .k-scheduler-content tr:hover .k-event-delete,
41310
40963
  .k-scheduler-content .k-scheduler-row:hover .k-event-delete,
41311
- .k-scheduler-content .k-scheduler-row.k-state-hover .k-event-delete,
41312
40964
  .k-scheduler-content .k-scheduler-row.k-hover .k-event-delete {
41313
40965
  visibility: visible;
41314
40966
  }
@@ -41382,7 +41034,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
41382
41034
  position: relative;
41383
41035
  }
41384
41036
 
41385
- td.k-state-selected,
41386
41037
  td.k-selected {
41387
41038
  background-color: inherit;
41388
41039
  }
@@ -41682,7 +41333,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
41682
41333
  kendo-scheduler .k-event,
41683
41334
  .k-event {
41684
41335
 
41685
- &.k-state-selected,
41686
41336
  &.k-selected {
41687
41337
  &::before {
41688
41338
  display: block;
@@ -41898,9 +41548,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
41898
41548
  );
41899
41549
  }
41900
41550
 
41901
- .k-scheduler-layout td.k-state-selected,
41902
41551
  .k-scheduler-layout td.k-selected,
41903
- .k-scheduler-layout .k-scheduler-cell.k-state-selected,
41904
41552
  .k-scheduler-layout .k-scheduler-cell.k-selected {
41905
41553
  background-color: rgba($selected-bg, .25);
41906
41554
  }
@@ -41923,7 +41571,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
41923
41571
  );
41924
41572
  @include box-shadow( $scheduler-event-shadow );
41925
41573
 
41926
- &.k-state-hover,
41574
+ &:hover,
41927
41575
  &.k-hover {
41928
41576
  @include fill(
41929
41577
  $scheduler-event-hover-text,
@@ -41934,7 +41582,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
41934
41582
  @include box-shadow( $scheduler-event-hover-shadow );
41935
41583
  }
41936
41584
 
41937
- &.k-state-selected,
41938
41585
  &.k-selected {
41939
41586
  @include fill(
41940
41587
  $scheduler-event-selected-text,
@@ -42001,10 +41648,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
42001
41648
 
42002
41649
  // Hover
42003
41650
  .k-scheduler-content tr:hover,
42004
- .k-scheduler-content tr.k-state-hover,
42005
41651
  .k-scheduler-content tr.k-hover,
42006
41652
  .k-scheduler-content .k-scheduler-row:hover,
42007
- .k-scheduler-content .k-scheduler-row.k-state-hover,
42008
41653
  .k-scheduler-content .k-scheduler-row.k-hover {
42009
41654
  @include fill(
42010
41655
  $hovered-text,
@@ -42016,9 +41661,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
42016
41661
 
42017
41662
  .k-scheduler-content tr:hover .k-scheduler-datecolumn,
42018
41663
  .k-scheduler-content tr:hover .k-scheduler-groupcolumn,
42019
- .k-scheduler-content tr.k-state-hover .k-scheduler-datecolumn,
42020
41664
  .k-scheduler-content tr.k-hover .k-scheduler-datecolumn,
42021
- .k-scheduler-content tr.k-state-hover .k-scheduler-groupcolumn,
42022
41665
  .k-scheduler-content tr.k-hover .k-scheduler-groupcolumn {
42023
41666
  @include fill(
42024
41667
  $scheduler-text,
@@ -42028,13 +41671,10 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
42028
41671
  }
42029
41672
 
42030
41673
  // Selected
42031
- .k-scheduler-content tr.k-state-selected,
42032
41674
  .k-scheduler-content tr.k-selected {
42033
41675
  background-color: rgba($selected-bg, .25);
42034
41676
  }
42035
- .k-scheduler-content tr.k-state-selected .k-scheduler-datecolumn,
42036
41677
  .k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
42037
- .k-scheduler-content tr.k-state-selected .k-scheduler-groupcolumn,
42038
41678
  .k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
42039
41679
  background-color: $scheduler-bg;
42040
41680
  }
@@ -42052,7 +41692,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
42052
41692
  @include fill( $bg: $scheduler-yearview-indicator-bg );
42053
41693
  }
42054
41694
 
42055
- .k-state-selected .k-day-indicator,
42056
41695
  .k-selected .k-day-indicator {
42057
41696
  @include fill( $bg: $scheduler-yearview-indicator-selected-bg );
42058
41697
  }
@@ -42390,7 +42029,6 @@ $chat-quick-reply-hover-border: $primary !default;
42390
42029
 
42391
42030
 
42392
42031
  // Message states
42393
- .k-message.k-state-selected,
42394
42032
  .k-message.k-selected {
42395
42033
  margin-bottom: $chat-item-spacing-y;
42396
42034
  border: 0;
@@ -42519,7 +42157,6 @@ $chat-quick-reply-hover-border: $primary !default;
42519
42157
  align-items: center;
42520
42158
 
42521
42159
  &:focus,
42522
- &.k-state-focus,
42523
42160
  &.k-focus,
42524
42161
  &:focus-within {
42525
42162
  outline: 0;
@@ -42600,7 +42237,6 @@ $chat-quick-reply-hover-border: $primary !default;
42600
42237
  flex: 0 0 auto;
42601
42238
  }
42602
42239
 
42603
- &.k-state-selected,
42604
42240
  &.k-selected {
42605
42241
  background: none;
42606
42242
  }
@@ -42837,7 +42473,6 @@ $chat-quick-reply-hover-border: $primary !default;
42837
42473
  .k-bubble:hover {
42838
42474
  @include box-shadow( $chat-bubble-hover-shadow );
42839
42475
  }
42840
- .k-state-selected .k-bubble,
42841
42476
  .k-selected .k-bubble {
42842
42477
  @include box-shadow( $chat-bubble-selected-shadow );
42843
42478
  }
@@ -42853,7 +42488,6 @@ $chat-quick-reply-hover-border: $primary !default;
42853
42488
  .k-alt .k-bubble:hover {
42854
42489
  @include box-shadow( $chat-alt-bubble-hover-shadow );
42855
42490
  }
42856
- .k-alt .k-state-selected .k-bubble,
42857
42491
  .k-alt .k-selected .k-bubble {
42858
42492
  @include box-shadow( $chat-alt-bubble-selected-shadow );
42859
42493
  }
@@ -43616,12 +43250,10 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
43616
43250
  }
43617
43251
 
43618
43252
  .k-timeline-track-item:hover .k-timeline-circle::before,
43619
- .k-timeline-track-item.k-state-hover .k-timeline-circle::before,
43620
43253
  .k-timeline-track-item.k-hover .k-timeline-circle::before {
43621
43254
  opacity: $kendo-flat-button-hover-opacity;
43622
43255
  }
43623
43256
 
43624
- .k-timeline-track-item.k-state-focus .k-timeline-circle::before,
43625
43257
  .k-timeline-track-item.k-focus .k-timeline-circle::before {
43626
43258
  opacity: $kendo-flat-button-focus-opacity;
43627
43259
  }
@@ -43673,7 +43305,6 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
43673
43305
  color: $body-text;
43674
43306
  }
43675
43307
 
43676
- .k-timeline-arrow.k-state-disabled,
43677
43308
  .k-timeline-arrow.k-disabled {
43678
43309
  opacity: 1; // The arrow button in disabled mode should have a solid background
43679
43310
  color: $timeline-track-arrow-disabled-text;
@@ -43694,7 +43325,6 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
43694
43325
  background-color: $timeline-flag-bg;
43695
43326
  }
43696
43327
 
43697
- .k-timeline-track-item.k-state-focus .k-timeline-circle,
43698
43328
  .k-timeline-track-item.k-focus .k-timeline-circle {
43699
43329
  @include box-shadow( $timeline-track-item-focus-shadow );
43700
43330
  }
@@ -44501,7 +44131,6 @@ $scrollview-transition-timing-function: ease-in-out !default;
44501
44131
  -webkit-tap-highlight-color: $scrollview-arrow-tap-highlight-color;
44502
44132
 
44503
44133
  &:focus,
44504
- &.k-state-focus,
44505
44134
  &.k-focus {
44506
44135
  color: $scrollview-navigation-color;
44507
44136
  opacity: $scrollview-navigation-hover-opacity;
@@ -44512,7 +44141,6 @@ $scrollview-transition-timing-function: ease-in-out !default;
44512
44141
  }
44513
44142
 
44514
44143
  &:hover,
44515
- &.k-state-hover,
44516
44144
  &.k-hover {
44517
44145
  color: $scrollview-navigation-color;
44518
44146
  opacity: $scrollview-navigation-hover-opacity;
@@ -44532,14 +44160,12 @@ $scrollview-transition-timing-function: ease-in-out !default;
44532
44160
  }
44533
44161
 
44534
44162
  &:focus,
44535
- &.k-state-focused,
44536
44163
  &.k-focus {
44537
44164
  box-shadow: $scrollview-pagebutton-shadow;
44538
44165
  }
44539
44166
  }
44540
44167
 
44541
44168
  .k-scrollview-nav > .k-link:hover,
44542
- .k-scrollview-nav > .k-link.k-state-hover,
44543
44169
  .k-scrollview-nav > .k-link.k-hover {
44544
44170
  box-shadow: $scrollview-pagebutton-shadow;
44545
44171
  }
@@ -45358,7 +44984,7 @@ $treemap-line-height: $line-height !default;
45358
44984
  .k-leaf.k-inverse {
45359
44985
  color: $component-text;
45360
44986
  }
45361
- .k-leaf.k-state-hover,
44987
+ .k-leaf:hover,
45362
44988
  .k-leaf.k-hover {
45363
44989
  box-shadow: inset 0 0 0 3px $component-border;
45364
44990
  }
@@ -45840,8 +45466,7 @@ $orgchart-line-v-height: 25px !default;
45840
45466
  }
45841
45467
 
45842
45468
  &:focus,
45843
- &.k-focus,
45844
- &.k-state-focus {
45469
+ &.k-focus {
45845
45470
  @include box-shadow( $orgchart-card-focus-shadow );
45846
45471
  }
45847
45472
  }
@@ -45855,9 +45480,6 @@ $orgchart-line-v-height: 25px !default;
45855
45480
  );
45856
45481
  }
45857
45482
  .k-orgchart-node-group-container:focus,
45858
- .k-orgchart-node-group-container.k-focus,
45859
- .k-orgchart-node-group-container.k-state-focus,
45860
- .k-orgchart-node-group-container.k-state-focused,
45861
45483
  .k-orgchart-node-group-container.k-focus {
45862
45484
  @include box-shadow( $orgchart-node-group-focus-shadow );
45863
45485
  @include fill ( $border: $orgchart-node-group-focus-border );
@@ -45901,40 +45523,42 @@ $kendo-signature-height: 108px !default;
45901
45523
  $kendo-signature-maximized-width: 750px !default;
45902
45524
  $kendo-signature-maximized-height: 252px !default;
45903
45525
 
45904
- $kendo-signature-padding: map-get( $spacing, 2 ) !default;
45905
- $kendo-signature-padding-sm: map-get( $spacing, 2 ) - map-get( $spacing, thin ) !default;
45906
- $kendo-signature-padding-md: $kendo-signature-padding !default;
45907
- $kendo-signature-padding-lg: map-get( $spacing, 2 ) + map-get( $spacing, thin ) !default;
45526
+ $kendo-signature-padding-x: map-get( $spacing, 1 ) !default;
45527
+ $kendo-signature-padding-x-sm: map-get( $spacing, thin ) !default;
45528
+ $kendo-signature-padding-x-md: $kendo-signature-padding-x !default;
45529
+ $kendo-signature-padding-x-lg: map-get( $spacing, 1 ) + map-get( $spacing, thin ) !default;
45530
+
45531
+ $kendo-signature-padding-y: $kendo-signature-padding-x !default;
45532
+ $kendo-signature-padding-y-sm: $kendo-signature-padding-x-sm !default;
45533
+ $kendo-signature-padding-y-md: $kendo-signature-padding-y !default;
45534
+ $kendo-signature-padding-y-lg: $kendo-signature-padding-x-lg !default;
45908
45535
 
45909
45536
  $kendo-signature-line-width: 1px !default;
45910
45537
  $kendo-signature-line-style: dashed !default;
45911
45538
  $kendo-signature-line-color: rgba( $info, .24 ) !default;
45912
45539
 
45913
- $kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding} ) !default;
45914
- $kendo-signature-line-size-sm: calc( 100% - 2 * #{$kendo-signature-padding-sm} ) !default;
45915
- $kendo-signature-line-size-md: calc( 100% - 2 * #{$kendo-signature-padding-md} ) !default;
45916
- $kendo-signature-line-size-lg: calc( 100% - 2 * #{$kendo-signature-padding-lg} ) !default;
45540
+ $kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
45541
+ $kendo-signature-line-size-sm: calc( 100% - 2 * #{$kendo-signature-padding-x-sm} ) !default;
45542
+ $kendo-signature-line-size-md: calc( 100% - 2 * #{$kendo-signature-padding-x-md} ) !default;
45543
+ $kendo-signature-line-size-lg: calc( 100% - 2 * #{$kendo-signature-padding-x-lg} ) !default;
45917
45544
 
45918
- $kendo-signature-line-bottom-offset: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding} ) !default;
45919
- $kendo-signature-line-bottom-offset-sm: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-sm} ) !default;
45920
- $kendo-signature-line-bottom-offset-md: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-md} ) !default;
45921
- $kendo-signature-line-bottom-offset-lg: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-lg} ) !default;
45545
+ $kendo-signature-line-bottom-offset: 33% !default;
45922
45546
 
45923
45547
  $kendo-signature-sizes: (
45924
45548
  sm: (
45925
- padding: $kendo-signature-padding-sm,
45926
- line-size: $kendo-signature-line-size-sm,
45927
- line-offset: $kendo-signature-line-bottom-offset-sm
45549
+ padding-x: $kendo-signature-padding-x-sm,
45550
+ padding-y: $kendo-signature-padding-y-sm,
45551
+ line-size: $kendo-signature-line-size-sm
45928
45552
  ),
45929
45553
  md: (
45930
- padding: $kendo-signature-padding-md,
45931
- line-size: $kendo-signature-line-size-md,
45932
- line-offset: $kendo-signature-line-bottom-offset-md
45554
+ padding-x: $kendo-signature-padding-x-md,
45555
+ padding-y: $kendo-signature-padding-y-md,
45556
+ line-size: $kendo-signature-line-size-md
45933
45557
  ),
45934
45558
  lg: (
45935
- padding: $kendo-signature-padding-lg,
45936
- line-size: $kendo-signature-line-size-lg,
45937
- line-offset: $kendo-signature-line-bottom-offset-lg
45559
+ padding-x: $kendo-signature-padding-x-lg,
45560
+ padding-y: $kendo-signature-padding-y-lg,
45561
+ line-size: $kendo-signature-line-size-lg
45938
45562
  )
45939
45563
  ) !default;
45940
45564
 
@@ -45948,7 +45572,7 @@ $kendo-signature-maximized-line-width: map-get( $spacing, 1 ) - map-get( $spacin
45948
45572
 
45949
45573
  .k-signature {
45950
45574
  width: $kendo-signature-width;
45951
- height: $kendo-signature-height;
45575
+ min-height: $kendo-signature-height;
45952
45576
  position: relative;
45953
45577
  box-sizing: border-box;
45954
45578
  display: flex;
@@ -45985,27 +45609,30 @@ $kendo-signature-maximized-line-width: map-get( $spacing, 1 ) - map-get( $spacin
45985
45609
 
45986
45610
  .k-signature-line {
45987
45611
  position: absolute;
45988
- z-index: 0;
45612
+ bottom: $kendo-signature-line-bottom-offset;
45613
+ z-index: 2;
45614
+ pointer-events: none;
45989
45615
  border-bottom-width: $kendo-signature-line-width;
45990
45616
  border-bottom-style: $kendo-signature-line-style;
45991
45617
  }
45992
45618
 
45993
45619
  // Sizes
45994
45620
  @each $size, $size-props in $kendo-signature-sizes {
45995
- $_padding: map-get($size-props, padding);
45621
+ $_padding-x: map-get($size-props, padding-x);
45622
+ $_padding-y: map-get($size-props, padding-y);
45996
45623
  $_line-size: map-get($size-props, line-size);
45997
45624
  $_line-offset: map-get($size-props, line-offset);
45998
45625
 
45999
45626
  .k-signature-#{$size} {
46000
- padding: $_padding;
45627
+ padding-inline: $_padding-x;
45628
+ padding-block: $_padding-y;
46001
45629
 
46002
45630
  .k-signature-line {
46003
45631
  width: $_line-size;
46004
- bottom: $_line-offset;
46005
45632
  }
46006
45633
  }
46007
-
46008
45634
  }
45635
+
46009
45636
  }
46010
45637
 
46011
45638
  // #endregion