@progress/kendo-theme-classic 5.3.2-dev.3 → 5.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/all.scss CHANGED
@@ -910,13 +910,15 @@ $_kendo-imported-modules: ();
910
910
  background-color: $primary;
911
911
  }
912
912
 
913
- &.k-state-focused::after {
913
+ &.k-state-focused::after ,
914
+ &.k-focus::after {
914
915
  opacity: 1;
915
916
  transform: scaleX(1);
916
917
  }
917
918
 
918
919
 
919
- &.k-state-invalid::after {
920
+ &.k-state-invalid::after ,
921
+ &.k-invalid::after {
920
922
  background-color: $error;
921
923
  transition: none;
922
924
  }
@@ -1754,6 +1756,7 @@ $display4-letter-spacing: null !default;
1754
1756
 
1755
1757
  // Disabled state
1756
1758
  .k-state-disabled,
1759
+ .k-disabled,
1757
1760
  .k-widget[disabled],
1758
1761
  .k-disabled {
1759
1762
  @include disabled( $disabled-styling );
@@ -9555,6 +9558,14 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
9555
9558
  }
9556
9559
  }
9557
9560
 
9561
+
9562
+ // Angular specific
9563
+ .k-input > kendo-popup,
9564
+ .k-picker > kendo-popup {
9565
+ position: fixed;
9566
+ }
9567
+
9568
+
9558
9569
  }
9559
9570
 
9560
9571
 
@@ -15121,7 +15132,8 @@ $progressbar-chunk-border: $body-bg !default;
15121
15132
 
15122
15133
 
15123
15134
  // Selection
15124
- > .k-state-selected {
15135
+ > .k-state-selected ,
15136
+ > .k-selected {
15125
15137
  border-width: 0;
15126
15138
  border-style: solid;
15127
15139
  display: flex;
@@ -15191,7 +15203,8 @@ $progressbar-chunk-border: $body-bg !default;
15191
15203
  flex-direction: row;
15192
15204
  }
15193
15205
 
15194
- > .k-state-selected {
15206
+ > .k-state-selected ,
15207
+ > .k-selected {
15195
15208
  width: 0;
15196
15209
  width: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
15197
15210
  flex-direction: row;
@@ -15217,7 +15230,8 @@ $progressbar-chunk-border: $body-bg !default;
15217
15230
  // Horizontal reverse
15218
15231
  &.k-progressbar-reverse {
15219
15232
 
15220
- > .k-state-selected {
15233
+ > .k-state-selected ,
15234
+ > .k-selected {
15221
15235
  flex-direction: row-reverse;
15222
15236
  justify-self: flex-end;
15223
15237
  }
@@ -15241,7 +15255,8 @@ $progressbar-chunk-border: $body-bg !default;
15241
15255
  writing-mode: vertical-lr;
15242
15256
  }
15243
15257
 
15244
- > .k-state-selected {
15258
+ > .k-state-selected ,
15259
+ > .k-selected {
15245
15260
  height: 0;
15246
15261
  height: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
15247
15262
  flex-direction: column-reverse;
@@ -15270,7 +15285,8 @@ $progressbar-chunk-border: $body-bg !default;
15270
15285
  &.k-progressbar-reverse {
15271
15286
  flex-direction: column;
15272
15287
 
15273
- > .k-state-selected {
15288
+ > .k-state-selected ,
15289
+ > .k-selected {
15274
15290
  flex-direction: column;
15275
15291
  align-self: flex-start;
15276
15292
  }
@@ -15282,6 +15298,7 @@ $progressbar-chunk-border: $body-bg !default;
15282
15298
  .k-progressbar-indeterminate {
15283
15299
  .k-progress-status-wrap,
15284
15300
  .k-state-selected,
15301
+ .k-selected,
15285
15302
  .k-item {
15286
15303
  display: none;
15287
15304
  }
@@ -15292,7 +15309,9 @@ $progressbar-chunk-border: $body-bg !default;
15292
15309
  .telerik-blazor.k-progressbar-horizontal {
15293
15310
 
15294
15311
  > .k-state-selected,
15295
- > .k-state-selected > .k-progress-status-wrap {
15312
+ > .k-selected,
15313
+ > .k-state-selected > .k-progress-status-wrap ,
15314
+ > .k-selected > .k-progress-status-wrap {
15296
15315
  transition: width .1s ease-in-out;
15297
15316
  }
15298
15317
  }
@@ -15320,7 +15339,8 @@ $progressbar-chunk-border: $body-bg !default;
15320
15339
  display: -ms-inline-grid;
15321
15340
 
15322
15341
  > .k-progress-status-wrap,
15323
- > .k-state-selected {
15342
+ > .k-state-selected ,
15343
+ > .k-selected {
15324
15344
  -ms-grid-column: 1;
15325
15345
  -ms-grid-row: 1;
15326
15346
  }
@@ -15329,7 +15349,8 @@ $progressbar-chunk-border: $body-bg !default;
15329
15349
  -ms-grid-columns: 1fr;
15330
15350
  -ms-grid-rows: $progressbar-height;
15331
15351
 
15332
- &.k-progressbar-reverse > .k-state-selected {
15352
+ &.k-progressbar-reverse > .k-state-selected ,
15353
+ &.k-progressbar-reverse > .k-selected {
15333
15354
  -ms-grid-column-align: end;
15334
15355
  }
15335
15356
  }
@@ -15337,11 +15358,13 @@ $progressbar-chunk-border: $body-bg !default;
15337
15358
  -ms-grid-columns: $progressbar-height;
15338
15359
  -ms-grid-rows: 1fr;
15339
15360
 
15340
- > .k-state-selected {
15361
+ > .k-state-selected ,
15362
+ > .k-selected {
15341
15363
  -ms-grid-row-align: end;
15342
15364
  }
15343
15365
 
15344
- &.k-progressbar-reverse > .k-state-selected {
15366
+ &.k-progressbar-reverse > .k-state-selected ,
15367
+ &.k-progressbar-reverse > .k-selected {
15345
15368
  -ms-grid-row-align: start;
15346
15369
  }
15347
15370
  }
@@ -15363,7 +15386,8 @@ $progressbar-chunk-border: $body-bg !default;
15363
15386
  .k-progressbar {
15364
15387
  @include fill( $progressbar-text, $progressbar-bg, $progressbar-border, $progressbar-gradient );
15365
15388
 
15366
- .k-state-selected {
15389
+ .k-state-selected ,
15390
+ .k-selected {
15367
15391
  @include fill( $progressbar-fill-text, $progressbar-fill-bg, $progressbar-fill-border, $progressbar-fill-gradient );
15368
15392
  }
15369
15393
 
@@ -15732,7 +15756,8 @@ $kendo-radio-ripple-opacity: .25 !default;
15732
15756
  }
15733
15757
 
15734
15758
  .k-radio:focus,
15735
- .k-radio.k-state-focus {
15759
+ .k-radio.k-state-focus ,
15760
+ .k-radio.k-focus {
15736
15761
  box-shadow: none !important; // sass-lint:disable-line no-important
15737
15762
 
15738
15763
  &::after {
@@ -15795,7 +15820,8 @@ $kendo-radio-ripple-opacity: .25 !default;
15795
15820
 
15796
15821
  // Hover state
15797
15822
  .k-radio:hover,
15798
- .k-radio.k-state-hover {
15823
+ .k-radio.k-state-hover ,
15824
+ .k-radio.k-hover {
15799
15825
  @include fill(
15800
15826
  $kendo-radio-hover-text,
15801
15827
  $kendo-radio-hover-bg,
@@ -15806,7 +15832,8 @@ $kendo-radio-ripple-opacity: .25 !default;
15806
15832
 
15807
15833
  // Focus state
15808
15834
  .k-radio:focus,
15809
- .k-radio.k-state-focus {
15835
+ .k-radio.k-state-focus ,
15836
+ .k-radio.k-focus {
15810
15837
  @include fill( $border: $kendo-radio-focus-border );
15811
15838
  @include box-shadow( $kendo-radio-focus-shadow );
15812
15839
  }
@@ -15837,7 +15864,8 @@ $kendo-radio-ripple-opacity: .25 !default;
15837
15864
  );
15838
15865
  }
15839
15866
  .k-radio:checked:focus,
15840
- .k-radio.k-checked.k-state-focus {
15867
+ .k-radio.k-checked.k-state-focus ,
15868
+ .k-radio.k-checked.k-focus {
15841
15869
  @include fill( $border: $kendo-radio-focus-checked-border );
15842
15870
  @include box-shadow( $kendo-radio-focus-checked-shadow );
15843
15871
  }
@@ -16007,7 +16035,8 @@ $slider-disabled-opacity: null !default;
16007
16035
  }
16008
16036
 
16009
16037
 
16010
- &.k-state-disabled {
16038
+ &.k-state-disabled ,
16039
+ &.k-disabled {
16011
16040
  .k-tick,
16012
16041
  .k-slider-track,
16013
16042
  .k-draghandle {
@@ -16453,18 +16482,21 @@ $slider-disabled-opacity: null !default;
16453
16482
  }
16454
16483
 
16455
16484
  &:focus,
16456
- &.k-state-focused {
16485
+ &.k-state-focused ,
16486
+ &.k-focus {
16457
16487
  @include box-shadow( $slider-draghandle-focused-shadow );
16458
16488
  }
16459
16489
  }
16460
16490
 
16461
- &.k-state-focused {
16491
+ &.k-state-focused ,
16492
+ &.k-focus {
16462
16493
  .k-draghandle {
16463
16494
  @include box-shadow( $slider-draghandle-focused-shadow );
16464
16495
  }
16465
16496
  }
16466
16497
 
16467
- &.k-state-disabled {
16498
+ &.k-state-disabled ,
16499
+ &.k-disabled {
16468
16500
  opacity: $slider-disabled-opacity;
16469
16501
  }
16470
16502
  }
@@ -17013,7 +17045,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17013
17045
  }
17014
17046
 
17015
17047
  // // styles are applied to the k-link element inside
17016
- // .k-state-selected {
17048
+ // .k-state-selected ,
17049
+ // .k-selected {
17017
17050
  // color: inherit;
17018
17051
  // background: transparent;
17019
17052
  // border-color: transparent;
@@ -17212,7 +17245,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17212
17245
  );
17213
17246
  }
17214
17247
  .k-calendar-td.k-state-selected:hover .k-link,
17248
+ .k-calendar-td.k-selected:hover .k-link,
17215
17249
  .k-calendar-td.k-state-selected.k-state-hover .k-link,
17250
+ .k-calendar-td.k-selected.k-hover .k-link,
17216
17251
  .k-calendar-td.k-selected:hover .k-link,
17217
17252
  .k-calendar-td.k-selected.k-hover .k-link {
17218
17253
  @include fill(
@@ -17223,12 +17258,15 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17223
17258
  );
17224
17259
  }
17225
17260
  .k-calendar-td.k-state-focused .k-link,
17261
+ .k-calendar-td.k-focus .k-link,
17226
17262
  .k-calendar-td.k-state-focus .k-link,
17227
17263
  .k-calendar-td.k-focus .k-link {
17228
17264
  box-shadow: $calendar-cell-focused-shadow;
17229
17265
  }
17230
17266
  .k-calendar-td.k-state-selected.k-state-focused .k-link,
17267
+ .k-calendar-td.k-selected.k-focused .k-link,
17231
17268
  .k-calendar-td.k-state-selected.k-state-focus .k-link,
17269
+ .k-calendar-td.k-selected.k-focus .k-link,
17232
17270
  .k-calendar-td.k-selected:focus .k-link,
17233
17271
  .k-calendar-td.k-selected.k-focus .k-link {
17234
17272
  box-shadow: $calendar-cell-selected-focus-shadow;
@@ -17328,6 +17366,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
17328
17366
  }
17329
17367
 
17330
17368
  .k-range-start.k-state-active,
17369
+ .k-range-start.k-active,
17331
17370
  .k-range-end.k-state-active,
17332
17371
  .k-range-end.k-active {
17333
17372
  .k-link {
@@ -17527,7 +17566,8 @@ $time-list-focused-bg: rgba(0, 0, 0, .04) !default;
17527
17566
  display: block;
17528
17567
  }
17529
17568
 
17530
- &.k-state-focused {
17569
+ &.k-state-focused ,
17570
+ &.k-focus {
17531
17571
  &::before,
17532
17572
  &::after {
17533
17573
  display: block;
@@ -17671,7 +17711,8 @@ $time-list-focused-bg: rgba(0, 0, 0, .04) !default;
17671
17711
  color: $time-list-title-text;
17672
17712
  }
17673
17713
 
17674
- &.k-state-focused {
17714
+ &.k-state-focused ,
17715
+ &.k-focus {
17675
17716
  .k-title {
17676
17717
  color: $time-list-title-focus-text;
17677
17718
  }
@@ -17996,8 +18037,11 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
17996
18037
 
17997
18038
  &:focus,
17998
18039
  &.k-state-focus,
18040
+ &.k-focus,
17999
18041
  &.k-state-selected,
18000
- &.k-state-selected:hover {
18042
+ &.k-selected,
18043
+ &.k-state-selected:hover ,
18044
+ &.k-selected:hover {
18001
18045
  position: relative;
18002
18046
  z-index: 100;
18003
18047
  }
@@ -18028,6 +18072,7 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
18028
18072
  }
18029
18073
 
18030
18074
  &.k-state-selected,
18075
+ &.k-selected,
18031
18076
  &.k-state-selected:hover,
18032
18077
  &.k-selected,
18033
18078
  &.k-selected:hover {
@@ -20006,14 +20051,16 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
20006
20051
  color: $component-text;
20007
20052
 
20008
20053
  &:focus,
20009
- &.k-state-focused {
20054
+ &.k-state-focused ,
20055
+ &.k-focus {
20010
20056
 
20011
20057
  .k-rating-item {
20012
20058
  > .k-icon {
20013
20059
  text-shadow: $rating-icon-focused-shadow;
20014
20060
  }
20015
20061
 
20016
- &.k-state-selected > .k-icon {
20062
+ &.k-state-selected > .k-icon ,
20063
+ &.k-selected > .k-icon {
20017
20064
  text-shadow: $rating-icon-focused-selected-shadow;
20018
20065
  }
20019
20066
  }
@@ -20023,17 +20070,20 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
20023
20070
  .k-rating-item {
20024
20071
  color: $rating-icon-text;
20025
20072
 
20026
- &.k-state-selected {
20073
+ &.k-state-selected ,
20074
+ &.k-selected {
20027
20075
  color: $rating-icon-selected-text;
20028
20076
 
20029
20077
  &:focus,
20030
- &.k-state-focused {
20078
+ &.k-state-focused ,
20079
+ &.k-focus {
20031
20080
  color: $rating-icon-focused-text;
20032
20081
  }
20033
20082
  }
20034
20083
 
20035
20084
  &:hover,
20036
- &.k-state-hover {
20085
+ &.k-state-hover ,
20086
+ &.k-hover {
20037
20087
  color: $rating-icon-hover-text;
20038
20088
  cursor: pointer;
20039
20089
  }
@@ -21263,7 +21313,8 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
21263
21313
  z-index: 1;
21264
21314
  }
21265
21315
  input[disabled],
21266
- input.k-state-disabled {
21316
+ input.k-state-disabled ,
21317
+ input.k-disabled {
21267
21318
  visibility: hidden;
21268
21319
  }
21269
21320
  }
@@ -21310,11 +21361,13 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
21310
21361
 
21311
21362
  .k-file {
21312
21363
 
21313
- &.k-state-focused {
21364
+ &.k-state-focused ,
21365
+ &.k-focus {
21314
21366
  box-shadow: inset $upload-focused-shadow;
21315
21367
  }
21316
21368
 
21317
- .k-upload-action.k-state-focused {
21369
+ .k-upload-action.k-state-focused ,
21370
+ .k-upload-action.k-focus {
21318
21371
  box-shadow: $upload-focused-shadow;
21319
21372
  }
21320
21373
 
@@ -21406,6 +21459,7 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
21406
21459
 
21407
21460
  // Invalid,
21408
21461
  &.k-state-invalid,
21462
+ &.k-invalid,
21409
21463
  &.ng-invalid.ng-touched,
21410
21464
  &.ng-invalid.ng-dirty {
21411
21465
  border-color: $invalid-border;
@@ -22375,7 +22429,8 @@ $actionsheet-item-disabled-shadow: null !default;
22375
22429
 
22376
22430
  // Hover state
22377
22431
  &:hover,
22378
- &.k-state-hover {
22432
+ &.k-state-hover ,
22433
+ &.k-hover {
22379
22434
  @include fill(
22380
22435
  $actionsheet-item-hover-text,
22381
22436
  $actionsheet-item-hover-bg,
@@ -22388,7 +22443,8 @@ $actionsheet-item-disabled-shadow: null !default;
22388
22443
 
22389
22444
  // Focus state
22390
22445
  &:focus,
22391
- &.k-state-focus {
22446
+ &.k-state-focus ,
22447
+ &.k-focus {
22392
22448
  @include fill(
22393
22449
  $actionsheet-item-focus-text,
22394
22450
  $actionsheet-item-focus-bg,
@@ -22401,7 +22457,8 @@ $actionsheet-item-disabled-shadow: null !default;
22401
22457
 
22402
22458
  // Disabed state
22403
22459
  &:disabled,
22404
- &.k-state-disabled {
22460
+ &.k-state-disabled ,
22461
+ &.k-disabled {
22405
22462
  @include fill(
22406
22463
  $actionsheet-item-disabled-text,
22407
22464
  $actionsheet-item-disabled-bg,
@@ -22645,7 +22702,8 @@ $actionsheet-item-disabled-shadow: null !default;
22645
22702
 
22646
22703
  .k-window {
22647
22704
  &:focus,
22648
- &.k-state-focused {
22705
+ &.k-state-focused ,
22706
+ &.k-focus {
22649
22707
  @include box-shadow( $window-focused-shadow );
22650
22708
  }
22651
22709
  }
@@ -23115,29 +23173,34 @@ $drawer-selected-hover-text: $selected-hover-text !default;
23115
23173
  .k-drawer-item {
23116
23174
 
23117
23175
  &:hover,
23118
- &.k-state-hover {
23176
+ &.k-state-hover ,
23177
+ &.k-hover {
23119
23178
  color: $drawer-hovered-text;
23120
23179
  background-color: $drawer-hovered-bg;
23121
23180
  }
23122
23181
 
23123
23182
  &:focus,
23124
- &.k-state-focused {
23183
+ &.k-state-focused ,
23184
+ &.k-focus {
23125
23185
  background-color: $drawer-focused-bg;
23126
23186
  box-shadow: $drawer-focused-shadow;
23127
23187
 
23128
23188
  &:hover,
23129
- &.k-state-hover {
23189
+ &.k-state-hover ,
23190
+ &.k-hover {
23130
23191
  color: $drawer-hovered-text;
23131
23192
  background-color: $drawer-hovered-bg;
23132
23193
  }
23133
23194
  }
23134
23195
 
23135
- &.k-state-selected {
23196
+ &.k-state-selected ,
23197
+ &.k-selected {
23136
23198
  color: $drawer-selected-text;
23137
23199
  background-color: $drawer-selected-bg;
23138
23200
 
23139
23201
  &:hover,
23140
- &.k-state-hover {
23202
+ &.k-state-hover ,
23203
+ &.k-hover {
23141
23204
  color: $drawer-selected-hover-text;
23142
23205
  background-color: $drawer-selected-hover-bg;
23143
23206
  }
@@ -24395,7 +24458,8 @@ $bottom-nav-flat-border: $component-border !default;
24395
24458
  outline: 0;
24396
24459
  }
24397
24460
  }
24398
- .k-bottom-nav-item.k-state-disabled {
24461
+ .k-bottom-nav-item.k-state-disabled ,
24462
+ .k-bottom-nav-item.k-disabled {
24399
24463
  background-color: initial;
24400
24464
  }
24401
24465
 
@@ -24442,12 +24506,15 @@ $bottom-nav-flat-border: $component-border !default;
24442
24506
  );
24443
24507
 
24444
24508
  .k-bottom-nav-item.k-state-focus,
24509
+ .k-bottom-nav-item.k-focus,
24445
24510
  .k-bottom-nav-item.k-state-focused,
24511
+ .k-bottom-nav-item.k-focus,
24446
24512
  .k-bottom-nav-item:focus {
24447
24513
  @include fill( $bg: rgba(true-mix( $color, contrast-wcag( $color ), 35%), .2));
24448
24514
  }
24449
24515
 
24450
- .k-bottom-nav-item.k-state-selected {
24516
+ .k-bottom-nav-item.k-state-selected ,
24517
+ .k-bottom-nav-item.k-selected {
24451
24518
  @include fill( $color: contrast-wcag( $color ) );
24452
24519
  }
24453
24520
  }
@@ -24462,13 +24529,16 @@ $bottom-nav-flat-border: $component-border !default;
24462
24529
  );
24463
24530
 
24464
24531
  .k-bottom-nav-item.k-state-focus,
24532
+ .k-bottom-nav-item.k-focus,
24465
24533
  .k-bottom-nav-item.k-state-focused,
24534
+ .k-bottom-nav-item.k-focus,
24466
24535
  .k-bottom-nav-item:focus {
24467
24536
  @include fill( $bg: rgba($bottom-nav-flat-text, .05) );
24468
24537
  }
24469
24538
 
24470
24539
  @each $name, $color in $kendo-theme-colors {
24471
- &.k-bottom-nav-#{$name} .k-bottom-nav-item.k-state-selected {
24540
+ &.k-bottom-nav-#{$name} .k-bottom-nav-item.k-state-selected ,
24541
+ &.k-bottom-nav-#{$name} .k-bottom-nav-item.k-selected {
24472
24542
  @if $name == "secondary" or $name == "light" {
24473
24543
  @include fill( $color: try-shade($color, 3) );
24474
24544
  } @else {
@@ -24728,7 +24798,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
24728
24798
  );
24729
24799
 
24730
24800
  &:focus,
24731
- &.k-state-focused {
24801
+ &.k-state-focused ,
24802
+ &.k-focus {
24732
24803
  @include box-shadow( $breadcrumb-focused-shadow );
24733
24804
  }
24734
24805
  }
@@ -24744,7 +24815,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
24744
24815
 
24745
24816
  // Hovered state
24746
24817
  &:hover,
24747
- &.k-state-hover {
24818
+ &.k-state-hover ,
24819
+ &.k-hover {
24748
24820
  @include fill(
24749
24821
  $breadcrumb-link-hovered-text,
24750
24822
  $breadcrumb-link-hovered-bg,
@@ -24754,7 +24826,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
24754
24826
 
24755
24827
  // Focused state
24756
24828
  &:focus,
24757
- &.k-state-focused {
24829
+ &.k-state-focused ,
24830
+ &.k-focus {
24758
24831
  @include fill(
24759
24832
  $breadcrumb-link-focused-text,
24760
24833
  $breadcrumb-link-focused-bg,
@@ -24775,7 +24848,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
24775
24848
 
24776
24849
  // Hovered state
24777
24850
  &:hover,
24778
- &.k-state-hover {
24851
+ &.k-state-hover ,
24852
+ &.k-hover {
24779
24853
  @include fill(
24780
24854
  $breadcrumb-root-link-hovered-text,
24781
24855
  $breadcrumb-root-link-hovered-bg,
@@ -24785,7 +24859,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
24785
24859
 
24786
24860
  // Focused state
24787
24861
  &:focus,
24788
- &.k-state-focused {
24862
+ &.k-state-focused ,
24863
+ &.k-focus {
24789
24864
  @include fill(
24790
24865
  $breadcrumb-root-link-focused-text,
24791
24866
  $breadcrumb-root-link-focused-bg,
@@ -24933,7 +25008,8 @@ $pager-dropdown-width: 5em !default;
24933
25008
 
24934
25009
  // Focused state
24935
25010
  &:focus,
24936
- &.k-state-focus {
25011
+ &.k-state-focus ,
25012
+ &.k-focus {
24937
25013
  z-index: 3;
24938
25014
  }
24939
25015
  }
@@ -24982,7 +25058,8 @@ $pager-dropdown-width: 5em !default;
24982
25058
  &:hover {
24983
25059
  z-index: 2;
24984
25060
  }
24985
- &.k-state-disabled {
25061
+ &.k-state-disabled ,
25062
+ &.k-disabled {
24986
25063
  color: inherit;
24987
25064
  }
24988
25065
  }
@@ -25031,7 +25108,8 @@ $pager-dropdown-width: 5em !default;
25031
25108
  }
25032
25109
 
25033
25110
  // Selected state
25034
- .k-state-selected {
25111
+ .k-state-selected ,
25112
+ .k-selected {
25035
25113
  cursor: inherit;
25036
25114
  z-index: 2;
25037
25115
  }
@@ -25179,7 +25257,8 @@ $pager-dropdown-width: 5em !default;
25179
25257
  &:focus,
25180
25258
  &.k-focus,
25181
25259
  &.k-state-focus,
25182
- &.k-state-focused {
25260
+ &.k-state-focused ,
25261
+ &.k-focus {
25183
25262
  @include fill( $bg: $pager-focus-bg );
25184
25263
  @include box-shadow( $pager-focus-shadow );
25185
25264
  }
@@ -25194,7 +25273,8 @@ $pager-dropdown-width: 5em !default;
25194
25273
  );
25195
25274
 
25196
25275
  &:hover,
25197
- &.k-state-hover {
25276
+ &.k-state-hover ,
25277
+ &.k-hover {
25198
25278
  @include fill(
25199
25279
  $pager-item-hover-text,
25200
25280
  $pager-item-hover-bg,
@@ -25202,7 +25282,8 @@ $pager-dropdown-width: 5em !default;
25202
25282
  );
25203
25283
  }
25204
25284
 
25205
- &.k-state-selected {
25285
+ &.k-state-selected ,
25286
+ &.k-selected {
25206
25287
  @include fill(
25207
25288
  $pager-item-selected-text,
25208
25289
  $pager-item-selected-bg,
@@ -25211,7 +25292,8 @@ $pager-dropdown-width: 5em !default;
25211
25292
  }
25212
25293
 
25213
25294
  &:focus,
25214
- &.k-state-focus {
25295
+ &.k-state-focus ,
25296
+ &.k-focus {
25215
25297
  background-color: $pager-item-focus-bg;
25216
25298
  @include box-shadow( $pager-item-focus-shadow );
25217
25299
  }
@@ -25234,7 +25316,8 @@ $pager-dropdown-width: 5em !default;
25234
25316
  );
25235
25317
 
25236
25318
  &:hover,
25237
- &.k-state-hover {
25319
+ &.k-state-hover ,
25320
+ &.k-hover {
25238
25321
  @include fill(
25239
25322
  $pager-number-hover-text,
25240
25323
  $pager-number-hover-bg,
@@ -25243,12 +25326,14 @@ $pager-dropdown-width: 5em !default;
25243
25326
  }
25244
25327
 
25245
25328
  &:focus,
25246
- &.k-state-focus {
25329
+ &.k-state-focus ,
25330
+ &.k-focus {
25247
25331
  background-color: $pager-number-focus-bg;
25248
25332
  @include box-shadow( $pager-number-focus-shadow );
25249
25333
  }
25250
25334
 
25251
- &.k-state-selected {
25335
+ &.k-state-selected ,
25336
+ &.k-selected {
25252
25337
  @include fill(
25253
25338
  $pager-number-selected-text,
25254
25339
  $pager-number-selected-bg,
@@ -25280,7 +25365,8 @@ $pager-dropdown-width: 5em !default;
25280
25365
  );
25281
25366
 
25282
25367
  &:hover,
25283
- &.k-state-hover {
25368
+ &.k-state-hover ,
25369
+ &.k-hover {
25284
25370
  @include fill(
25285
25371
  $dropdownlist-hovered-text,
25286
25372
  $dropdownlist-hovered-bg,
@@ -25300,14 +25386,16 @@ $pager-dropdown-width: 5em !default;
25300
25386
  .k-link {
25301
25387
 
25302
25388
  &:hover,
25303
- &.k-state-hover {
25389
+ &.k-state-hover ,
25390
+ &.k-hover {
25304
25391
  @include fill(
25305
25392
  $kendo-list-item-hover-text,
25306
25393
  $kendo-list-item-hover-bg
25307
25394
  );
25308
25395
  }
25309
25396
 
25310
- &.k-state-selected {
25397
+ &.k-state-selected ,
25398
+ &.k-selected {
25311
25399
  @include fill(
25312
25400
  $kendo-list-item-selected-text,
25313
25401
  $kendo-list-item-selected-bg
@@ -25577,7 +25665,8 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
25577
25665
  opacity: $stepper-optional-label-opacity;
25578
25666
  }
25579
25667
  .k-step-disabled .k-step-label-optional,
25580
- &.k-state-disabled .k-step-label-optional {
25668
+ &.k-state-disabled .k-step-label-optional ,
25669
+ &.k-disabled .k-step-label-optional {
25581
25670
  color: inherit;
25582
25671
  }
25583
25672
 
@@ -25894,7 +25983,8 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
25894
25983
  $bg: $stepper-progressbar-bg
25895
25984
  );
25896
25985
 
25897
- .k-state-selected {
25986
+ .k-state-selected ,
25987
+ .k-selected {
25898
25988
  @include fill(
25899
25989
  $color: $stepper-progressbar-fill-text,
25900
25990
  $bg: $stepper-progressbar-fill-bg
@@ -26144,12 +26234,14 @@ $tabstrip-content-border-focused: $component-text !default;
26144
26234
  position: relative;
26145
26235
  z-index: 1;
26146
26236
 
26147
- &.k-state-active {
26237
+ &.k-state-active ,
26238
+ &.k-active {
26148
26239
  display: block;
26149
26240
  }
26150
26241
 
26151
26242
  &:focus,
26152
- &.k-state-focused {
26243
+ &.k-state-focused ,
26244
+ &.k-focus {
26153
26245
  outline-width: 1px;
26154
26246
  outline-style: dotted;
26155
26247
  outline-offset: -1px;
@@ -26237,7 +26329,8 @@ $tabstrip-content-border-focused: $component-text !default;
26237
26329
  margin-left: $tabstrip-item-gap;
26238
26330
  }
26239
26331
 
26240
- .k-item.k-state-active {
26332
+ .k-item.k-state-active ,
26333
+ .k-item.k-active {
26241
26334
  border-bottom-color: transparent;
26242
26335
  }
26243
26336
  }
@@ -26266,7 +26359,8 @@ $tabstrip-content-border-focused: $component-text !default;
26266
26359
  margin-left: $tabstrip-item-gap;
26267
26360
  }
26268
26361
 
26269
- .k-item.k-state-active {
26362
+ .k-item.k-state-active ,
26363
+ .k-item.k-active {
26270
26364
  border-top-color: transparent;
26271
26365
  }
26272
26366
  }
@@ -26299,7 +26393,8 @@ $tabstrip-content-border-focused: $component-text !default;
26299
26393
  margin-top: $tabstrip-item-gap;
26300
26394
  }
26301
26395
 
26302
- .k-item.k-state-active {
26396
+ .k-item.k-state-active ,
26397
+ .k-item.k-active {
26303
26398
  border-right-color: transparent;
26304
26399
  }
26305
26400
  }
@@ -26334,7 +26429,8 @@ $tabstrip-content-border-focused: $component-text !default;
26334
26429
  margin-top: $tabstrip-item-gap;
26335
26430
  }
26336
26431
 
26337
- .k-item.k-state-active {
26432
+ .k-item.k-state-active ,
26433
+ .k-item.k-active {
26338
26434
  border-left-color: transparent;
26339
26435
  }
26340
26436
  }
@@ -26379,7 +26475,8 @@ $tabstrip-content-border-focused: $component-text !default;
26379
26475
  border-left-width: $tabstrip-indicator-size;
26380
26476
  }
26381
26477
  }
26382
- .k-item.k-state-active::after {
26478
+ .k-item.k-state-active::after ,
26479
+ .k-item.k-active::after {
26383
26480
  display: block;
26384
26481
  }
26385
26482
 
@@ -26452,7 +26549,8 @@ $tabstrip-content-border-focused: $component-text !default;
26452
26549
  );
26453
26550
 
26454
26551
  &:hover,
26455
- &.k-state-hover {
26552
+ &.k-state-hover ,
26553
+ &.k-hover {
26456
26554
  @include fill(
26457
26555
  $tabstrip-item-hovered-text,
26458
26556
  $tabstrip-item-hovered-bg,
@@ -26463,7 +26561,9 @@ $tabstrip-content-border-focused: $component-text !default;
26463
26561
 
26464
26562
  &:active,
26465
26563
  &.k-state-active,
26466
- &.k-state-selected {
26564
+ &.k-active,
26565
+ &.k-state-selected ,
26566
+ &.k-selected {
26467
26567
  @include fill(
26468
26568
  $tabstrip-item-selected-text,
26469
26569
  $tabstrip-item-selected-bg,
@@ -26473,7 +26573,8 @@ $tabstrip-content-border-focused: $component-text !default;
26473
26573
  }
26474
26574
 
26475
26575
  &:focus,
26476
- &.k-state-focused {
26576
+ &.k-state-focused ,
26577
+ &.k-focus {
26477
26578
  @include box-shadow( $tabstrip-item-focused-shadow );
26478
26579
  }
26479
26580
 
@@ -26495,7 +26596,8 @@ $tabstrip-content-border-focused: $component-text !default;
26495
26596
  );
26496
26597
 
26497
26598
  &:focus,
26498
- &.k-state-focused {
26599
+ &.k-state-focused ,
26600
+ &.k-focus {
26499
26601
  outline-color: $tabstrip-content-border-focused;
26500
26602
  }
26501
26603
  }
@@ -26505,7 +26607,8 @@ $tabstrip-content-border-focused: $component-text !default;
26505
26607
  @if ($tabstrip-indicator-size) {
26506
26608
 
26507
26609
  .k-tabstrip-items-wrapper {
26508
- .k-item.k-state-active::after {
26610
+ .k-item.k-state-active::after ,
26611
+ .k-item.k-active::after {
26509
26612
  border-color: $tabstrip-indicator-color;
26510
26613
  }
26511
26614
  }
@@ -26598,7 +26701,8 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
26598
26701
  justify-content: space-between;
26599
26702
 
26600
26703
  &:focus,
26601
- &.k-state-focused {
26704
+ &.k-state-focused ,
26705
+ &.k-focus {
26602
26706
  outline-width: 1px;
26603
26707
  outline-style: dotted;
26604
26708
  outline-offset: -1px;
@@ -26694,12 +26798,14 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
26694
26798
  @include exports("wizard/theme") {
26695
26799
  .k-wizard-step {
26696
26800
  &:focus,
26697
- &.k-state-focused {
26801
+ &.k-state-focused ,
26802
+ &.k-focus {
26698
26803
  outline-color: $wizard-step-border-focused;
26699
26804
  }
26700
26805
 
26701
26806
  .k-ie &:focus,
26702
- .k-ie &.k-state-focused {
26807
+ .k-ie &.k-state-focused ,
26808
+ .k-ie &.k-focus {
26703
26809
  @include box-shadow($wizard-focused-shadow);
26704
26810
  outline: none;
26705
26811
  }
@@ -26869,7 +26975,8 @@ $expander-content-padding-y: $padding-y * 4 !default;
26869
26975
  $expander-border
26870
26976
  );
26871
26977
 
26872
- &.k-state-focus {
26978
+ &.k-state-focus ,
26979
+ &.k-focus {
26873
26980
  box-shadow: $expander-focus-shadow;
26874
26981
  }
26875
26982
  }
@@ -26883,12 +26990,14 @@ $expander-content-padding-y: $padding-y * 4 !default;
26883
26990
  outline: none;
26884
26991
 
26885
26992
  &:hover,
26886
- &.k-state-hover {
26993
+ &.k-state-hover ,
26994
+ &.k-hover {
26887
26995
  background-color: $expander-header-hover-bg;
26888
26996
  }
26889
26997
 
26890
26998
  // Should be removed
26891
- &.k-state-focused {
26999
+ &.k-state-focused ,
27000
+ &.k-focus {
26892
27001
  background-color: $expander-header-focused-bg;
26893
27002
  box-shadow: $expander-header-focused-shadow;
26894
27003
  }
@@ -27260,7 +27369,8 @@ $panelbar-header-expanded-gradient: null !default;
27260
27369
 
27261
27370
  // Hover
27262
27371
  > .k-link:hover,
27263
- > .k-link.k-state-hover {
27372
+ > .k-link.k-state-hover ,
27373
+ > .k-link.k-hover {
27264
27374
  @include fill(
27265
27375
  $panelbar-header-hovered-text,
27266
27376
  $panelbar-header-hovered-bg,
@@ -27272,7 +27382,9 @@ $panelbar-header-expanded-gradient: null !default;
27272
27382
  // Focus
27273
27383
  > .k-link:focus,
27274
27384
  > .k-link.k-state-focus,
27275
- > .k-link.k-state-focused {
27385
+ > .k-link.k-focus,
27386
+ > .k-link.k-state-focused ,
27387
+ > .k-link.k-focus {
27276
27388
  @include fill(
27277
27389
  $panelbar-header-focused-text,
27278
27390
  $panelbar-header-focused-bg,
@@ -27284,7 +27396,8 @@ $panelbar-header-expanded-gradient: null !default;
27284
27396
 
27285
27397
  // Focus & Hover
27286
27398
  > .k-link:focus:hover,
27287
- > .k-link.k-state-focus.k-state-hover {
27399
+ > .k-link.k-state-focus.k-state-hover ,
27400
+ > .k-link.k-focus.k-hover {
27288
27401
  @include fill(
27289
27402
  $panelbar-header-hovered-focused-text,
27290
27403
  $panelbar-header-hovered-focused-bg,
@@ -27294,7 +27407,8 @@ $panelbar-header-expanded-gradient: null !default;
27294
27407
  }
27295
27408
 
27296
27409
  // Selected
27297
- > .k-link.k-state-selected {
27410
+ > .k-link.k-state-selected ,
27411
+ > .k-link.k-selected {
27298
27412
  @include fill(
27299
27413
  $panelbar-header-selected-text,
27300
27414
  $panelbar-header-selected-bg,
@@ -27310,7 +27424,9 @@ $panelbar-header-expanded-gradient: null !default;
27310
27424
 
27311
27425
  // Selected Hover
27312
27426
  > .k-link.k-state-selected:hover,
27313
- > .k-link.k-state-selected.k-state-hover {
27427
+ > .k-link.k-selected:hover,
27428
+ > .k-link.k-state-selected.k-state-hover ,
27429
+ > .k-link.k-selected.k-hover {
27314
27430
  @include fill(
27315
27431
  $panelbar-header-selected-hovered-text,
27316
27432
  $panelbar-header-selected-hovered-bg,
@@ -27321,8 +27437,11 @@ $panelbar-header-expanded-gradient: null !default;
27321
27437
 
27322
27438
  // Selected Focus
27323
27439
  > .k-link.k-state-selected:focus,
27440
+ > .k-link.k-selected:focus,
27324
27441
  > .k-link.k-state-selected.k-state-focus,
27325
- > .k-link.k-state-selected.k-state-focused {
27442
+ > .k-link.k-selected.k-focus,
27443
+ > .k-link.k-state-selected.k-state-focused ,
27444
+ > .k-link.k-selected.k-focused {
27326
27445
  @include fill(
27327
27446
  $panelbar-header-selected-focused-text,
27328
27447
  $panelbar-header-selected-focused-bg,
@@ -27333,8 +27452,11 @@ $panelbar-header-expanded-gradient: null !default;
27333
27452
 
27334
27453
  // Selected Focus & Hover
27335
27454
  > .k-link.k-state-selected:hover:focus,
27455
+ > .k-link.k-selected:hover:focus,
27336
27456
  > .k-link.k-state-selected.k-state-hover.k-state-focus,
27337
- > .k-link.k-state-selected.k-state-hover.k-state-focused {
27457
+ > .k-link.k-selected.k-hover.k-state-focus,
27458
+ > .k-link.k-state-selected.k-state-hover.k-state-focused ,
27459
+ > .k-link.k-selected.k-hover.k-state-focused {
27338
27460
  @include fill(
27339
27461
  $panelbar-header-selected-hovered-focused-text,
27340
27462
  $panelbar-header-selected-hovered-focused-bg,
@@ -27352,8 +27474,10 @@ $panelbar-header-expanded-gradient: null !default;
27352
27474
  // Hover
27353
27475
  > .k-item > .k-link:hover,
27354
27476
  > .k-item > .k-link.k-state-hover,
27477
+ > .k-item > .k-link.k-hover,
27355
27478
  > .k-panelbar-item > .k-link:hover,
27356
- > .k-panelbar-item > .k-link.k-state-hover {
27479
+ > .k-panelbar-item > .k-link.k-state-hover ,
27480
+ > .k-panelbar-item > .k-link.k-hover {
27357
27481
  @include fill(
27358
27482
  $panelbar-item-hovered-text,
27359
27483
  $panelbar-item-hovered-bg,
@@ -27365,10 +27489,14 @@ $panelbar-header-expanded-gradient: null !default;
27365
27489
  // Focus
27366
27490
  > .k-item > .k-link:focus,
27367
27491
  > .k-item > .k-link.k-state-focus,
27492
+ > .k-item > .k-link.k-focus,
27368
27493
  > .k-item > .k-link.k-state-focused,
27494
+ > .k-item > .k-link.k-focus,
27369
27495
  > .k-panelbar-item > .k-link:focus,
27370
27496
  > .k-panelbar-item > .k-link.k-state-focus,
27371
- > .k-panelbar-item > .k-link.k-state-focused {
27497
+ > .k-panelbar-item > .k-link.k-focus,
27498
+ > .k-panelbar-item > .k-link.k-state-focused ,
27499
+ > .k-panelbar-item > .k-link.k-focus {
27372
27500
  @include fill(
27373
27501
  $panelbar-item-focused-text,
27374
27502
  $panelbar-item-focused-bg,
@@ -27381,8 +27509,10 @@ $panelbar-header-expanded-gradient: null !default;
27381
27509
  // Focus & Hover
27382
27510
  > .k-item > .k-link:focus:hover,
27383
27511
  > .k-item > .k-link.k-state-focus.k-state-hover,
27512
+ > .k-item > .k-link.k-focus.k-hover,
27384
27513
  > .k-panelbar-item > .k-link:focus:hover,
27385
- > .k-panelbar-item > .k-link.k-state-focus.k-state-hover {
27514
+ > .k-panelbar-item > .k-link.k-state-focus.k-state-hover ,
27515
+ > .k-panelbar-item > .k-link.k-focus.k-hover {
27386
27516
  @include fill(
27387
27517
  $panelbar-item-hovered-focused-text,
27388
27518
  $panelbar-item-hovered-focused-bg,
@@ -27393,7 +27523,9 @@ $panelbar-header-expanded-gradient: null !default;
27393
27523
 
27394
27524
  // Selected
27395
27525
  > .k-item > .k-link.k-state-selected,
27396
- > .k-panelbar-item > .k-link.k-state-selected {
27526
+ > .k-item > .k-link.k-selected,
27527
+ > .k-panelbar-item > .k-link.k-state-selected ,
27528
+ > .k-panelbar-item > .k-link.k-selected {
27397
27529
  @include fill(
27398
27530
  $panelbar-item-selected-text,
27399
27531
  $panelbar-item-selected-bg,
@@ -27404,9 +27536,13 @@ $panelbar-header-expanded-gradient: null !default;
27404
27536
 
27405
27537
  // Selected Hover
27406
27538
  > .k-item > .k-link.k-state-selected:hover,
27539
+ > .k-item > .k-link.k-selected:hover,
27407
27540
  > .k-item > .k-link.k-state-selected.k-state-hover,
27541
+ > .k-item > .k-link.k-selected.k-hover,
27408
27542
  > .k-panelbar-item > .k-link.k-state-selected:hover,
27409
- > .k-panelbar-item > .k-link.k-state-selected.k-state-hover {
27543
+ > .k-panelbar-item > .k-link.k-selected:hover,
27544
+ > .k-panelbar-item > .k-link.k-state-selected.k-state-hover ,
27545
+ > .k-panelbar-item > .k-link.k-selected.k-hover {
27410
27546
  @include fill(
27411
27547
  $panelbar-item-selected-hovered-text,
27412
27548
  $panelbar-item-selected-hovered-bg,
@@ -27417,11 +27553,17 @@ $panelbar-header-expanded-gradient: null !default;
27417
27553
 
27418
27554
  // Selected Focus
27419
27555
  > .k-item > .k-link.k-state-selected:focus,
27556
+ > .k-item > .k-link.k-selected:focus,
27420
27557
  > .k-item > .k-link.k-state-selected.k-state-focus,
27558
+ > .k-item > .k-link.k-selected.k-focus,
27421
27559
  > .k-item > .k-link.k-state-selected.k-state-focused,
27560
+ > .k-item > .k-link.k-selected.k-focused,
27422
27561
  > .k-panelbar-item > .k-link.k-state-selected:focus,
27562
+ > .k-panelbar-item > .k-link.k-selected:focus,
27423
27563
  > .k-panelbar-item > .k-link.k-state-selected.k-state-focus,
27424
- > .k-item > .k-link.k-state-selected.k-state-focused {
27564
+ > .k-panelbar-item > .k-link.k-selected.k-focus,
27565
+ > .k-item > .k-link.k-state-selected.k-state-focused ,
27566
+ > .k-item > .k-link.k-selected.k-focused {
27425
27567
  @include fill(
27426
27568
  $panelbar-item-selected-focused-text,
27427
27569
  $panelbar-item-selected-focused-bg,
@@ -27432,11 +27574,17 @@ $panelbar-header-expanded-gradient: null !default;
27432
27574
 
27433
27575
  // Selected Focus & Hover
27434
27576
  > .k-item > .k-link.k-state-selected:focus:hover,
27577
+ > .k-item > .k-link.k-selected:focus:hover,
27435
27578
  > .k-item > .k-link.k-state-selected.k-state-focus.k-state-hover,
27579
+ > .k-item > .k-link.k-selected.k-focus.k-state-hover,
27436
27580
  > .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover,
27581
+ > .k-item > .k-link.k-selected.k-focused.k-state-hover,
27437
27582
  > .k-panelbar-item > .k-link.k-state-selected:focus:hover,
27583
+ > .k-panelbar-item > .k-link.k-selected:focus:hover,
27438
27584
  > .k-panelbar-item > .k-link.k-state-selected.k-state-focus.k-state-hover,
27439
- > .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover {
27585
+ > .k-panelbar-item > .k-link.k-selected.k-focus.k-state-hover,
27586
+ > .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover ,
27587
+ > .k-item > .k-link.k-selected.k-focused.k-state-hover {
27440
27588
  @include fill(
27441
27589
  $panelbar-item-selected-hovered-focused-text,
27442
27590
  $panelbar-item-selected-hovered-focused-bg,
@@ -27720,6 +27868,7 @@ $splitbar-selected-text: $selected-text !default;
27720
27868
  }
27721
27869
  .k-splitbar:hover,
27722
27870
  .k-splitbar.k-state-hover,
27871
+ .k-splitbar.k-hover,
27723
27872
  .k-splitbar-horizontal-hover,
27724
27873
  .k-splitbar-vertical-hover {
27725
27874
  color: $splitbar-hover-text;
@@ -27727,7 +27876,9 @@ $splitbar-selected-text: $selected-text !default;
27727
27876
  }
27728
27877
  .k-splitbar:focus,
27729
27878
  .k-splitbar.k-state-focus,
27730
- .k-splitbar.k-state-focused {
27879
+ .k-splitbar.k-focus,
27880
+ .k-splitbar.k-state-focused ,
27881
+ .k-splitbar.k-focus {
27731
27882
  color: $splitbar-selected-text;
27732
27883
  background: $splitbar-selected-bg;
27733
27884
  }
@@ -27839,7 +27990,8 @@ $tilelayout-hint-border: $component-border !default;
27839
27990
  .k-tilelayout-item:focus,
27840
27991
  .k-tilelayout-item.k-focus,
27841
27992
  .k-tilelayout-item.k-state-focus,
27842
- .k-tilelayout-item.k-state-focused {
27993
+ .k-tilelayout-item.k-state-focused ,
27994
+ .k-tilelayout-item.k-focus {
27843
27995
  @include box-shadow($tilelayout-card-focus-shadow);
27844
27996
  }
27845
27997
 
@@ -28516,11 +28668,13 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
28516
28668
 
28517
28669
  .k-column-menu {
28518
28670
 
28519
- .k-listgroup-item.k-state-selected {
28671
+ .k-listgroup-item.k-state-selected ,
28672
+ .k-listgroup-item.k-selected {
28520
28673
  color: $adaptive-grid-sort-text;
28521
28674
  background: none;
28522
28675
  }
28523
- .k-listgroup-item.k-state-selected .k-link {
28676
+ .k-listgroup-item.k-state-selected .k-link ,
28677
+ .k-listgroup-item.k-selected .k-link {
28524
28678
  color: inherit;
28525
28679
  }
28526
28680
  }
@@ -30160,27 +30314,33 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
30160
30314
 
30161
30315
  // Hover state
30162
30316
  tbody tr:not(.k-detail-row):hover,
30163
- tbody tr:not(.k-detail-row).k-state-hover {
30317
+ tbody tr:not(.k-detail-row).k-state-hover ,
30318
+ tbody tr:not(.k-detail-row).k-hover {
30164
30319
  color: $grid-hovered-text;
30165
30320
  background-color: $grid-hovered-bg;
30166
30321
  }
30167
30322
 
30168
30323
  // Selected state
30169
30324
  td.k-state-selected,
30170
- tr.k-state-selected > td {
30325
+ td.k-selected,
30326
+ tr.k-state-selected > td ,
30327
+ tr.k-selected > td {
30171
30328
  color: $grid-selected-text;
30172
30329
  background-color: $grid-selected-bg;
30173
30330
  }
30174
30331
 
30175
30332
  // Focused state
30176
30333
  td.k-state-focused,
30334
+ td.k-focus,
30177
30335
  th.k-state-focused,
30336
+ th.k-focus,
30178
30337
  th:focus,
30179
30338
  .k-master-row > td:focus,
30180
30339
  .k-grouping-row > td:focus,
30181
30340
  .k-detail-row > td:focus,
30182
30341
  .k-group-footer > td:focus,
30183
- .k-grid-pager.k-state-focused {
30342
+ .k-grid-pager.k-state-focused ,
30343
+ .k-grid-pager.k-focus {
30184
30344
  box-shadow: $grid-focused-shadow;
30185
30345
  }
30186
30346
 
@@ -30222,17 +30382,21 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
30222
30382
  }
30223
30383
 
30224
30384
  // Selected state
30225
- .k-state-selected td {
30385
+ .k-state-selected td ,
30386
+ .k-selected td {
30226
30387
  @include fill( $bg: $grid-sticky-selected-bg );
30227
30388
  }
30228
30389
 
30229
- .k-state-selected.k-alt td {
30390
+ .k-state-selected.k-alt td ,
30391
+ .k-selected.k-alt td {
30230
30392
  @include fill( $bg: $grid-sticky-selected-alt-bg );
30231
30393
  }
30232
30394
 
30233
30395
  // Selected hover
30234
30396
  .k-state-selected:hover td,
30235
- .k-state-selected.k-state-hover td {
30397
+ .k-selected:hover td,
30398
+ .k-state-selected.k-state-hover td ,
30399
+ .k-selected.k-hover td {
30236
30400
  @include fill( $bg: $grid-sticky-selected-hovered-bg );
30237
30401
  }
30238
30402
  }
@@ -30273,10 +30437,12 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
30273
30437
  }
30274
30438
  &:focus,
30275
30439
  &.k-state-focus,
30440
+ &.k-focus,
30276
30441
  &.k-state-border-down {
30277
30442
  box-shadow: inset 0 0 0 2px rgba( 0, 0, 0, .1 );
30278
30443
  }
30279
- &.k-state-active {
30444
+ &.k-state-active ,
30445
+ &.k-active {
30280
30446
  color: $selected-text;
30281
30447
  background-color: $selected-bg;
30282
30448
  }
@@ -30332,14 +30498,20 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
30332
30498
 
30333
30499
  // Selected state
30334
30500
  &.k-state-selected .k-grid-content-sticky,
30501
+ &.k-selected .k-grid-content-sticky,
30335
30502
  &.k-state-selected .k-grid-row-sticky,
30336
- td.k-grid-content-sticky.k-state-selected {
30503
+ &.k-selected .k-grid-row-sticky,
30504
+ td.k-grid-content-sticky.k-state-selected ,
30505
+ td.k-grid-content-sticky.k-selected {
30337
30506
  @include fill( $bg: $grid-sticky-selected-bg );
30338
30507
  }
30339
30508
 
30340
30509
  &.k-state-selected.k-alt .k-grid-content-sticky,
30510
+ &.k-selected.k-alt .k-grid-content-sticky,
30341
30511
  &.k-state-selected.k-alt .k-grid-row-sticky,
30342
- &.k-alt td.k-grid-content-sticky.k-state-selected {
30512
+ &.k-selected.k-alt .k-grid-row-sticky,
30513
+ &.k-alt td.k-grid-content-sticky.k-state-selected ,
30514
+ &.k-alt td.k-grid-content-sticky.k-selected {
30343
30515
  @include fill( $bg: $grid-sticky-selected-alt-bg );
30344
30516
  }
30345
30517
 
@@ -30348,18 +30520,26 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
30348
30520
  &:hover .k-grid-content-sticky,
30349
30521
  &:hover .k-grid-row-sticky,
30350
30522
  &.k-state-hover .k-grid-content-sticky,
30351
- &.k-state-hover .k-grid-row-sticky {
30523
+ &.k-hover .k-grid-content-sticky,
30524
+ &.k-state-hover .k-grid-row-sticky ,
30525
+ &.k-hover .k-grid-row-sticky {
30352
30526
  background-color: $grid-sticky-hovered-bg;
30353
30527
  }
30354
30528
 
30355
30529
 
30356
30530
  // Selected hover
30357
30531
  &.k-state-selected:hover .k-grid-content-sticky,
30532
+ &.k-selected:hover .k-grid-content-sticky,
30358
30533
  &.k-state-selected:hover .k-grid-row-sticky,
30534
+ &.k-selected:hover .k-grid-row-sticky,
30359
30535
  &.k-state-selected.k-state-hover .k-grid-content-sticky,
30536
+ &.k-selected.k-hover .k-grid-content-sticky,
30360
30537
  &.k-state-selected.k-state-hover .k-grid-row-sticky,
30538
+ &.k-selected.k-hover .k-grid-row-sticky,
30361
30539
  &:hover td.k-grid-content-sticky.k-state-selected,
30362
- &.k-state-hover td.k-grid-content-sticky.k-state-selected {
30540
+ &:hover td.k-grid-content-sticky.k-selected,
30541
+ &.k-state-hover td.k-grid-content-sticky.k-state-selected ,
30542
+ &.k-hover td.k-grid-content-sticky.k-selected {
30363
30543
  background-color: $grid-sticky-selected-hovered-bg;
30364
30544
  }
30365
30545
  }
@@ -30372,7 +30552,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
30372
30552
  background-color: $grid-sticky-bg;
30373
30553
 
30374
30554
  &:hover,
30375
- &.k-state-hover {
30555
+ &.k-state-hover ,
30556
+ &.k-hover {
30376
30557
  background-color: $grid-sticky-hovered-bg;
30377
30558
  }
30378
30559
  }
@@ -30385,7 +30566,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
30385
30566
  }
30386
30567
 
30387
30568
  &:hover td,
30388
- &.k-state-hover td {
30569
+ &.k-state-hover td ,
30570
+ &.k-hover td {
30389
30571
  background-color: $grid-sticky-hovered-bg;
30390
30572
  }
30391
30573
  }
@@ -30397,43 +30579,66 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
30397
30579
 
30398
30580
  // Selected state
30399
30581
  tr.k-state-selected .k-grid-content-sticky,
30582
+ tr.k-selected .k-grid-content-sticky,
30400
30583
  .k-state-selected.k-grid-row-sticky td,
30584
+ .k-selected.k-grid-row-sticky td,
30401
30585
  .k-grid-row-sticky td.k-state-selected,
30402
- .k-state-selected.k-grid-content-sticky {
30586
+ .k-grid-row-sticky td.k-selected,
30587
+ .k-state-selected.k-grid-content-sticky ,
30588
+ .k-selected.k-grid-content-sticky {
30403
30589
  @include fill( $bg: $grid-sticky-selected-bg );
30404
30590
  }
30405
30591
 
30406
30592
  tr.k-state-selected.k-alt .k-grid-content-sticky,
30593
+ tr.k-selected.k-alt .k-grid-content-sticky,
30407
30594
  .k-state-selected.k-alt.k-grid-row-sticky td,
30408
- .k-alt .k-state-selected.k-grid-content-sticky {
30595
+ .k-selected.k-alt.k-grid-row-sticky td,
30596
+ .k-alt .k-state-selected.k-grid-content-sticky ,
30597
+ .k-alt .k-selected.k-grid-content-sticky {
30409
30598
  @include fill( $bg: $grid-sticky-selected-alt-bg );
30410
30599
  }
30411
30600
 
30412
30601
  // Hover state
30413
30602
  tr:hover .k-grid-content-sticky,
30414
30603
  tr.k-state-hover .k-grid-content-sticky,
30604
+ tr.k-hover .k-grid-content-sticky,
30415
30605
  .k-grid-row-sticky:hover td,
30416
30606
  .k-grid-row-sticky.k-state-hover td,
30607
+ .k-grid-row-sticky.k-hover td,
30417
30608
  .k-grid-row-sticky.k-alt:hover td,
30418
30609
  .k-grid-row-sticky.k-alt.k-state-hover td,
30610
+ .k-grid-row-sticky.k-alt.k-hover td,
30419
30611
  .k-alt:hover .k-grid-content-sticky,
30420
- .k-alt.k-state-hover .k-grid-content-sticky {
30612
+ .k-alt.k-state-hover .k-grid-content-sticky ,
30613
+ .k-alt.k-hover .k-grid-content-sticky {
30421
30614
  background-color: $grid-sticky-hovered-bg;
30422
30615
  }
30423
30616
 
30424
30617
  // Selected + Hover
30425
30618
  tr.k-state-selected:hover .k-grid-content-sticky,
30619
+ tr.k-selected:hover .k-grid-content-sticky,
30426
30620
  tr.k-state-selected.k-state-hover .k-grid-content-sticky,
30621
+ tr.k-selected.k-hover .k-grid-content-sticky,
30427
30622
  .k-state-selected.k-grid-row-sticky:hover td,
30623
+ .k-selected.k-grid-row-sticky:hover td,
30428
30624
  .k-state-selected.k-grid-row-sticky.k-state-hover td,
30625
+ .k-selected.k-grid-row-sticky.k-hover td,
30429
30626
  .k-state-selected.k-alt.k-grid-row-sticky:hover td,
30627
+ .k-selected.k-alt.k-grid-row-sticky:hover td,
30430
30628
  .k-state-selected.k-alt.k-grid-row-sticky.k-state-hover td,
30629
+ .k-selected.k-alt.k-grid-row-sticky.k-hover td,
30431
30630
  tr.k-state-selected.k-alt:hover .k-grid-content-sticky,
30631
+ tr.k-selected.k-alt:hover .k-grid-content-sticky,
30432
30632
  tr.k-state-selected.k-alt.k-state-hover .k-grid-content-sticky,
30633
+ tr.k-selected.k-alt.k-hover .k-grid-content-sticky,
30433
30634
  .k-grid-row-sticky:hover td.k-state-selected,
30635
+ .k-grid-row-sticky:hover td.k-selected,
30434
30636
  .k-grid-row-sticky.k-state-hover td.k-state-selected,
30637
+ .k-grid-row-sticky.k-hover td.k-selected,
30435
30638
  tr:hover .k-grid-content-sticky.k-state-selected,
30436
- tr.k-state-hover .k-grid-content-sticky.k-state-selected {
30639
+ tr:hover .k-grid-content-sticky.k-selected,
30640
+ tr.k-state-hover .k-grid-content-sticky.k-state-selected ,
30641
+ tr.k-hover .k-grid-content-sticky.k-selected {
30437
30642
  background-color: $grid-sticky-selected-hovered-bg;
30438
30643
  }
30439
30644
  }
@@ -30444,7 +30649,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
30444
30649
  }
30445
30650
 
30446
30651
  &:hover .k-grid-content-sticky,
30447
- &.k-state-hover .k-grid-content-sticky {
30652
+ &.k-state-hover .k-grid-content-sticky ,
30653
+ &.k-hover .k-grid-content-sticky {
30448
30654
  @include fill( $bg: $grid-sticky-hovered-bg );
30449
30655
  }
30450
30656
  }
@@ -30457,12 +30663,14 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
30457
30663
  );
30458
30664
  }
30459
30665
  .k-columnmenu-item:focus,
30460
- .k-columnmenu-item.k-state-focus {
30666
+ .k-columnmenu-item.k-state-focus ,
30667
+ .k-columnmenu-item.k-focus {
30461
30668
  @include box-shadow( $kendo-list-item-focus-shadow );
30462
30669
  }
30463
30670
 
30464
30671
  .k-columnmenu-item {
30465
- &.k-state-selected {
30672
+ &.k-state-selected ,
30673
+ &.k-selected {
30466
30674
  @include fill(
30467
30675
  $kendo-list-item-selected-text,
30468
30676
  $kendo-list-item-selected-bg
@@ -30487,14 +30695,16 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
30487
30695
  );
30488
30696
 
30489
30697
  &:hover,
30490
- &.k-state-hover {
30698
+ &.k-state-hover ,
30699
+ &.k-hover {
30491
30700
  @include fill(
30492
30701
  $kendo-list-item-hover-text,
30493
30702
  $kendo-list-item-hover-bg
30494
30703
  );
30495
30704
  }
30496
30705
 
30497
- &.k-state-selected {
30706
+ &.k-state-selected ,
30707
+ &.k-selected {
30498
30708
  @include fill(
30499
30709
  $kendo-list-item-selected-text,
30500
30710
  $kendo-list-item-selected-bg
@@ -30502,7 +30712,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
30502
30712
  }
30503
30713
 
30504
30714
  &:focus,
30505
- &.k-state-focused {
30715
+ &.k-state-focused ,
30716
+ &.k-focus {
30506
30717
  @include box-shadow( $kendo-list-item-focus-shadow );
30507
30718
  }
30508
30719
  }
@@ -30743,7 +30954,8 @@ $listview-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
30743
30954
  // Listview content
30744
30955
  .k-listview-content {
30745
30956
 
30746
- > .k-state-focused {
30957
+ > .k-state-focused ,
30958
+ > .k-focus {
30747
30959
  @include fill(
30748
30960
  $listview-item-focus-text,
30749
30961
  $listview-item-focus-bg,
@@ -30752,7 +30964,8 @@ $listview-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
30752
30964
  @include box-shadow( $listview-item-focus-shadow );
30753
30965
  }
30754
30966
 
30755
- > .k-state-selected {
30967
+ > .k-state-selected ,
30968
+ > .k-selected {
30756
30969
  @include fill(
30757
30970
  $listview-item-selected-text,
30758
30971
  $listview-item-selected-bg,
@@ -31132,7 +31345,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
31132
31345
  overflow: hidden;
31133
31346
 
31134
31347
  // disabled cells in the Spreadsheet should allow navigation if link is used
31135
- .k-state-disabled {
31348
+ .k-state-disabled ,
31349
+ .k-disabled {
31136
31350
  pointer-events: auto;
31137
31351
  }
31138
31352
  }
@@ -31693,7 +31907,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
31693
31907
  background-position: 50% 50%;
31694
31908
 
31695
31909
  &:hover div,
31696
- &.k-state-hovered div {
31910
+ &.k-state-hovered div ,
31911
+ &.k-hover div {
31697
31912
  margin: 0;
31698
31913
  align-self: center;
31699
31914
  opacity: 1;
@@ -31758,7 +31973,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
31758
31973
  .k-spreadsheet-insert-image-dialog {
31759
31974
  .k-spreadsheet-has-image {
31760
31975
  &:hover,
31761
- &.k-state-hovered {
31976
+ &.k-state-hovered ,
31977
+ &.k-hover {
31762
31978
  border-radius: $spreadsheet-insert-image-dialog-preview-overlay-border-radius;
31763
31979
  }
31764
31980
  }
@@ -31937,7 +32153,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
31937
32153
  );
31938
32154
  }
31939
32155
 
31940
- &.k-state-active {
32156
+ &.k-state-active ,
32157
+ &.k-active {
31941
32158
  @include fill(
31942
32159
  $kendo-button-active-text,
31943
32160
  $kendo-button-active-bg,
@@ -31954,7 +32171,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
31954
32171
  > .k-menu,
31955
32172
  > .k-menu:not(.k-context-menu) {
31956
32173
 
31957
- .k-item.k-state-hover {
32174
+ .k-item.k-state-hover ,
32175
+ .k-item.k-hover {
31958
32176
  @include fill(
31959
32177
  $kendo-list-item-hover-text,
31960
32178
  $kendo-list-item-hover-bg
@@ -31984,7 +32202,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
31984
32202
  .k-button {}
31985
32203
 
31986
32204
  .k-button:hover,
31987
- .k-button.k-state-hover {
32205
+ .k-button.k-state-hover ,
32206
+ .k-button.k-hover {
31988
32207
  @include fill(
31989
32208
  $kendo-list-item-hover-text,
31990
32209
  $kendo-list-item-hover-bg
@@ -31992,7 +32211,9 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
31992
32211
  }
31993
32212
  .k-button:active,
31994
32213
  .k-button.k-state-active,
31995
- .k-button.k-state-selected {
32214
+ .k-button.k-active,
32215
+ .k-button.k-state-selected ,
32216
+ .k-button.k-selected {
31996
32217
  @include fill(
31997
32218
  $kendo-list-item-selected-text,
31998
32219
  $kendo-list-item-selected-bg
@@ -32013,12 +32234,14 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
32013
32234
 
32014
32235
  .k-spreadsheet-has-image {
32015
32236
  &:hover,
32016
- &.k-state-hovered {
32237
+ &.k-state-hovered ,
32238
+ &.k-hover {
32017
32239
  box-shadow: $spreadsheet-insert-image-dialog-preview-overlay-shadow;
32018
32240
  }
32019
32241
 
32020
32242
  &:hover div,
32021
- &.k-state-hovered div {
32243
+ &.k-state-hovered div ,
32244
+ &.k-hover div {
32022
32245
  color: $spreadsheet-insert-image-dialog-overlay-hovered-text;
32023
32246
  }
32024
32247
  }
@@ -32979,10 +33202,13 @@ $pivotgrid-remove-text: null !default;
32979
33202
 
32980
33203
  // Hover state
32981
33204
  .k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-state-hover,
33205
+ .k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-hover,
32982
33206
  .k-pivotgrid-row-headers tbody > .k-pivotgrid-row:hover,
32983
33207
  .k-pivotgrid-column-headers tbody > .k-pivotgrid-row.k-state-hover,
33208
+ .k-pivotgrid-column-headers tbody > .k-pivotgrid-row.k-hover,
32984
33209
  .k-pivotgrid-column-headers tbody > .k-pivotgrid-row:hover,
32985
33210
  .k-pivotgrid-values tbody > .k-pivotgrid-row.k-state-hover,
33211
+ .k-pivotgrid-values tbody > .k-pivotgrid-row.k-hover,
32986
33212
  .k-pivotgrid-values tbody > .k-pivotgrid-row:hover {
32987
33213
  @include fill (
32988
33214
  $pivotgrid-hover-text,
@@ -32993,6 +33219,7 @@ $pivotgrid-remove-text: null !default;
32993
33219
 
32994
33220
  // Focus state
32995
33221
  .k-pivotgrid-cell.k-state-focus,
33222
+ .k-pivotgrid-cell.k-focus,
32996
33223
  .k-pivotgrid-cell:focus,
32997
33224
  .k-master-row > .k-pivotgrid-cell:focus,
32998
33225
  .k-grouping-row > .k-pivotgrid-cell:focus,
@@ -33003,7 +33230,9 @@ $pivotgrid-remove-text: null !default;
33003
33230
 
33004
33231
  // Selected state
33005
33232
  .k-pivotgrid-cell.k-state-selected,
33006
- .k-pivotgrid-row.k-state-selected > .k-pivotgrid-cell {
33233
+ .k-pivotgrid-cell.k-selected,
33234
+ .k-pivotgrid-row.k-state-selected > .k-pivotgrid-cell ,
33235
+ .k-pivotgrid-row.k-selected > .k-pivotgrid-cell {
33007
33236
  @include fill (
33008
33237
  $pivotgrid-selected-text,
33009
33238
  $pivotgrid-selected-bg,
@@ -33234,7 +33463,8 @@ $treelist-footer-row-border-width: 1px !default;
33234
33463
  }
33235
33464
 
33236
33465
  .k-treelist-dragging,
33237
- .k-treelist-dragging .k-state-hover {
33466
+ .k-treelist-dragging .k-state-hover ,
33467
+ .k-treelist-dragging .k-hover {
33238
33468
  cursor: default;
33239
33469
  }
33240
33470
 
@@ -33964,7 +34194,8 @@ $filemanager-preview-icon-border: null !default;
33964
34194
  );
33965
34195
  }
33966
34196
 
33967
- &.k-state-selected .k-file-icon {
34197
+ &.k-state-selected .k-file-icon ,
34198
+ &.k-selected .k-file-icon {
33968
34199
  @include fill(
33969
34200
  inherit,
33970
34201
  transparent,
@@ -34427,7 +34658,8 @@ $taskboard-drag-placeholder-border: $component-border !default;
34427
34658
  );
34428
34659
  }
34429
34660
  .k-taskboard-column:focus,
34430
- .k-taskboard-column.k-state-focus {
34661
+ .k-taskboard-column.k-state-focus ,
34662
+ .k-taskboard-column.k-focus {
34431
34663
  @include fill(
34432
34664
  $taskboard-column-focus-text,
34433
34665
  $taskboard-column-focus-bg,
@@ -34629,7 +34861,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
34629
34861
  pointer-events: auto;
34630
34862
  }
34631
34863
 
34632
- .k-editor-content.k-state-focused {
34864
+ .k-editor-content.k-state-focused ,
34865
+ .k-editor-content.k-focus {
34633
34866
  outline-width: 1px;
34634
34867
  outline-style: dashed;
34635
34868
  }
@@ -35082,7 +35315,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
35082
35315
  display: block;
35083
35316
  margin: auto;
35084
35317
 
35085
- &.k-state-selected {
35318
+ &.k-state-selected ,
35319
+ &.k-selected {
35086
35320
  color: inherit;
35087
35321
  border-width: 0;
35088
35322
  background-image: none;
@@ -35304,7 +35538,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
35304
35538
 
35305
35539
  kendo-editor {
35306
35540
  &.k-readonly {
35307
- .k-editor-content.k-state-focused {
35541
+ .k-editor-content.k-state-focused ,
35542
+ .k-editor-content.k-focus {
35308
35543
  outline-color: $body-text;
35309
35544
  }
35310
35545
  }
@@ -35341,7 +35576,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
35341
35576
 
35342
35577
  // Hover & Actve state
35343
35578
  &:hover,
35344
- &.k-state-active {
35579
+ &.k-state-active ,
35580
+ &.k-active {
35345
35581
  border-color: $panel-border;
35346
35582
  }
35347
35583
  }
@@ -35358,7 +35594,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
35358
35594
 
35359
35595
  // Insert table
35360
35596
  .k-ct-popup {
35361
- .k-state-selected {
35597
+ .k-state-selected ,
35598
+ .k-selected {
35362
35599
  @include fill( $selected-text, $selected-bg, $selected-border, none );
35363
35600
  }
35364
35601
  }
@@ -35915,7 +36152,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
35915
36152
  }
35916
36153
  }
35917
36154
 
35918
- tr.k-state-selected > td:last-child {
36155
+ tr.k-state-selected > td:last-child ,
36156
+ tr.k-selected > td:last-child {
35919
36157
  background: transparent;
35920
36158
  }
35921
36159
 
@@ -36184,7 +36422,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
36184
36422
  border-color: currentColor;
36185
36423
  position: absolute;
36186
36424
  }
36187
- .k-gantt-line.k-state-selected {
36425
+ .k-gantt-line.k-state-selected ,
36426
+ .k-gantt-line.k-selected {
36188
36427
  z-index: 3;
36189
36428
  }
36190
36429
 
@@ -36257,7 +36496,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
36257
36496
  transform: translate(-50%, -50%);
36258
36497
  }
36259
36498
  .k-task-dot:hover::before,
36260
- .k-task-dot.k-state-hover::before {
36499
+ .k-task-dot.k-state-hover::before ,
36500
+ .k-task-dot.k-hover::before {
36261
36501
  border-width: 1px;
36262
36502
  }
36263
36503
  .k-task-start { left: 0; }
@@ -36730,7 +36970,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
36730
36970
  $border: $gantt-milestone-border
36731
36971
  );
36732
36972
  }
36733
- .k-task-milestone.k-state-selected .k-task-milestone-content {
36973
+ .k-task-milestone.k-state-selected .k-task-milestone-content ,
36974
+ .k-task-milestone.k-selected .k-task-milestone-content {
36734
36975
  @include fill(
36735
36976
  $bg: $gantt-milestone-selected-bg,
36736
36977
  $border: $gantt-milestone-selected-border
@@ -36744,7 +36985,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
36744
36985
  stroke: $gantt-line-fill;
36745
36986
  }
36746
36987
 
36747
- polyline.k-state-selected {
36988
+ polyline.k-state-selected ,
36989
+ polyline.k-selected {
36748
36990
  stroke: $gantt-line-selected-fill;
36749
36991
  }
36750
36992
  }
@@ -36797,7 +37039,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
36797
37039
  );
36798
37040
  }
36799
37041
  .k-task-dot:hover::before,
36800
- .k-task-dot.k-state-hover::before {
37042
+ .k-task-dot.k-state-hover::before ,
37043
+ .k-task-dot.k-hover::before {
36801
37044
  @include fill(
36802
37045
  $bg: $gantt-dot-hover-bg,
36803
37046
  $border: $gantt-dot-hover-border
@@ -36822,7 +37065,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
36822
37065
  );
36823
37066
  }
36824
37067
  }
36825
- .k-task-milestone.k-state-selected {
37068
+ .k-task-milestone.k-state-selected ,
37069
+ .k-task-milestone.k-selected {
36826
37070
  background-image: none;
36827
37071
  @include fill(
36828
37072
  $bg: $gantt-milestone-selected-bg,
@@ -36852,7 +37096,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
36852
37096
  .k-task-advanced .k-task-summary-complete {
36853
37097
  color: $gantt-advanced-bg;
36854
37098
  }
36855
- .k-task-summary.k-state-selected {
37099
+ .k-task-summary.k-state-selected ,
37100
+ .k-task-summary.k-selected {
36856
37101
  color: $gantt-summary-selected-bg;
36857
37102
 
36858
37103
  .k-task-summary-complete {
@@ -36895,7 +37140,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
36895
37140
  $bg: $gantt-advanced-bg
36896
37141
  );
36897
37142
  }
36898
- .k-task-single.k-state-selected {
37143
+ .k-task-single.k-state-selected ,
37144
+ .k-task-single.k-selected {
36899
37145
  @include fill(
36900
37146
  $gantt-task-selected-text,
36901
37147
  $gantt-task-selected-bg,
@@ -36911,7 +37157,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
36911
37157
  .k-gantt-line {
36912
37158
  color: $gantt-line-fill;
36913
37159
  }
36914
- .k-gantt-line.k-state-selected {
37160
+ .k-gantt-line.k-state-selected ,
37161
+ .k-gantt-line.k-selected {
36915
37162
  color: $gantt-line-selected-fill;
36916
37163
  }
36917
37164
 
@@ -37569,7 +37816,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
37569
37816
  }
37570
37817
 
37571
37818
  &:hover,
37572
- &.k-state-hover {
37819
+ &.k-state-hover ,
37820
+ &.k-hover {
37573
37821
  .k-event-delete {
37574
37822
  opacity: 1;
37575
37823
  }
@@ -37634,7 +37882,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
37634
37882
 
37635
37883
  // Hover
37636
37884
  &:hover,
37637
- &.k-state-hover {
37885
+ &.k-state-hover ,
37886
+ &.k-hover {
37638
37887
  .k-event-actions .k-event-delete,
37639
37888
  .k-resize-handle {
37640
37889
  visibility: visible;
@@ -37892,9 +38141,11 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
37892
38141
  visibility: hidden;
37893
38142
  }
37894
38143
  .k-state-hover .k-task > .k-event-delete,
38144
+ .k-hover .k-task > .k-event-delete,
37895
38145
  .k-scheduler-content tr:hover .k-event-delete,
37896
38146
  .k-scheduler-content .k-scheduler-row:hover .k-event-delete,
37897
- .k-scheduler-content .k-scheduler-row.k-state-hover .k-event-delete {
38147
+ .k-scheduler-content .k-scheduler-row.k-state-hover .k-event-delete ,
38148
+ .k-scheduler-content .k-scheduler-row.k-hover .k-event-delete {
37898
38149
  visibility: visible;
37899
38150
  }
37900
38151
  }
@@ -37967,7 +38218,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
37967
38218
  position: relative;
37968
38219
  }
37969
38220
 
37970
- td.k-state-selected {
38221
+ td.k-state-selected ,
38222
+ td.k-selected {
37971
38223
  background-color: inherit;
37972
38224
  }
37973
38225
  }
@@ -38315,7 +38567,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
38315
38567
  }
38316
38568
 
38317
38569
  .k-scheduler-layout td.k-state-selected,
38318
- .k-scheduler-layout .k-scheduler-cell.k-state-selected {
38570
+ .k-scheduler-layout td.k-selected,
38571
+ .k-scheduler-layout .k-scheduler-cell.k-state-selected ,
38572
+ .k-scheduler-layout .k-scheduler-cell.k-selected {
38319
38573
  background-color: rgba($selected-bg, .25);
38320
38574
  }
38321
38575
 
@@ -38337,7 +38591,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
38337
38591
  );
38338
38592
  @include box-shadow( $scheduler-event-shadow );
38339
38593
 
38340
- &.k-state-hover {
38594
+ &.k-state-hover ,
38595
+ &.k-hover {
38341
38596
  @include fill(
38342
38597
  $scheduler-event-hover-text,
38343
38598
  $scheduler-event-hover-bg,
@@ -38347,7 +38602,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
38347
38602
  @include box-shadow( $scheduler-event-hover-shadow );
38348
38603
  }
38349
38604
 
38350
- &.k-state-selected {
38605
+ &.k-state-selected ,
38606
+ &.k-selected {
38351
38607
  @include fill(
38352
38608
  $scheduler-event-selected-text,
38353
38609
  $scheduler-event-selected-bg,
@@ -38414,8 +38670,10 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
38414
38670
  // Hover
38415
38671
  .k-scheduler-content tr:hover,
38416
38672
  .k-scheduler-content tr.k-state-hover,
38673
+ .k-scheduler-content tr.k-hover,
38417
38674
  .k-scheduler-content .k-scheduler-row:hover,
38418
- .k-scheduler-content .k-scheduler-row.k-state-hover {
38675
+ .k-scheduler-content .k-scheduler-row.k-state-hover ,
38676
+ .k-scheduler-content .k-scheduler-row.k-hover {
38419
38677
  @include fill(
38420
38678
  $hovered-text,
38421
38679
  $hovered-bg,
@@ -38427,7 +38685,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
38427
38685
  .k-scheduler-content tr:hover .k-scheduler-datecolumn,
38428
38686
  .k-scheduler-content tr:hover .k-scheduler-groupcolumn,
38429
38687
  .k-scheduler-content tr.k-state-hover .k-scheduler-datecolumn,
38430
- .k-scheduler-content tr.k-state-hover .k-scheduler-groupcolumn {
38688
+ .k-scheduler-content tr.k-hover .k-scheduler-datecolumn,
38689
+ .k-scheduler-content tr.k-state-hover .k-scheduler-groupcolumn ,
38690
+ .k-scheduler-content tr.k-hover .k-scheduler-groupcolumn {
38431
38691
  @include fill(
38432
38692
  $scheduler-text,
38433
38693
  $scheduler-bg,
@@ -38436,11 +38696,14 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
38436
38696
  }
38437
38697
 
38438
38698
  // Selected
38439
- .k-scheduler-content tr.k-state-selected {
38699
+ .k-scheduler-content tr.k-state-selected ,
38700
+ .k-scheduler-content tr.k-selected {
38440
38701
  background-color: rgba($selected-bg, .25);
38441
38702
  }
38442
38703
  .k-scheduler-content tr.k-state-selected .k-scheduler-datecolumn,
38443
- .k-scheduler-content tr.k-state-selected .k-scheduler-groupcolumn {
38704
+ .k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
38705
+ .k-scheduler-content tr.k-state-selected .k-scheduler-groupcolumn ,
38706
+ .k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
38444
38707
  background-color: $scheduler-bg;
38445
38708
  }
38446
38709
  }
@@ -38457,7 +38720,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
38457
38720
  @include fill( $bg: $scheduler-yearview-indicator-bg );
38458
38721
  }
38459
38722
 
38460
- .k-state-selected .k-day-indicator {
38723
+ .k-state-selected .k-day-indicator ,
38724
+ .k-selected .k-day-indicator {
38461
38725
  @include fill( $bg: $scheduler-yearview-indicator-selected-bg );
38462
38726
  }
38463
38727
  }
@@ -38760,7 +39024,8 @@ $chat-quick-reply-hover-border: $primary !default;
38760
39024
 
38761
39025
 
38762
39026
  // Message states
38763
- .k-message.k-state-selected {
39027
+ .k-message.k-state-selected ,
39028
+ .k-message.k-selected {
38764
39029
  margin-bottom: $chat-item-spacing-y;
38765
39030
  border: 0;
38766
39031
  color: inherit;
@@ -38889,6 +39154,7 @@ $chat-quick-reply-hover-border: $primary !default;
38889
39154
 
38890
39155
  &:focus,
38891
39156
  &.k-state-focus,
39157
+ &.k-focus,
38892
39158
  &:focus-within {
38893
39159
  outline: 0;
38894
39160
  box-shadow: none;
@@ -38968,7 +39234,8 @@ $chat-quick-reply-hover-border: $primary !default;
38968
39234
  flex: 0 0 auto;
38969
39235
  }
38970
39236
 
38971
- &.k-state-selected {
39237
+ &.k-state-selected ,
39238
+ &.k-selected {
38972
39239
  background: none;
38973
39240
  }
38974
39241
  }
@@ -39204,7 +39471,8 @@ $chat-quick-reply-hover-border: $primary !default;
39204
39471
  .k-bubble:hover {
39205
39472
  @include box-shadow( $chat-bubble-hover-shadow );
39206
39473
  }
39207
- .k-state-selected .k-bubble {
39474
+ .k-state-selected .k-bubble ,
39475
+ .k-selected .k-bubble {
39208
39476
  @include box-shadow( $chat-bubble-selected-shadow );
39209
39477
  }
39210
39478
 
@@ -39219,7 +39487,8 @@ $chat-quick-reply-hover-border: $primary !default;
39219
39487
  .k-alt .k-bubble:hover {
39220
39488
  @include box-shadow( $chat-alt-bubble-hover-shadow );
39221
39489
  }
39222
- .k-alt .k-state-selected .k-bubble {
39490
+ .k-alt .k-state-selected .k-bubble ,
39491
+ .k-alt .k-selected .k-bubble {
39223
39492
  @include box-shadow( $chat-alt-bubble-selected-shadow );
39224
39493
  }
39225
39494
 
@@ -40017,7 +40286,8 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
40017
40286
  color: $body-text;
40018
40287
  }
40019
40288
 
40020
- .k-timeline-arrow.k-state-disabled {
40289
+ .k-timeline-arrow.k-state-disabled ,
40290
+ .k-timeline-arrow.k-disabled {
40021
40291
  opacity: 1; // The arrow button in disabled mode should have a solid background
40022
40292
  color: $timeline-track-arrow-disabled-text;
40023
40293
  background-color: $timeline-track-arrow-disabled-bg;
@@ -40037,7 +40307,8 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
40037
40307
  background-color: $timeline-flag-bg;
40038
40308
  }
40039
40309
 
40040
- .k-timeline-track-item.k-state-focus .k-timeline-circle {
40310
+ .k-timeline-track-item.k-state-focus .k-timeline-circle ,
40311
+ .k-timeline-track-item.k-focus .k-timeline-circle {
40041
40312
  @include box-shadow( $timeline-track-item-focus-shadow );
40042
40313
  }
40043
40314
  }
@@ -40747,7 +41018,8 @@ $scrollview-transition-timing-function: ease-in-out !default;
40747
41018
  -webkit-tap-highlight-color: $scrollview-arrow-tap-highlight-color;
40748
41019
 
40749
41020
  &:focus,
40750
- &.k-state-focus {
41021
+ &.k-state-focus ,
41022
+ &.k-focus {
40751
41023
  color: $scrollview-navigation-color;
40752
41024
  opacity: $scrollview-navigation-hover-opacity;
40753
41025
 
@@ -40757,7 +41029,8 @@ $scrollview-transition-timing-function: ease-in-out !default;
40757
41029
  }
40758
41030
 
40759
41031
  &:hover,
40760
- &.k-state-hover {
41032
+ &.k-state-hover ,
41033
+ &.k-hover {
40761
41034
  color: $scrollview-navigation-color;
40762
41035
  opacity: $scrollview-navigation-hover-opacity;
40763
41036
 
@@ -40776,13 +41049,15 @@ $scrollview-transition-timing-function: ease-in-out !default;
40776
41049
  }
40777
41050
 
40778
41051
  &:focus,
40779
- &.k-state-focused {
41052
+ &.k-state-focused ,
41053
+ &.k-focus {
40780
41054
  box-shadow: $scrollview-pagebutton-shadow;
40781
41055
  }
40782
41056
  }
40783
41057
 
40784
41058
  .k-scrollview-nav > .k-link:hover,
40785
- .k-scrollview-nav > .k-link.k-state-hover {
41059
+ .k-scrollview-nav > .k-link.k-state-hover ,
41060
+ .k-scrollview-nav > .k-link.k-hover {
40786
41061
  box-shadow: $scrollview-pagebutton-shadow;
40787
41062
  }
40788
41063
 
@@ -41602,7 +41877,8 @@ $treemap-line-height: $line-height !default;
41602
41877
  .k-leaf.k-inverse {
41603
41878
  color: $component-text;
41604
41879
  }
41605
- .k-leaf.k-state-hover {
41880
+ .k-leaf.k-state-hover ,
41881
+ .k-leaf.k-hover {
41606
41882
  box-shadow: inset 0 0 0 3px $component-border;
41607
41883
  }
41608
41884
  }
@@ -42100,7 +42376,8 @@ $orgchart-line-v-height: 25px !default;
42100
42376
  .k-orgchart-node-group-container:focus,
42101
42377
  .k-orgchart-node-group-container.k-focus,
42102
42378
  .k-orgchart-node-group-container.k-state-focus,
42103
- .k-orgchart-node-group-container.k-state-focused {
42379
+ .k-orgchart-node-group-container.k-state-focused ,
42380
+ .k-orgchart-node-group-container.k-focus {
42104
42381
  @include box-shadow( $orgchart-node-group-focus-shadow );
42105
42382
  @include fill ( $border: $orgchart-node-group-focus-border );
42106
42383
  }