@progress/kendo-theme-material 5.6.1-dev.6 → 5.8.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 (36) hide show
  1. package/dist/all.css +713 -908
  2. package/dist/all.scss +294 -537
  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 +4 -4
  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/pdf-viewer/_index.scss +3 -1
  29. package/scss/pdf-viewer/_variables.scss +14 -1
  30. package/scss/pivotgrid/_theme.scss +1 -2
  31. package/scss/scheduler/_layout.scss +0 -1
  32. package/scss/signature/_variables.scss +23 -21
  33. package/scss/slider/_theme.scss +0 -1
  34. package/scss/spreadsheet/_theme.scss +0 -8
  35. package/scss/timeline/_layout.scss +0 -2
  36. 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,63 +5395,19 @@ $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} {
5402
+ background-color: $bg-color;
5403
+ }
5404
+ .\!k-bg-#{$name} {
5393
5405
  background-color: $bg-color !important;
5394
5406
  }
5395
5407
  }
5396
5408
 
5397
5409
  }
5398
5410
 
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 );
5411
- }
5412
- }
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
-
5445
- }
5446
-
5447
5411
  // #endregion
5448
5412
 
5449
5413
  // #endregion
@@ -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
 
@@ -14811,6 +14762,12 @@ $tooltip-error-border: $tooltip-error-bg !default;
14811
14762
  align-items: center;
14812
14763
  }
14813
14764
 
14765
+ // Template item
14766
+ .k-toolbar-item:focus {
14767
+ text-decoration: none;
14768
+ outline: 0;
14769
+ }
14770
+
14814
14771
  }
14815
14772
 
14816
14773
 
@@ -15021,6 +14978,13 @@ $tooltip-error-border: $tooltip-error-bg !default;
15021
14978
  }
15022
14979
 
15023
14980
 
14981
+ // Template item
14982
+ .k-toolbar-item:focus,
14983
+ .k-toolbar-item.k-focus {
14984
+ @include box-shadow( $kendo-button-focus-shadow );
14985
+ }
14986
+
14987
+
15024
14988
  // Button group
15025
14989
  .k-button-group {}
15026
14990
 
@@ -15338,7 +15302,7 @@ $form-spacer: $padding-x * 2 !default;
15338
15302
 
15339
15303
  $form-font-size: $font-size !default;
15340
15304
  $form-line-height: $line-height !default;
15341
- $form-line-height-em: $form-line-height * 1em !default;
15305
+ $form-line-height-em: calc( #{$form-line-height} * 1em ) !default;
15342
15306
  $form-line-height-sm: $line-height-sm !default;
15343
15307
  $form-line-height-lg: $line-height-lg !default;
15344
15308
 
@@ -16728,7 +16692,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16728
16692
 
16729
16693
 
16730
16694
  // Selection
16731
- > .k-state-selected,
16732
16695
  > .k-selected {
16733
16696
  border-width: 0;
16734
16697
  border-style: solid;
@@ -16799,7 +16762,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16799
16762
  flex-direction: row;
16800
16763
  }
16801
16764
 
16802
- > .k-state-selected,
16803
16765
  > .k-selected {
16804
16766
  width: 0;
16805
16767
  width: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
@@ -16826,7 +16788,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16826
16788
  // Horizontal reverse
16827
16789
  &.k-progressbar-reverse {
16828
16790
 
16829
- > .k-state-selected,
16830
16791
  > .k-selected {
16831
16792
  flex-direction: row-reverse;
16832
16793
  justify-self: flex-end;
@@ -16851,7 +16812,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16851
16812
  writing-mode: vertical-lr;
16852
16813
  }
16853
16814
 
16854
- > .k-state-selected,
16855
16815
  > .k-selected {
16856
16816
  height: 0;
16857
16817
  height: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
@@ -16881,7 +16841,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16881
16841
  &.k-progressbar-reverse {
16882
16842
  flex-direction: column;
16883
16843
 
16884
- > .k-state-selected,
16885
16844
  > .k-selected {
16886
16845
  flex-direction: column;
16887
16846
  align-self: flex-start;
@@ -16893,7 +16852,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16893
16852
  // Indeterminate
16894
16853
  .k-progressbar-indeterminate {
16895
16854
  .k-progress-status-wrap,
16896
- .k-state-selected,
16897
16855
  .k-selected,
16898
16856
  .k-item {
16899
16857
  display: none;
@@ -16904,9 +16862,7 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16904
16862
  // Blazor specific
16905
16863
  .telerik-blazor.k-progressbar-horizontal {
16906
16864
 
16907
- > .k-state-selected,
16908
16865
  > .k-selected,
16909
- > .k-state-selected > .k-progress-status-wrap,
16910
16866
  > .k-selected > .k-progress-status-wrap {
16911
16867
  transition: width .1s ease-in-out;
16912
16868
  }
@@ -16935,7 +16891,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16935
16891
  display: -ms-inline-grid;
16936
16892
 
16937
16893
  > .k-progress-status-wrap,
16938
- > .k-state-selected,
16939
16894
  > .k-selected {
16940
16895
  -ms-grid-column: 1;
16941
16896
  -ms-grid-row: 1;
@@ -16945,7 +16900,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16945
16900
  -ms-grid-columns: 1fr;
16946
16901
  -ms-grid-rows: $progressbar-height;
16947
16902
 
16948
- &.k-progressbar-reverse > .k-state-selected,
16949
16903
  &.k-progressbar-reverse > .k-selected {
16950
16904
  -ms-grid-column-align: end;
16951
16905
  }
@@ -16954,12 +16908,10 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
16954
16908
  -ms-grid-columns: $progressbar-height;
16955
16909
  -ms-grid-rows: 1fr;
16956
16910
 
16957
- > .k-state-selected,
16958
16911
  > .k-selected {
16959
16912
  -ms-grid-row-align: end;
16960
16913
  }
16961
16914
 
16962
- &.k-progressbar-reverse > .k-state-selected,
16963
16915
  &.k-progressbar-reverse > .k-selected {
16964
16916
  -ms-grid-row-align: start;
16965
16917
  }
@@ -17098,7 +17050,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
17098
17050
  .k-progressbar {
17099
17051
  @include fill( $progressbar-text, $progressbar-bg, $progressbar-border, $progressbar-gradient );
17100
17052
 
17101
- .k-state-selected,
17102
17053
  .k-selected {
17103
17054
  @include fill( $progressbar-fill-text, $progressbar-fill-bg, $progressbar-fill-border, $progressbar-fill-gradient );
17104
17055
  }
@@ -17537,7 +17488,6 @@ $kendo-radio-ripple-opacity: .2 !default;
17537
17488
  }
17538
17489
 
17539
17490
  .k-radio:focus,
17540
- .k-radio.k-state-focus,
17541
17491
  .k-radio.k-focus {
17542
17492
  box-shadow: none !important; // sass-lint:disable-line no-important
17543
17493
 
@@ -17610,7 +17560,6 @@ $kendo-radio-ripple-opacity: .2 !default;
17610
17560
 
17611
17561
  // Hover state
17612
17562
  .k-radio:hover,
17613
- .k-radio.k-state-hover,
17614
17563
  .k-radio.k-hover {
17615
17564
  @include fill(
17616
17565
  $kendo-radio-hover-text,
@@ -17622,7 +17571,6 @@ $kendo-radio-ripple-opacity: .2 !default;
17622
17571
 
17623
17572
  // Focus state
17624
17573
  .k-radio:focus,
17625
- .k-radio.k-state-focus,
17626
17574
  .k-radio.k-focus {
17627
17575
  @include fill( $border: $kendo-radio-focus-border );
17628
17576
  @include box-shadow( $kendo-radio-focus-shadow );
@@ -17631,13 +17579,11 @@ $kendo-radio-ripple-opacity: .2 !default;
17631
17579
 
17632
17580
  // Invalid state
17633
17581
  .k-radio.k-invalid,
17634
- .k-radio.k-state-invalid,
17635
17582
  .k-radio.ng-invalid.ng-touched,
17636
17583
  .k-radio.ng-invalid.ng-dirty {
17637
17584
  @include fill( $border: $kendo-radio-invalid-border );
17638
17585
  }
17639
17586
  .k-radio.k-invalid + .k-radio-label,
17640
- .k-radio.k-state-invalid + .k-radio-label,
17641
17587
  .k-radio.ng-invalid.ng-touched + .k-radio-label,
17642
17588
  .k-radio.ng-invalid.ng-dirty + .k-radio-label {
17643
17589
  @include fill( $color: $kendo-radio-invalid-text );
@@ -17654,7 +17600,6 @@ $kendo-radio-ripple-opacity: .2 !default;
17654
17600
  );
17655
17601
  }
17656
17602
  .k-radio:checked:focus,
17657
- .k-radio.k-checked.k-state-focus,
17658
17603
  .k-radio.k-checked.k-focus {
17659
17604
  @include fill( $border: $kendo-radio-focus-checked-border );
17660
17605
  @include box-shadow( $kendo-radio-focus-checked-shadow );
@@ -17828,7 +17773,6 @@ $slider-disabled-opacity: .65 !default;
17828
17773
  }
17829
17774
 
17830
17775
 
17831
- &.k-state-disabled,
17832
17776
  &.k-disabled {
17833
17777
  .k-tick,
17834
17778
  .k-slider-track,
@@ -18122,8 +18066,8 @@ $slider-disabled-opacity: .65 !default;
18122
18066
  left: auto;
18123
18067
  }
18124
18068
 
18125
- .k-button .k-i-arrow-e,
18126
- .k-button .k-i-arrow-w {
18069
+ .k-button-increase .k-icon,
18070
+ .k-button-decrease .k-icon {
18127
18071
  transform: scaleX(-1);
18128
18072
  }
18129
18073
  }
@@ -18334,20 +18278,17 @@ $slider-disabled-opacity: .65 !default;
18334
18278
  }
18335
18279
 
18336
18280
  &:focus,
18337
- &.k-state-focused,
18338
18281
  &.k-focus {
18339
18282
  @include box-shadow( $slider-draghandle-focused-shadow );
18340
18283
  }
18341
18284
  }
18342
18285
 
18343
- &.k-state-focused,
18344
18286
  &.k-focus {
18345
18287
  .k-draghandle {
18346
18288
  @include box-shadow( $slider-draghandle-focused-shadow );
18347
18289
  }
18348
18290
  }
18349
18291
 
18350
- &.k-state-disabled,
18351
18292
  &.k-disabled {
18352
18293
  opacity: $slider-disabled-opacity;
18353
18294
  }
@@ -18386,7 +18327,6 @@ $slider-disabled-opacity: .65 !default;
18386
18327
  }
18387
18328
  }
18388
18329
 
18389
- &.k-state-disabled,
18390
18330
  &.k-disabled {
18391
18331
  opacity: 1;
18392
18332
 
@@ -19038,7 +18978,6 @@ $kendo-calendar-sizes: (
19038
18978
  }
19039
18979
 
19040
18980
  // // styles are applied to the k-link element inside
19041
- // .k-state-selected,
19042
18981
  // .k-selected {
19043
18982
  // color: inherit;
19044
18983
  // background: transparent;
@@ -19193,10 +19132,8 @@ $kendo-calendar-sizes: (
19193
19132
 
19194
19133
  &:hover,
19195
19134
  &.k-hover,
19196
- &.k-state-hover,
19197
19135
  &:focus,
19198
- &.k-focus,
19199
- &.k-state-focus {
19136
+ &.k-focus {
19200
19137
  color: $calendar-today-nav-hover-text;
19201
19138
  }
19202
19139
  }
@@ -19217,8 +19154,7 @@ $kendo-calendar-sizes: (
19217
19154
  .k-calendar-cell-inner {
19218
19155
  box-shadow: inset 0 0 0 1px $calendar-today-color;
19219
19156
  }
19220
- &.k-focus .k-calendar-cell-inner,
19221
- &.k-state-focused .k-calendar-cell-inner {
19157
+ &.k-focus .k-calendar-cell-inner {
19222
19158
  box-shadow: inset 0 0 0 1px $calendar-today-color, $calendar-cell-focused-shadow;
19223
19159
  }
19224
19160
  } @else if $calendar-today-style == color {
@@ -19252,8 +19188,7 @@ $kendo-calendar-sizes: (
19252
19188
 
19253
19189
  // Interactive states
19254
19190
  .k-calendar-td:hover .k-calendar-cell-inner,
19255
- .k-calendar-td.k-hover .k-calendar-cell-inner,
19256
- .k-calendar-td.k-state-hover .k-calendar-cell-inner {
19191
+ .k-calendar-td.k-hover .k-calendar-cell-inner {
19257
19192
  @include fill(
19258
19193
  $calendar-cell-hover-text,
19259
19194
  $calendar-cell-hover-bg,
@@ -19261,8 +19196,7 @@ $kendo-calendar-sizes: (
19261
19196
  $calendar-cell-hover-gradient
19262
19197
  );
19263
19198
  }
19264
- .k-calendar-td.k-selected .k-calendar-cell-inner,
19265
- .k-calendar-td.k-state-selected .k-calendar-cell-inner {
19199
+ .k-calendar-td.k-selected .k-calendar-cell-inner {
19266
19200
  @include fill(
19267
19201
  $calendar-cell-selected-text,
19268
19202
  $calendar-cell-selected-bg,
@@ -19271,8 +19205,7 @@ $kendo-calendar-sizes: (
19271
19205
  );
19272
19206
  }
19273
19207
  .k-calendar-td.k-selected:hover .k-calendar-cell-inner,
19274
- .k-calendar-td.k-selected.k-hover .k-calendar-cell-inner,
19275
- .k-calendar-td.k-state-selected:hover .k-calendar-cell-inner {
19208
+ .k-calendar-td.k-selected.k-hover .k-calendar-cell-inner {
19276
19209
  @include fill(
19277
19210
  $calendar-cell-selected-hover-text,
19278
19211
  $calendar-cell-selected-hover-bg,
@@ -19281,14 +19214,11 @@ $kendo-calendar-sizes: (
19281
19214
  );
19282
19215
  }
19283
19216
  .k-calendar-td:focus .k-calendar-cell-inner,
19284
- .k-calendar-td.k-focus .k-calendar-cell-inner,
19285
- .k-calendar-td.k-state-focus .k-calendar-cell-inner,
19286
- .k-calendar-td.k-state-focused .k-calendar-cell-inner {
19217
+ .k-calendar-td.k-focus .k-calendar-cell-inner {
19287
19218
  box-shadow: $calendar-cell-focused-shadow;
19288
19219
  }
19289
19220
  .k-calendar-td.k-selected:focus .k-calendar-cell-inner,
19290
- .k-calendar-td.k-selected.k-focus .k-calendar-cell-inner,
19291
- .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 {
19292
19222
  box-shadow: $calendar-cell-selected-focus-shadow;
19293
19223
  }
19294
19224
 
@@ -19302,8 +19232,7 @@ $kendo-calendar-sizes: (
19302
19232
  box-shadow: inset -1px 0 $calendar-navigation-border;
19303
19233
 
19304
19234
  li:hover,
19305
- li.k-hover,
19306
- li.k-state-hover {
19235
+ li.k-hover {
19307
19236
  color: $calendar-today-nav-hover-text;
19308
19237
  }
19309
19238
  }
@@ -19326,7 +19255,6 @@ $kendo-calendar-sizes: (
19326
19255
  // Invalid
19327
19256
  &.k-invalid,
19328
19257
  &.k-invalid:hover,
19329
- &.k-state-invalid,
19330
19258
  &.ng-invalid.ng-touched,
19331
19259
  &.ng-invalid.ng-dirty {
19332
19260
  border-color: $invalid-border;
@@ -19374,9 +19302,7 @@ $kendo-calendar-sizes: (
19374
19302
  }
19375
19303
 
19376
19304
  .k-range-start.k-active,
19377
- .k-range-start.k-state-active,
19378
- .k-range-end.k-active,
19379
- .k-range-end.k-state-active {
19305
+ .k-range-end.k-active {
19380
19306
  .k-calendar-cell-inner {
19381
19307
  box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, .2);
19382
19308
  }
@@ -19417,7 +19343,6 @@ $kendo-calendar-sizes: (
19417
19343
 
19418
19344
  .k-calendar {
19419
19345
 
19420
- .k-state-focused .k-link,
19421
19346
  .k-focus .k-link {
19422
19347
  @include fill(
19423
19348
  $calendar-cell-hover-text,
@@ -19425,7 +19350,6 @@ $kendo-calendar-sizes: (
19425
19350
  $calendar-cell-hover-border
19426
19351
  );
19427
19352
  }
19428
- .k-state-selected.k-state-focused .k-link,
19429
19353
  .k-selected.k-focus .k-link {
19430
19354
  @include fill(
19431
19355
  $calendar-cell-selected-text,
@@ -19636,7 +19560,6 @@ $kendo-time-selector-sizes: (
19636
19560
  display: block;
19637
19561
  }
19638
19562
 
19639
- &.k-state-focused,
19640
19563
  &.k-focus {
19641
19564
  &::before,
19642
19565
  &::after {
@@ -19811,7 +19734,6 @@ $kendo-time-selector-sizes: (
19811
19734
  color: $time-list-title-text;
19812
19735
  }
19813
19736
 
19814
- &.k-state-focused,
19815
19737
  &.k-focus {
19816
19738
  .k-title {
19817
19739
  color: $time-list-title-focus-text;
@@ -20147,18 +20069,14 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
20147
20069
  -ms-high-contrast-adjust: none;
20148
20070
 
20149
20071
  &:hover,
20150
- &.k-state-hover,
20151
20072
  &.k-hover {
20152
20073
  position: relative;
20153
20074
  z-index: 101;
20154
20075
  }
20155
20076
 
20156
20077
  &:focus,
20157
- &.k-state-focus,
20158
20078
  &.k-focus,
20159
- &.k-state-selected,
20160
20079
  &.k-selected,
20161
- &.k-state-selected:hover,
20162
20080
  &.k-selected:hover {
20163
20081
  position: relative;
20164
20082
  z-index: 100;
@@ -20178,20 +20096,15 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
20178
20096
  .k-colorpalette-tile {
20179
20097
 
20180
20098
  &:focus,
20181
- &.k-state-focus,
20182
20099
  &.k-focus {
20183
20100
  @include box-shadow( $colorpalette-tile-focus-shadow );
20184
20101
  }
20185
20102
 
20186
20103
  &:hover,
20187
- &.k-state-hover,
20188
20104
  &.k-hover {
20189
20105
  @include box-shadow( $colorpalette-tile-hover-shadow );
20190
20106
  }
20191
20107
 
20192
- &.k-state-selected,
20193
- &.k-selected,
20194
- &.k-state-selected:hover,
20195
20108
  &.k-selected,
20196
20109
  &.k-selected:hover {
20197
20110
  @include box-shadow( $colorpalette-tile-selected-shadow );
@@ -20524,7 +20437,7 @@ $colorgradient-contrast-spacer: map-get( $spacing, 2 ) !default;
20524
20437
  }
20525
20438
 
20526
20439
  // Needed for the double check icons
20527
- .k-i-check + .k-i-check {
20440
+ .k-icon + .k-icon {
20528
20441
  margin-left: -13px;
20529
20442
  }
20530
20443
  }
@@ -20570,7 +20483,6 @@ $colorgradient-contrast-spacer: map-get( $spacing, 2 ) !default;
20570
20483
  }
20571
20484
 
20572
20485
  .k-colorgradient:focus,
20573
- .k-colorgradient.k-state-focus,
20574
20486
  .k-colorgradient.k-focus {
20575
20487
  @include fill( $border: $colorgradient-focus-border );
20576
20488
  @include box-shadow( $colorgradient-focus-shadow );
@@ -20591,16 +20503,15 @@ $colorgradient-contrast-spacer: map-get( $spacing, 2 ) !default;
20591
20503
  @include box-shadow( $colorgradient-draghandle-shadow );
20592
20504
 
20593
20505
  &:focus,
20594
- &.k-state-focus,
20595
20506
  &.k-focus {
20596
20507
  @include fill( $bg: transparent, $border: $white );
20597
20508
  @include box-shadow( $colorgradient-draghandle-focus-shadow );
20598
20509
  }
20599
20510
 
20600
- &:active,
20601
20511
  &:hover,
20602
- &.k-state-hover,
20603
- &.k-hover {
20512
+ &.k-hover,
20513
+ &.k-active,
20514
+ &:active {
20604
20515
  @include fill( $bg: transparent, $border: $white );
20605
20516
  @include box-shadow( $colorgradient-draghandle-hover-shadow );
20606
20517
  }
@@ -20795,7 +20706,6 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
20795
20706
  }
20796
20707
 
20797
20708
  .k-coloreditor:focus,
20798
- .k-coloreditor.k-state-focus,
20799
20709
  .k-coloreditor.k-focus {
20800
20710
  @include fill( $border: $coloreditor-focus-border );
20801
20711
  @include box-shadow( $coloreditor-focus-shadow );
@@ -22142,7 +22052,7 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
22142
22052
  box-sizing: border-box;
22143
22053
  }
22144
22054
 
22145
- &.k-state-readonly {
22055
+ &.k-readonly {
22146
22056
  pointer-events: none;
22147
22057
  }
22148
22058
  }
@@ -22222,7 +22132,6 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
22222
22132
  color: $component-text;
22223
22133
 
22224
22134
  &:focus,
22225
- &.k-state-focused,
22226
22135
  &.k-focus {
22227
22136
 
22228
22137
  .k-rating-item {
@@ -22230,7 +22139,6 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
22230
22139
  text-shadow: $rating-icon-focused-shadow;
22231
22140
  }
22232
22141
 
22233
- &.k-state-selected > .k-icon,
22234
22142
  &.k-selected > .k-icon {
22235
22143
  text-shadow: $rating-icon-focused-selected-shadow;
22236
22144
  }
@@ -22241,19 +22149,16 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
22241
22149
  .k-rating-item {
22242
22150
  color: $rating-icon-text;
22243
22151
 
22244
- &.k-state-selected,
22245
22152
  &.k-selected {
22246
22153
  color: $rating-icon-selected-text;
22247
22154
 
22248
22155
  &:focus,
22249
- &.k-state-focused,
22250
22156
  &.k-focus {
22251
22157
  color: $rating-icon-focused-text;
22252
22158
  }
22253
22159
  }
22254
22160
 
22255
22161
  &:hover,
22256
- &.k-state-hover,
22257
22162
  &.k-hover {
22258
22163
  color: $rating-icon-hover-text;
22259
22164
  cursor: pointer;
@@ -22261,7 +22166,6 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
22261
22166
  }
22262
22167
  }
22263
22168
 
22264
-
22265
22169
  // #endregion
22266
22170
 
22267
22171
  // #endregion
@@ -23547,7 +23451,6 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
23547
23451
  z-index: 1;
23548
23452
  }
23549
23453
  input[disabled],
23550
- input.k-state-disabled,
23551
23454
  input.k-disabled {
23552
23455
  visibility: hidden;
23553
23456
  }
@@ -23595,12 +23498,10 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
23595
23498
 
23596
23499
  .k-file {
23597
23500
 
23598
- &.k-state-focused,
23599
23501
  &.k-focus {
23600
23502
  box-shadow: inset $upload-focused-shadow;
23601
23503
  }
23602
23504
 
23603
- .k-upload-action.k-state-focused,
23604
23505
  .k-upload-action.k-focus {
23605
23506
  box-shadow: $upload-focused-shadow;
23606
23507
  }
@@ -23692,7 +23593,6 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
23692
23593
  }
23693
23594
 
23694
23595
  // Invalid,
23695
- &.k-state-invalid,
23696
23596
  &.k-invalid,
23697
23597
  &.ng-invalid.ng-touched,
23698
23598
  &.ng-invalid.ng-dirty {
@@ -24742,7 +24642,6 @@ $actionsheet-item-disabled-opacity: .42 !default;
24742
24642
 
24743
24643
  // Hover state
24744
24644
  &:hover,
24745
- &.k-state-hover,
24746
24645
  &.k-hover {
24747
24646
  @include fill(
24748
24647
  $actionsheet-item-hover-text,
@@ -24756,7 +24655,6 @@ $actionsheet-item-disabled-opacity: .42 !default;
24756
24655
 
24757
24656
  // Focus state
24758
24657
  &:focus,
24759
- &.k-state-focus,
24760
24658
  &.k-focus {
24761
24659
  @include fill(
24762
24660
  $actionsheet-item-focus-text,
@@ -24770,7 +24668,6 @@ $actionsheet-item-disabled-opacity: .42 !default;
24770
24668
 
24771
24669
  // Disabed state
24772
24670
  &:disabled,
24773
- &.k-state-disabled,
24774
24671
  &.k-disabled {
24775
24672
  @include fill(
24776
24673
  $actionsheet-item-disabled-text,
@@ -25024,7 +24921,6 @@ $actionsheet-item-disabled-opacity: .42 !default;
25024
24921
 
25025
24922
  .k-window {
25026
24923
  &:focus,
25027
- &.k-state-focused,
25028
24924
  &.k-focus {
25029
24925
  @include box-shadow( $window-focused-shadow );
25030
24926
  }
@@ -25560,33 +25456,28 @@ $drawer-selected-hover-text: $secondary !default;
25560
25456
  .k-drawer-item {
25561
25457
 
25562
25458
  &:hover,
25563
- &.k-state-hover,
25564
25459
  &.k-hover {
25565
25460
  color: $drawer-hovered-text;
25566
25461
  background-color: $drawer-hovered-bg;
25567
25462
  }
25568
25463
 
25569
25464
  &:focus,
25570
- &.k-state-focused,
25571
25465
  &.k-focus {
25572
25466
  background-color: $drawer-focused-bg;
25573
25467
  box-shadow: $drawer-focused-shadow;
25574
25468
 
25575
25469
  &:hover,
25576
- &.k-state-hover,
25577
25470
  &.k-hover {
25578
25471
  color: $drawer-hovered-text;
25579
25472
  background-color: $drawer-hovered-bg;
25580
25473
  }
25581
25474
  }
25582
25475
 
25583
- &.k-state-selected,
25584
25476
  &.k-selected {
25585
25477
  color: $drawer-selected-text;
25586
25478
  background-color: $drawer-selected-bg;
25587
25479
 
25588
25480
  &:hover,
25589
- &.k-state-hover,
25590
25481
  &.k-hover {
25591
25482
  color: $drawer-selected-hover-text;
25592
25483
  background-color: $drawer-selected-hover-bg;
@@ -25602,18 +25493,18 @@ $drawer-selected-hover-text: $secondary !default;
25602
25493
  // #endregion
25603
25494
 
25604
25495
  @include exports( "drawer/theme/material" ) {
25496
+
25605
25497
  .k-drawer-item {
25606
- &.k-state-selected,
25607
25498
  &.k-selected {
25608
25499
 
25609
25500
  &:focus,
25610
- &.k-state-focused,
25611
25501
  &.k-focus {
25612
25502
  background-color: $drawer-focused-bg;
25613
25503
  box-shadow: $drawer-focused-shadow;
25614
25504
  }
25615
25505
  }
25616
25506
  }
25507
+
25617
25508
  }
25618
25509
 
25619
25510
  // #endregion
@@ -25732,7 +25623,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
25732
25623
  flex: none;
25733
25624
  }
25734
25625
 
25735
- > .k-i-close {
25626
+ > .k-i-close,
25627
+ > .k-i-x {
25736
25628
  margin-right: 0;
25737
25629
  margin-left: $notification-icon-spacing;
25738
25630
  flex: none;
@@ -25755,7 +25647,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
25755
25647
  margin-left: $notification-icon-spacing;
25756
25648
  }
25757
25649
 
25758
- > .k-i-close {
25650
+ > .k-i-close,
25651
+ > .k-i-x {
25759
25652
  margin-left: 0;
25760
25653
  margin-right: $notification-icon-spacing;
25761
25654
  }
@@ -25780,7 +25673,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
25780
25673
  );
25781
25674
  }
25782
25675
  .k-notification-wrap {
25783
- > .k-i-close {
25676
+ > .k-i-close,
25677
+ > .k-i-x {
25784
25678
  color: inherit;
25785
25679
  }
25786
25680
  }
@@ -26341,8 +26235,7 @@ $card-callout-height: 20px !default;
26341
26235
  }
26342
26236
 
26343
26237
  &:focus,
26344
- &.k-focus,
26345
- &.k-state-focus {
26238
+ &.k-focus {
26346
26239
  @include fill(
26347
26240
  $card-focus-text,
26348
26241
  $card-focus-bg,
@@ -26351,8 +26244,7 @@ $card-callout-height: 20px !default;
26351
26244
  @include box-shadow( $card-focus-shadow );
26352
26245
  }
26353
26246
 
26354
- &.k-selected,
26355
- &.k-state-selected {
26247
+ &.k-selected {
26356
26248
  @include box-shadow( $card-focus-shadow );
26357
26249
  }
26358
26250
  }
@@ -26404,10 +26296,8 @@ $card-callout-height: 20px !default;
26404
26296
 
26405
26297
 
26406
26298
  .k-card-wrap {
26407
- &.k-state-focused,
26408
- &.k-focus,
26409
26299
  &:focus,
26410
- &.k-state-selected,
26300
+ &.k-focus,
26411
26301
  &.k-selected {
26412
26302
  > .k-card {
26413
26303
  @include box-shadow( $card-focus-shadow );
@@ -26841,7 +26731,6 @@ $bottom-nav-flat-border: $component-border !default;
26841
26731
  outline: 0;
26842
26732
  }
26843
26733
  }
26844
- .k-bottom-nav-item.k-state-disabled,
26845
26734
  .k-bottom-nav-item.k-disabled {
26846
26735
  background-color: initial;
26847
26736
  }
@@ -26888,15 +26777,11 @@ $bottom-nav-flat-border: $component-border !default;
26888
26777
  $bg: $color
26889
26778
  );
26890
26779
 
26891
- .k-bottom-nav-item.k-state-focus,
26892
- .k-bottom-nav-item.k-focus,
26893
- .k-bottom-nav-item.k-state-focused,
26894
26780
  .k-bottom-nav-item.k-focus,
26895
26781
  .k-bottom-nav-item:focus {
26896
26782
  @include fill( $bg: rgba(true-mix( $color, contrast-wcag( $color ), 35%), .2));
26897
26783
  }
26898
26784
 
26899
- .k-bottom-nav-item.k-state-selected,
26900
26785
  .k-bottom-nav-item.k-selected {
26901
26786
  @include fill( $color: contrast-wcag( $color ) );
26902
26787
  }
@@ -26911,16 +26796,12 @@ $bottom-nav-flat-border: $component-border !default;
26911
26796
  $bottom-nav-flat-border
26912
26797
  );
26913
26798
 
26914
- .k-bottom-nav-item.k-state-focus,
26915
- .k-bottom-nav-item.k-focus,
26916
- .k-bottom-nav-item.k-state-focused,
26917
26799
  .k-bottom-nav-item.k-focus,
26918
26800
  .k-bottom-nav-item:focus {
26919
26801
  @include fill( $bg: rgba($bottom-nav-flat-text, .05) );
26920
26802
  }
26921
26803
 
26922
26804
  @each $name, $color in $kendo-theme-colors {
26923
- &.k-bottom-nav-#{$name} .k-bottom-nav-item.k-state-selected,
26924
26805
  &.k-bottom-nav-#{$name} .k-bottom-nav-item.k-selected {
26925
26806
  @if $name == "secondary" or $name == "light" {
26926
26807
  @include fill( $color: try-shade($color, 3) );
@@ -27181,7 +27062,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
27181
27062
  );
27182
27063
 
27183
27064
  &:focus,
27184
- &.k-state-focused,
27185
27065
  &.k-focus {
27186
27066
  @include box-shadow( $breadcrumb-focused-shadow );
27187
27067
  }
@@ -27198,7 +27078,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
27198
27078
 
27199
27079
  // Hovered state
27200
27080
  &:hover,
27201
- &.k-state-hover,
27202
27081
  &.k-hover {
27203
27082
  @include fill(
27204
27083
  $breadcrumb-link-hovered-text,
@@ -27209,7 +27088,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
27209
27088
 
27210
27089
  // Focused state
27211
27090
  &:focus,
27212
- &.k-state-focused,
27213
27091
  &.k-focus {
27214
27092
  @include fill(
27215
27093
  $breadcrumb-link-focused-text,
@@ -27231,7 +27109,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
27231
27109
 
27232
27110
  // Hovered state
27233
27111
  &:hover,
27234
- &.k-state-hover,
27235
27112
  &.k-hover {
27236
27113
  @include fill(
27237
27114
  $breadcrumb-root-link-hovered-text,
@@ -27242,7 +27119,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
27242
27119
 
27243
27120
  // Focused state
27244
27121
  &:focus,
27245
- &.k-state-focused,
27246
27122
  &.k-focus {
27247
27123
  @include fill(
27248
27124
  $breadcrumb-root-link-focused-text,
@@ -27392,7 +27268,6 @@ $pager-dropdown-width: 5em !default;
27392
27268
 
27393
27269
  // Focused state
27394
27270
  &:focus,
27395
- &.k-state-focus,
27396
27271
  &.k-focus {
27397
27272
  z-index: 3;
27398
27273
  }
@@ -27401,6 +27276,10 @@ $pager-dropdown-width: 5em !default;
27401
27276
  .k-rtl &,
27402
27277
  &[dir="rtl"],
27403
27278
  [dir="rtl"] & {
27279
+ .k-i-caret-alt-to-left,
27280
+ .k-i-caret-alt-to-right,
27281
+ .k-i-caret-alt-left,
27282
+ .k-i-caret-alt-right,
27404
27283
  .k-i-arrow-end-left,
27405
27284
  .k-i-arrow-60-left,
27406
27285
  .k-i-arrow-60-right,
@@ -27442,7 +27321,6 @@ $pager-dropdown-width: 5em !default;
27442
27321
  &:hover {
27443
27322
  z-index: 2;
27444
27323
  }
27445
- &.k-state-disabled,
27446
27324
  &.k-disabled {
27447
27325
  color: inherit;
27448
27326
  }
@@ -27492,7 +27370,6 @@ $pager-dropdown-width: 5em !default;
27492
27370
  }
27493
27371
 
27494
27372
  // Selected state
27495
- .k-state-selected,
27496
27373
  .k-selected {
27497
27374
  cursor: inherit;
27498
27375
  z-index: 2;
@@ -27658,9 +27535,6 @@ $pager-dropdown-width: 5em !default;
27658
27535
  );
27659
27536
 
27660
27537
  &:focus,
27661
- &.k-focus,
27662
- &.k-state-focus,
27663
- &.k-state-focused,
27664
27538
  &.k-focus {
27665
27539
  @include fill( $bg: $pager-focus-bg );
27666
27540
  @include box-shadow( $pager-focus-shadow );
@@ -27676,7 +27550,6 @@ $pager-dropdown-width: 5em !default;
27676
27550
  );
27677
27551
 
27678
27552
  &:hover,
27679
- &.k-state-hover,
27680
27553
  &.k-hover {
27681
27554
  @include fill(
27682
27555
  $pager-item-hover-text,
@@ -27685,7 +27558,6 @@ $pager-dropdown-width: 5em !default;
27685
27558
  );
27686
27559
  }
27687
27560
 
27688
- &.k-state-selected,
27689
27561
  &.k-selected {
27690
27562
  @include fill(
27691
27563
  $pager-item-selected-text,
@@ -27695,7 +27567,6 @@ $pager-dropdown-width: 5em !default;
27695
27567
  }
27696
27568
 
27697
27569
  &:focus,
27698
- &.k-state-focus,
27699
27570
  &.k-focus {
27700
27571
  background-color: $pager-item-focus-bg;
27701
27572
  @include box-shadow( $pager-item-focus-shadow );
@@ -27719,7 +27590,6 @@ $pager-dropdown-width: 5em !default;
27719
27590
  );
27720
27591
 
27721
27592
  &:hover,
27722
- &.k-state-hover,
27723
27593
  &.k-hover {
27724
27594
  @include fill(
27725
27595
  $pager-number-hover-text,
@@ -27729,13 +27599,11 @@ $pager-dropdown-width: 5em !default;
27729
27599
  }
27730
27600
 
27731
27601
  &:focus,
27732
- &.k-state-focus,
27733
27602
  &.k-focus {
27734
27603
  background-color: $pager-number-focus-bg;
27735
27604
  @include box-shadow( $pager-number-focus-shadow );
27736
27605
  }
27737
27606
 
27738
- &.k-state-selected,
27739
27607
  &.k-selected {
27740
27608
  @include fill(
27741
27609
  $pager-number-selected-text,
@@ -27768,7 +27636,6 @@ $pager-dropdown-width: 5em !default;
27768
27636
  );
27769
27637
 
27770
27638
  &:hover,
27771
- &.k-state-hover,
27772
27639
  &.k-hover {
27773
27640
  @include fill(
27774
27641
  $dropdownlist-hovered-text,
@@ -27778,7 +27645,7 @@ $pager-dropdown-width: 5em !default;
27778
27645
  }
27779
27646
  }
27780
27647
 
27781
- &.k-state-expanded {
27648
+ &.k-expanded {
27782
27649
  @include fill(
27783
27650
  $popup-text,
27784
27651
  $popup-bg,
@@ -27789,7 +27656,6 @@ $pager-dropdown-width: 5em !default;
27789
27656
  .k-link {
27790
27657
 
27791
27658
  &:hover,
27792
- &.k-state-hover,
27793
27659
  &.k-hover {
27794
27660
  @include fill(
27795
27661
  $kendo-list-item-hover-text,
@@ -27797,7 +27663,6 @@ $pager-dropdown-width: 5em !default;
27797
27663
  );
27798
27664
  }
27799
27665
 
27800
- &.k-state-selected,
27801
27666
  &.k-selected {
27802
27667
  @include fill(
27803
27668
  $kendo-list-item-selected-text,
@@ -28431,7 +28296,6 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
28431
28296
  $bg: $stepper-progressbar-bg
28432
28297
  );
28433
28298
 
28434
- .k-state-selected,
28435
28299
  .k-selected {
28436
28300
  @include fill(
28437
28301
  $color: $stepper-progressbar-fill-text,
@@ -28682,13 +28546,11 @@ $tabstrip-content-border-focused: $component-text !default;
28682
28546
  position: relative;
28683
28547
  z-index: 1;
28684
28548
 
28685
- &.k-state-active,
28686
28549
  &.k-active {
28687
28550
  display: block;
28688
28551
  }
28689
28552
 
28690
28553
  &:focus,
28691
- &.k-state-focused,
28692
28554
  &.k-focus {
28693
28555
  outline-width: 1px;
28694
28556
  outline-style: dotted;
@@ -28777,7 +28639,6 @@ $tabstrip-content-border-focused: $component-text !default;
28777
28639
  margin-left: $tabstrip-item-gap;
28778
28640
  }
28779
28641
 
28780
- .k-item.k-state-active,
28781
28642
  .k-item.k-active {
28782
28643
  border-bottom-color: transparent;
28783
28644
  }
@@ -28807,7 +28668,6 @@ $tabstrip-content-border-focused: $component-text !default;
28807
28668
  margin-left: $tabstrip-item-gap;
28808
28669
  }
28809
28670
 
28810
- .k-item.k-state-active,
28811
28671
  .k-item.k-active {
28812
28672
  border-top-color: transparent;
28813
28673
  }
@@ -28841,7 +28701,6 @@ $tabstrip-content-border-focused: $component-text !default;
28841
28701
  margin-top: $tabstrip-item-gap;
28842
28702
  }
28843
28703
 
28844
- .k-item.k-state-active,
28845
28704
  .k-item.k-active {
28846
28705
  border-right-color: transparent;
28847
28706
  }
@@ -28877,7 +28736,6 @@ $tabstrip-content-border-focused: $component-text !default;
28877
28736
  margin-top: $tabstrip-item-gap;
28878
28737
  }
28879
28738
 
28880
- .k-item.k-state-active,
28881
28739
  .k-item.k-active {
28882
28740
  border-left-color: transparent;
28883
28741
  }
@@ -28923,7 +28781,6 @@ $tabstrip-content-border-focused: $component-text !default;
28923
28781
  border-left-width: $tabstrip-indicator-size;
28924
28782
  }
28925
28783
  }
28926
- .k-item.k-state-active::after,
28927
28784
  .k-item.k-active::after {
28928
28785
  display: block;
28929
28786
  }
@@ -29018,7 +28875,6 @@ $tabstrip-content-border-focused: $component-text !default;
29018
28875
  );
29019
28876
 
29020
28877
  &:hover,
29021
- &.k-state-hover,
29022
28878
  &.k-hover {
29023
28879
  @include fill(
29024
28880
  $tabstrip-item-hovered-text,
@@ -29029,9 +28885,7 @@ $tabstrip-content-border-focused: $component-text !default;
29029
28885
  }
29030
28886
 
29031
28887
  &:active,
29032
- &.k-state-active,
29033
28888
  &.k-active,
29034
- &.k-state-selected,
29035
28889
  &.k-selected {
29036
28890
  @include fill(
29037
28891
  $tabstrip-item-selected-text,
@@ -29042,7 +28896,6 @@ $tabstrip-content-border-focused: $component-text !default;
29042
28896
  }
29043
28897
 
29044
28898
  &:focus,
29045
- &.k-state-focused,
29046
28899
  &.k-focus {
29047
28900
  @include box-shadow( $tabstrip-item-focused-shadow );
29048
28901
  }
@@ -29065,7 +28918,6 @@ $tabstrip-content-border-focused: $component-text !default;
29065
28918
  );
29066
28919
 
29067
28920
  &:focus,
29068
- &.k-state-focused,
29069
28921
  &.k-focus {
29070
28922
  outline-color: $tabstrip-content-border-focused;
29071
28923
  }
@@ -29076,7 +28928,6 @@ $tabstrip-content-border-focused: $component-text !default;
29076
28928
  @if ($tabstrip-indicator-size) {
29077
28929
 
29078
28930
  .k-tabstrip-items-wrapper {
29079
- .k-item.k-state-active::after,
29080
28931
  .k-item.k-active::after {
29081
28932
  border-color: $tabstrip-indicator-color;
29082
28933
  }
@@ -29182,7 +29033,6 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
29182
29033
  justify-content: space-between;
29183
29034
 
29184
29035
  &:focus,
29185
- &.k-state-focused,
29186
29036
  &.k-focus {
29187
29037
  outline-width: 1px;
29188
29038
  outline-style: dotted;
@@ -29277,20 +29127,20 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
29277
29127
  // #region @import "_theme.scss"; -> packages/material/scss/wizard/_theme.scss
29278
29128
  // #region @import "~@progress/kendo-theme-default/scss/wizard/_theme.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/wizard/_theme.scss
29279
29129
  @include exports("wizard/theme") {
29130
+
29280
29131
  .k-wizard-step {
29281
29132
  &:focus,
29282
- &.k-state-focused,
29283
29133
  &.k-focus {
29284
29134
  outline-color: $wizard-step-border-focused;
29285
29135
  }
29286
29136
 
29287
29137
  .k-ie &:focus,
29288
- .k-ie &.k-state-focused,
29289
29138
  .k-ie &.k-focus {
29290
29139
  @include box-shadow($wizard-focused-shadow);
29291
29140
  outline: none;
29292
29141
  }
29293
29142
  }
29143
+
29294
29144
  }
29295
29145
 
29296
29146
  // #endregion
@@ -29456,7 +29306,6 @@ $expander-content-padding-y: $padding-y * 6 !default;
29456
29306
  $expander-border
29457
29307
  );
29458
29308
 
29459
- &.k-state-focus,
29460
29309
  &.k-focus {
29461
29310
  box-shadow: $expander-focus-shadow;
29462
29311
  }
@@ -29471,13 +29320,10 @@ $expander-content-padding-y: $padding-y * 6 !default;
29471
29320
  outline: none;
29472
29321
 
29473
29322
  &:hover,
29474
- &.k-state-hover,
29475
29323
  &.k-hover {
29476
29324
  background-color: $expander-header-hover-bg;
29477
29325
  }
29478
29326
 
29479
- // Should be removed
29480
- &.k-state-focused,
29481
29327
  &.k-focus {
29482
29328
  background-color: $expander-header-focused-bg;
29483
29329
  box-shadow: $expander-header-focused-shadow;
@@ -29724,6 +29570,10 @@ $panelbar-header-expanded-gradient: null !default;
29724
29570
  }
29725
29571
  }
29726
29572
 
29573
+ // Panelbar item
29574
+ .k-panelbar-item {
29575
+ outline-style: none;
29576
+ }
29727
29577
 
29728
29578
  // Panelbar content
29729
29579
  .k-panelbar-content {
@@ -29825,7 +29675,6 @@ $panelbar-header-expanded-gradient: null !default;
29825
29675
  > .k-item,
29826
29676
  > .k-panelbar-header {
29827
29677
 
29828
- &.k-state-expanded.k-level-0 > .k-link,
29829
29678
  &.k-expanded.k-level-0 > .k-link {
29830
29679
  @include fill(
29831
29680
  $panelbar-header-expanded-text,
@@ -29852,7 +29701,6 @@ $panelbar-header-expanded-gradient: null !default;
29852
29701
 
29853
29702
  // Hover
29854
29703
  > .k-link:hover,
29855
- > .k-link.k-state-hover,
29856
29704
  > .k-link.k-hover {
29857
29705
  @include fill(
29858
29706
  $panelbar-header-hovered-text,
@@ -29864,9 +29712,6 @@ $panelbar-header-expanded-gradient: null !default;
29864
29712
 
29865
29713
  // Focus
29866
29714
  > .k-link:focus,
29867
- > .k-link.k-state-focus,
29868
- > .k-link.k-focus,
29869
- > .k-link.k-state-focused,
29870
29715
  > .k-link.k-focus {
29871
29716
  @include fill(
29872
29717
  $panelbar-header-focused-text,
@@ -29879,7 +29724,6 @@ $panelbar-header-expanded-gradient: null !default;
29879
29724
 
29880
29725
  // Focus & Hover
29881
29726
  > .k-link:focus:hover,
29882
- > .k-link.k-state-focus.k-state-hover,
29883
29727
  > .k-link.k-focus.k-hover {
29884
29728
  @include fill(
29885
29729
  $panelbar-header-hovered-focused-text,
@@ -29890,7 +29734,6 @@ $panelbar-header-expanded-gradient: null !default;
29890
29734
  }
29891
29735
 
29892
29736
  // Selected
29893
- > .k-link.k-state-selected,
29894
29737
  > .k-link.k-selected {
29895
29738
  @include fill(
29896
29739
  $panelbar-header-selected-text,
@@ -29906,9 +29749,7 @@ $panelbar-header-expanded-gradient: null !default;
29906
29749
  }
29907
29750
 
29908
29751
  // Selected Hover
29909
- > .k-link.k-state-selected:hover,
29910
29752
  > .k-link.k-selected:hover,
29911
- > .k-link.k-state-selected.k-state-hover,
29912
29753
  > .k-link.k-selected.k-hover {
29913
29754
  @include fill(
29914
29755
  $panelbar-header-selected-hovered-text,
@@ -29919,12 +29760,8 @@ $panelbar-header-expanded-gradient: null !default;
29919
29760
  }
29920
29761
 
29921
29762
  // Selected Focus
29922
- > .k-link.k-state-selected:focus,
29923
29763
  > .k-link.k-selected:focus,
29924
- > .k-link.k-state-selected.k-state-focus,
29925
- > .k-link.k-selected.k-focus,
29926
- > .k-link.k-state-selected.k-state-focused,
29927
- > .k-link.k-selected.k-focused {
29764
+ > .k-link.k-selected.k-focus {
29928
29765
  @include fill(
29929
29766
  $panelbar-header-selected-focused-text,
29930
29767
  $panelbar-header-selected-focused-bg,
@@ -29934,12 +29771,8 @@ $panelbar-header-expanded-gradient: null !default;
29934
29771
  }
29935
29772
 
29936
29773
  // Selected Focus & Hover
29937
- > .k-link.k-state-selected:hover:focus,
29938
29774
  > .k-link.k-selected:hover:focus,
29939
- > .k-link.k-state-selected.k-state-hover.k-state-focus,
29940
- > .k-link.k-selected.k-hover.k-state-focus,
29941
- > .k-link.k-state-selected.k-state-hover.k-state-focused,
29942
- > .k-link.k-selected.k-hover.k-state-focused {
29775
+ > .k-link.k-selected.k-hover.k-focus {
29943
29776
  @include fill(
29944
29777
  $panelbar-header-selected-hovered-focused-text,
29945
29778
  $panelbar-header-selected-hovered-focused-bg,
@@ -29956,10 +29789,8 @@ $panelbar-header-expanded-gradient: null !default;
29956
29789
 
29957
29790
  // Hover
29958
29791
  > .k-item > .k-link:hover,
29959
- > .k-item > .k-link.k-state-hover,
29960
29792
  > .k-item > .k-link.k-hover,
29961
29793
  > .k-panelbar-item > .k-link:hover,
29962
- > .k-panelbar-item > .k-link.k-state-hover,
29963
29794
  > .k-panelbar-item > .k-link.k-hover {
29964
29795
  @include fill(
29965
29796
  $panelbar-item-hovered-text,
@@ -29971,14 +29802,8 @@ $panelbar-header-expanded-gradient: null !default;
29971
29802
 
29972
29803
  // Focus
29973
29804
  > .k-item > .k-link:focus,
29974
- > .k-item > .k-link.k-state-focus,
29975
- > .k-item > .k-link.k-focus,
29976
- > .k-item > .k-link.k-state-focused,
29977
29805
  > .k-item > .k-link.k-focus,
29978
29806
  > .k-panelbar-item > .k-link:focus,
29979
- > .k-panelbar-item > .k-link.k-state-focus,
29980
- > .k-panelbar-item > .k-link.k-focus,
29981
- > .k-panelbar-item > .k-link.k-state-focused,
29982
29807
  > .k-panelbar-item > .k-link.k-focus {
29983
29808
  @include fill(
29984
29809
  $panelbar-item-focused-text,
@@ -29991,10 +29816,8 @@ $panelbar-header-expanded-gradient: null !default;
29991
29816
 
29992
29817
  // Focus & Hover
29993
29818
  > .k-item > .k-link:focus:hover,
29994
- > .k-item > .k-link.k-state-focus.k-state-hover,
29995
29819
  > .k-item > .k-link.k-focus.k-hover,
29996
29820
  > .k-panelbar-item > .k-link:focus:hover,
29997
- > .k-panelbar-item > .k-link.k-state-focus.k-state-hover,
29998
29821
  > .k-panelbar-item > .k-link.k-focus.k-hover {
29999
29822
  @include fill(
30000
29823
  $panelbar-item-hovered-focused-text,
@@ -30005,9 +29828,7 @@ $panelbar-header-expanded-gradient: null !default;
30005
29828
  }
30006
29829
 
30007
29830
  // Selected
30008
- > .k-item > .k-link.k-state-selected,
30009
29831
  > .k-item > .k-link.k-selected,
30010
- > .k-panelbar-item > .k-link.k-state-selected,
30011
29832
  > .k-panelbar-item > .k-link.k-selected {
30012
29833
  @include fill(
30013
29834
  $panelbar-item-selected-text,
@@ -30018,13 +29839,9 @@ $panelbar-header-expanded-gradient: null !default;
30018
29839
  }
30019
29840
 
30020
29841
  // Selected Hover
30021
- > .k-item > .k-link.k-state-selected:hover,
30022
29842
  > .k-item > .k-link.k-selected:hover,
30023
- > .k-item > .k-link.k-state-selected.k-state-hover,
30024
29843
  > .k-item > .k-link.k-selected.k-hover,
30025
- > .k-panelbar-item > .k-link.k-state-selected:hover,
30026
29844
  > .k-panelbar-item > .k-link.k-selected:hover,
30027
- > .k-panelbar-item > .k-link.k-state-selected.k-state-hover,
30028
29845
  > .k-panelbar-item > .k-link.k-selected.k-hover {
30029
29846
  @include fill(
30030
29847
  $panelbar-item-selected-hovered-text,
@@ -30035,18 +29852,10 @@ $panelbar-header-expanded-gradient: null !default;
30035
29852
  }
30036
29853
 
30037
29854
  // Selected Focus
30038
- > .k-item > .k-link.k-state-selected:focus,
30039
29855
  > .k-item > .k-link.k-selected:focus,
30040
- > .k-item > .k-link.k-state-selected.k-state-focus,
30041
29856
  > .k-item > .k-link.k-selected.k-focus,
30042
- > .k-item > .k-link.k-state-selected.k-state-focused,
30043
- > .k-item > .k-link.k-selected.k-focused,
30044
- > .k-panelbar-item > .k-link.k-state-selected:focus,
30045
29857
  > .k-panelbar-item > .k-link.k-selected:focus,
30046
- > .k-panelbar-item > .k-link.k-state-selected.k-state-focus,
30047
- > .k-panelbar-item > .k-link.k-selected.k-focus,
30048
- > .k-item > .k-link.k-state-selected.k-state-focused,
30049
- > .k-item > .k-link.k-selected.k-focused {
29858
+ > .k-panelbar-item > .k-link.k-selected.k-focus {
30050
29859
  @include fill(
30051
29860
  $panelbar-item-selected-focused-text,
30052
29861
  $panelbar-item-selected-focused-bg,
@@ -30056,18 +29865,10 @@ $panelbar-header-expanded-gradient: null !default;
30056
29865
  }
30057
29866
 
30058
29867
  // Selected Focus & Hover
30059
- > .k-item > .k-link.k-state-selected:focus:hover,
30060
29868
  > .k-item > .k-link.k-selected:focus:hover,
30061
- > .k-item > .k-link.k-state-selected.k-state-focus.k-state-hover,
30062
- > .k-item > .k-link.k-selected.k-focus.k-state-hover,
30063
- > .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover,
30064
- > .k-item > .k-link.k-selected.k-focused.k-state-hover,
30065
- > .k-panelbar-item > .k-link.k-state-selected:focus:hover,
29869
+ > .k-item > .k-link.k-selected.k-focus.k-hover,
30066
29870
  > .k-panelbar-item > .k-link.k-selected:focus:hover,
30067
- > .k-panelbar-item > .k-link.k-state-selected.k-state-focus.k-state-hover,
30068
- > .k-panelbar-item > .k-link.k-selected.k-focus.k-state-hover,
30069
- > .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover,
30070
- > .k-item > .k-link.k-selected.k-focused.k-state-hover {
29871
+ > .k-panelbar-item > .k-link.k-selected.k-focus.k-hover {
30071
29872
  @include fill(
30072
29873
  $panelbar-item-selected-hovered-focused-text,
30073
29874
  $panelbar-item-selected-hovered-focused-bg,
@@ -30305,7 +30106,7 @@ $splitbar-selected-text: $primary-contrast !default;
30305
30106
 
30306
30107
  .k-pane,
30307
30108
  .k-pane-flex {
30308
- &.k-state-hidden,
30109
+ &.k-hidden,
30309
30110
  &[hidden] {
30310
30111
  // sass-lint:disable-block no-important
30311
30112
  // hidden panes need to be zero-width to allow pane animation
@@ -30354,7 +30155,6 @@ $splitbar-selected-text: $primary-contrast !default;
30354
30155
  background-color: $splitbar-bg;
30355
30156
  }
30356
30157
  .k-splitbar:hover,
30357
- .k-splitbar.k-state-hover,
30358
30158
  .k-splitbar.k-hover,
30359
30159
  .k-splitbar-horizontal-hover,
30360
30160
  .k-splitbar-vertical-hover {
@@ -30362,9 +30162,6 @@ $splitbar-selected-text: $primary-contrast !default;
30362
30162
  background-color: $splitbar-hover-bg;
30363
30163
  }
30364
30164
  .k-splitbar:focus,
30365
- .k-splitbar.k-state-focus,
30366
- .k-splitbar.k-focus,
30367
- .k-splitbar.k-state-focused,
30368
30165
  .k-splitbar.k-focus {
30369
30166
  color: $splitbar-selected-text;
30370
30167
  background: $splitbar-selected-bg;
@@ -30475,9 +30272,6 @@ $tilelayout-hint-border: $component-border !default;
30475
30272
  }
30476
30273
 
30477
30274
  .k-tilelayout-item:focus,
30478
- .k-tilelayout-item.k-focus,
30479
- .k-tilelayout-item.k-state-focus,
30480
- .k-tilelayout-item.k-state-focused,
30481
30275
  .k-tilelayout-item.k-focus {
30482
30276
  @include box-shadow($tilelayout-card-focus-shadow);
30483
30277
  }
@@ -30891,7 +30685,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
30891
30685
  border-radius: 50%;
30892
30686
  }
30893
30687
 
30894
- .k-i-reload {
30688
+ .k-i-reload,
30689
+ .k-i-arrow-rotate-cw {
30895
30690
  font-size: 1em;
30896
30691
  margin-right: .5em;
30897
30692
  }
@@ -31154,12 +30949,10 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
31154
30949
 
31155
30950
  .k-column-menu {
31156
30951
 
31157
- .k-listgroup-item.k-state-selected,
31158
30952
  .k-listgroup-item.k-selected {
31159
30953
  color: $adaptive-grid-sort-text;
31160
30954
  background: none;
31161
30955
  }
31162
- .k-listgroup-item.k-state-selected .k-link,
31163
30956
  .k-listgroup-item.k-selected .k-link {
31164
30957
  color: inherit;
31165
30958
  }
@@ -31919,7 +31712,9 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
31919
31712
 
31920
31713
  .k-cell-inner > .k-link > .k-icon {
31921
31714
  &.k-i-sort-desc-sm,
31922
- &.k-i-sort-asc-sm {
31715
+ &.k-i-sort-asc-sm,
31716
+ &.k-i-sort-asc-small,
31717
+ &.k-i-sort-desc-small {
31923
31718
  vertical-align: text-top;
31924
31719
  margin-inline-start: $grid-sorted-icon-spacing;
31925
31720
  }
@@ -32916,33 +32711,28 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
32916
32711
  }
32917
32712
 
32918
32713
  // Hover state
32919
- tbody>tr:not(.k-detail-row):hover,
32920
- tbody>tr:not(.k-detail-row).k-state-hover,
32921
- 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 {
32922
32716
  color: $grid-hovered-text;
32923
32717
  background-color: $grid-hovered-bg;
32924
32718
  }
32925
32719
 
32926
32720
  // Selected state
32927
- td.k-state-selected,
32928
32721
  td.k-selected,
32929
- tr.k-state-selected > td,
32930
32722
  tr.k-selected > td {
32931
32723
  color: $grid-selected-text;
32932
32724
  background-color: $grid-selected-bg;
32933
32725
  }
32934
32726
 
32935
32727
  // Focused state
32936
- td.k-state-focused,
32728
+ td:focus,
32937
32729
  td.k-focus,
32938
- th.k-state-focused,
32939
- th.k-focus,
32940
32730
  th:focus,
32731
+ th.k-focus,
32941
32732
  .k-master-row > td:focus,
32942
32733
  .k-grouping-row > td:focus,
32943
32734
  .k-detail-row > td:focus,
32944
32735
  .k-group-footer > td:focus,
32945
- .k-grid-pager.k-state-focused,
32946
32736
  .k-grid-pager.k-focus {
32947
32737
  box-shadow: $grid-focused-shadow;
32948
32738
  }
@@ -32986,20 +32776,16 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
32986
32776
  }
32987
32777
 
32988
32778
  // Selected state
32989
- .k-state-selected td,
32990
32779
  .k-selected td {
32991
32780
  @include fill( $bg: $grid-sticky-selected-bg );
32992
32781
  }
32993
32782
 
32994
- .k-state-selected.k-alt td,
32995
32783
  .k-selected.k-alt td {
32996
32784
  @include fill( $bg: $grid-sticky-selected-alt-bg );
32997
32785
  }
32998
32786
 
32999
32787
  // Selected hover
33000
- .k-state-selected:hover td,
33001
32788
  .k-selected:hover td,
33002
- .k-state-selected.k-state-hover td,
33003
32789
  .k-selected.k-hover td {
33004
32790
  @include fill( $bg: $grid-sticky-selected-hovered-bg );
33005
32791
  }
@@ -33028,6 +32814,8 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33028
32814
 
33029
32815
  .k-i-sort-asc-sm,
33030
32816
  .k-i-sort-desc-sm,
32817
+ .k-i-sort-asc-small,
32818
+ .k-i-sort-desc-small,
33031
32819
  .k-sort-order {
33032
32820
  color: $grid-sorting-indicator-text;
33033
32821
  }
@@ -33041,12 +32829,9 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33041
32829
  background-color: $kendo-button-hover-bg;
33042
32830
  }
33043
32831
  &:focus,
33044
- &.k-state-focus,
33045
- &.k-focus,
33046
- &.k-state-border-down {
32832
+ &.k-focus {
33047
32833
  box-shadow: inset 0 0 0 2px rgba( 0, 0, 0, .1 );
33048
32834
  }
33049
- &.k-state-active,
33050
32835
  &.k-active {
33051
32836
  color: $selected-text;
33052
32837
  background-color: $selected-bg;
@@ -33102,20 +32887,14 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33102
32887
  }
33103
32888
 
33104
32889
  // Selected state
33105
- &.k-state-selected .k-grid-content-sticky,
33106
32890
  &.k-selected .k-grid-content-sticky,
33107
- &.k-state-selected .k-grid-row-sticky,
33108
32891
  &.k-selected .k-grid-row-sticky,
33109
- td.k-grid-content-sticky.k-state-selected,
33110
32892
  td.k-grid-content-sticky.k-selected {
33111
32893
  @include fill( $bg: $grid-sticky-selected-bg );
33112
32894
  }
33113
32895
 
33114
- &.k-state-selected.k-alt .k-grid-content-sticky,
33115
32896
  &.k-selected.k-alt .k-grid-content-sticky,
33116
- &.k-state-selected.k-alt .k-grid-row-sticky,
33117
32897
  &.k-selected.k-alt .k-grid-row-sticky,
33118
- &.k-alt td.k-grid-content-sticky.k-state-selected,
33119
32898
  &.k-alt td.k-grid-content-sticky.k-selected {
33120
32899
  @include fill( $bg: $grid-sticky-selected-alt-bg );
33121
32900
  }
@@ -33124,26 +32903,18 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33124
32903
  // Hovered state
33125
32904
  &:hover .k-grid-content-sticky,
33126
32905
  &:hover .k-grid-row-sticky,
33127
- &.k-state-hover .k-grid-content-sticky,
33128
32906
  &.k-hover .k-grid-content-sticky,
33129
- &.k-state-hover .k-grid-row-sticky,
33130
32907
  &.k-hover .k-grid-row-sticky {
33131
32908
  background-color: $grid-sticky-hovered-bg;
33132
32909
  }
33133
32910
 
33134
32911
 
33135
32912
  // Selected hover
33136
- &.k-state-selected:hover .k-grid-content-sticky,
33137
32913
  &.k-selected:hover .k-grid-content-sticky,
33138
- &.k-state-selected:hover .k-grid-row-sticky,
33139
32914
  &.k-selected:hover .k-grid-row-sticky,
33140
- &.k-state-selected.k-state-hover .k-grid-content-sticky,
33141
32915
  &.k-selected.k-hover .k-grid-content-sticky,
33142
- &.k-state-selected.k-state-hover .k-grid-row-sticky,
33143
32916
  &.k-selected.k-hover .k-grid-row-sticky,
33144
- &:hover td.k-grid-content-sticky.k-state-selected,
33145
32917
  &:hover td.k-grid-content-sticky.k-selected,
33146
- &.k-state-hover td.k-grid-content-sticky.k-state-selected,
33147
32918
  &.k-hover td.k-grid-content-sticky.k-selected {
33148
32919
  background-color: $grid-sticky-selected-hovered-bg;
33149
32920
  }
@@ -33157,7 +32928,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33157
32928
  background-color: $grid-sticky-bg;
33158
32929
 
33159
32930
  &:hover,
33160
- &.k-state-hover,
33161
32931
  &.k-hover {
33162
32932
  background-color: $grid-sticky-hovered-bg;
33163
32933
  }
@@ -33171,7 +32941,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33171
32941
  }
33172
32942
 
33173
32943
  &:hover td,
33174
- &.k-state-hover td,
33175
32944
  &.k-hover td {
33176
32945
  background-color: $grid-sticky-hovered-bg;
33177
32946
  }
@@ -33183,66 +32952,43 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33183
32952
  }
33184
32953
 
33185
32954
  // Selected state
33186
- tr.k-state-selected .k-grid-content-sticky,
33187
32955
  tr.k-selected .k-grid-content-sticky,
33188
- .k-state-selected.k-grid-row-sticky td,
33189
32956
  .k-selected.k-grid-row-sticky td,
33190
- .k-grid-row-sticky td.k-state-selected,
33191
32957
  .k-grid-row-sticky td.k-selected,
33192
- .k-state-selected.k-grid-content-sticky,
33193
32958
  .k-selected.k-grid-content-sticky {
33194
32959
  @include fill( $bg: $grid-sticky-selected-bg );
33195
32960
  }
33196
32961
 
33197
- tr.k-state-selected.k-alt .k-grid-content-sticky,
33198
32962
  tr.k-selected.k-alt .k-grid-content-sticky,
33199
- .k-state-selected.k-alt.k-grid-row-sticky td,
33200
32963
  .k-selected.k-alt.k-grid-row-sticky td,
33201
- .k-alt .k-state-selected.k-grid-content-sticky,
33202
32964
  .k-alt .k-selected.k-grid-content-sticky {
33203
32965
  @include fill( $bg: $grid-sticky-selected-alt-bg );
33204
32966
  }
33205
32967
 
33206
32968
  // Hover state
33207
32969
  tr:hover .k-grid-content-sticky,
33208
- tr.k-state-hover .k-grid-content-sticky,
33209
32970
  tr.k-hover .k-grid-content-sticky,
33210
32971
  .k-grid-row-sticky:hover td,
33211
- .k-grid-row-sticky.k-state-hover td,
33212
32972
  .k-grid-row-sticky.k-hover td,
33213
32973
  .k-grid-row-sticky.k-alt:hover td,
33214
- .k-grid-row-sticky.k-alt.k-state-hover td,
33215
32974
  .k-grid-row-sticky.k-alt.k-hover td,
33216
32975
  .k-alt:hover .k-grid-content-sticky,
33217
- .k-alt.k-state-hover .k-grid-content-sticky,
33218
32976
  .k-alt.k-hover .k-grid-content-sticky {
33219
32977
  background-color: $grid-sticky-hovered-bg;
33220
32978
  }
33221
32979
 
33222
32980
  // Selected + Hover
33223
- tr.k-state-selected:hover .k-grid-content-sticky,
33224
32981
  tr.k-selected:hover .k-grid-content-sticky,
33225
- tr.k-state-selected.k-state-hover .k-grid-content-sticky,
33226
32982
  tr.k-selected.k-hover .k-grid-content-sticky,
33227
- .k-state-selected.k-grid-row-sticky:hover td,
33228
32983
  .k-selected.k-grid-row-sticky:hover td,
33229
- .k-state-selected.k-grid-row-sticky.k-state-hover td,
33230
32984
  .k-selected.k-grid-row-sticky.k-hover td,
33231
- .k-state-selected.k-alt.k-grid-row-sticky:hover td,
33232
32985
  .k-selected.k-alt.k-grid-row-sticky:hover td,
33233
- .k-state-selected.k-alt.k-grid-row-sticky.k-state-hover td,
33234
32986
  .k-selected.k-alt.k-grid-row-sticky.k-hover td,
33235
- tr.k-state-selected.k-alt:hover .k-grid-content-sticky,
33236
32987
  tr.k-selected.k-alt:hover .k-grid-content-sticky,
33237
- tr.k-state-selected.k-alt.k-state-hover .k-grid-content-sticky,
33238
32988
  tr.k-selected.k-alt.k-hover .k-grid-content-sticky,
33239
- .k-grid-row-sticky:hover td.k-state-selected,
33240
32989
  .k-grid-row-sticky:hover td.k-selected,
33241
- .k-grid-row-sticky.k-state-hover td.k-state-selected,
33242
32990
  .k-grid-row-sticky.k-hover td.k-selected,
33243
- tr:hover .k-grid-content-sticky.k-state-selected,
33244
32991
  tr:hover .k-grid-content-sticky.k-selected,
33245
- tr.k-state-hover .k-grid-content-sticky.k-state-selected,
33246
32992
  tr.k-hover .k-grid-content-sticky.k-selected {
33247
32993
  background-color: $grid-sticky-selected-hovered-bg;
33248
32994
  }
@@ -33254,7 +33000,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33254
33000
  }
33255
33001
 
33256
33002
  &:hover .k-grid-content-sticky,
33257
- &.k-state-hover .k-grid-content-sticky,
33258
33003
  &.k-hover .k-grid-content-sticky {
33259
33004
  @include fill( $bg: $grid-sticky-hovered-bg );
33260
33005
  }
@@ -33268,13 +33013,11 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33268
33013
  );
33269
33014
  }
33270
33015
  .k-columnmenu-item:focus,
33271
- .k-columnmenu-item.k-state-focus,
33272
33016
  .k-columnmenu-item.k-focus {
33273
33017
  @include box-shadow( $kendo-list-item-focus-shadow );
33274
33018
  }
33275
33019
 
33276
33020
  .k-columnmenu-item {
33277
- &.k-state-selected,
33278
33021
  &.k-selected {
33279
33022
  @include fill(
33280
33023
  $kendo-list-item-selected-text,
@@ -33300,7 +33043,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33300
33043
  );
33301
33044
 
33302
33045
  &:hover,
33303
- &.k-state-hover,
33304
33046
  &.k-hover {
33305
33047
  @include fill(
33306
33048
  $kendo-list-item-hover-text,
@@ -33308,7 +33050,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33308
33050
  );
33309
33051
  }
33310
33052
 
33311
- &.k-state-selected,
33312
33053
  &.k-selected {
33313
33054
  @include fill(
33314
33055
  $kendo-list-item-selected-text,
@@ -33317,7 +33058,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33317
33058
  }
33318
33059
 
33319
33060
  &:focus,
33320
- &.k-state-focused,
33321
33061
  &.k-focus {
33322
33062
  @include box-shadow( $kendo-list-item-focus-shadow );
33323
33063
  }
@@ -33352,14 +33092,11 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33352
33092
  .k-grid {
33353
33093
 
33354
33094
  // Selected state
33355
- td.k-state-selected,
33356
33095
  td.k-selected,
33357
- tr.k-state-selected,
33358
33096
  tr.k-selected {
33359
33097
  color: $grid-selected-text;
33360
33098
  background-color: $grid-selected-bg;
33361
33099
  }
33362
- tr.k-state-selected > td,
33363
33100
  tr.k-selected > td {
33364
33101
  color: inherit;
33365
33102
  background-color: transparent;
@@ -33367,14 +33104,12 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33367
33104
 
33368
33105
  // Hover, Focused state
33369
33106
  table {
33370
- >tr:not(.k-detail-row):hover,
33371
- >tr:not(.k-detail-row).k-state-hover,
33372
- >tr:not(.k-detail-row).k-hover,
33373
- td.k-state-focused,
33107
+ > tr:not(.k-detail-row):hover,
33108
+ > tr:not(.k-detail-row).k-hover,
33109
+ td:focus,
33374
33110
  td.k-focus,
33375
- th.k-state-focused,
33376
- th.k-focus,
33377
33111
  th:focus,
33112
+ th.k-focus,
33378
33113
  .k-master-row > td:focus,
33379
33114
  .k-grouping-row > td:focus,
33380
33115
  .k-detail-row > td:focus,
@@ -33384,7 +33119,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33384
33119
  }
33385
33120
 
33386
33121
  tr:hover,
33387
- tr.k-state-hover,
33388
33122
  tr.k-hover {
33389
33123
  .k-grid-header-sticky,
33390
33124
  .k-grid-footer-sticky {
@@ -33393,9 +33127,8 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33393
33127
  }
33394
33128
  }
33395
33129
 
33396
- td.k-state-focused,
33130
+ td:focus,
33397
33131
  td.k-focus,
33398
- th.k-state-focused,
33399
33132
  th.k-focus,
33400
33133
  th:focus,
33401
33134
  .k-master-row > td:focus,
@@ -33412,7 +33145,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33412
33145
 
33413
33146
  }
33414
33147
  .k-grid-pager:focus,
33415
- .k-grid-pager.k-state-focused,
33416
33148
  .k-grid-pager.k-focus {
33417
33149
  color: inherit;
33418
33150
  }
@@ -33466,7 +33198,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33466
33198
 
33467
33199
  .k-group-footer {
33468
33200
  &:hover td,
33469
- &.k-state-hover td,
33470
33201
  &.k-hover td {
33471
33202
  color: inherit;
33472
33203
  @include fill( $bg: $grid-sticky-footer-hovered-bg );
@@ -33517,15 +33248,12 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33517
33248
  }
33518
33249
 
33519
33250
  &:focus,
33520
- &.k-state-focus,
33521
- &.k-focus,
33522
- &.k-state-border-down {
33251
+ &.k-focus {
33523
33252
  color: $grid-text;
33524
33253
  background-color: $grid-filter-button-focus;
33525
33254
  box-shadow: none;
33526
33255
  }
33527
33256
 
33528
- &.k-state-active,
33529
33257
  &.k-active {
33530
33258
  color: $primary-contrast;
33531
33259
  background-color: $primary;
@@ -33566,7 +33294,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33566
33294
  }
33567
33295
 
33568
33296
  &:hover td,
33569
- &.k-state-hover td,
33570
33297
  &.k-hover td {
33571
33298
  @include fill( $bg: $grid-sticky-footer-hovered-bg );
33572
33299
  }
@@ -33599,7 +33326,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33599
33326
  }
33600
33327
 
33601
33328
  .k-columnmenu-item {
33602
- &.k-state-selected,
33603
33329
  &.k-selected {
33604
33330
  @include fill(
33605
33331
  $kendo-list-item-selected-text,
@@ -33608,7 +33334,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33608
33334
  }
33609
33335
  }
33610
33336
  .k-columnmenu-item:focus,
33611
- .k-columnmenu-item.k-state-focus,
33612
33337
  .k-columnmenu-item.k-focus {
33613
33338
  background: $kendo-list-item-hover-bg;
33614
33339
  }
@@ -33617,7 +33342,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
33617
33342
 
33618
33343
  .k-item {
33619
33344
  // Selected state
33620
- &.k-state-selected,
33621
33345
  &.k-selected {
33622
33346
  background: $kendo-list-item-hover-bg;
33623
33347
  }
@@ -33838,7 +33562,6 @@ $listview-item-focus-shadow: null !default;
33838
33562
  // Listview content
33839
33563
  .k-listview-content {
33840
33564
 
33841
- > .k-state-focused,
33842
33565
  > .k-focus {
33843
33566
  @include fill(
33844
33567
  $listview-item-focus-text,
@@ -33848,7 +33571,6 @@ $listview-item-focus-shadow: null !default;
33848
33571
  @include box-shadow( $listview-item-focus-shadow );
33849
33572
  }
33850
33573
 
33851
- > .k-state-selected,
33852
33574
  > .k-selected {
33853
33575
  @include fill(
33854
33576
  $listview-item-selected-text,
@@ -33871,8 +33593,7 @@ $listview-item-focus-shadow: null !default;
33871
33593
 
33872
33594
  // Listview content
33873
33595
  .k-listview-content {}
33874
- .k-listview-content > .k-state-selected.k-state-focused,
33875
- .k-listview-content > .k-selected.k-focused {
33596
+ .k-listview-content > .k-selected.k-focus {
33876
33597
  background-color: rgba( contrast-wcag( $listview-bg ), .12 );
33877
33598
  }
33878
33599
 
@@ -34075,7 +33796,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
34075
33796
  [data-tool="merge"],
34076
33797
  [data-tool="freeze"] {
34077
33798
  width: auto;
34078
- min-width: $form-line-height * 1em;
33799
+ min-width: calc( #{$form-line-height} * 1em );
34079
33800
  }
34080
33801
 
34081
33802
  .k-color-picker {
@@ -34244,7 +33965,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
34244
33965
  overflow: hidden;
34245
33966
 
34246
33967
  // disabled cells in the Spreadsheet should allow navigation if link is used
34247
- .k-state-disabled,
34248
33968
  .k-disabled {
34249
33969
  pointer-events: auto;
34250
33970
  }
@@ -34806,7 +34526,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
34806
34526
  background-position: 50% 50%;
34807
34527
 
34808
34528
  &:hover div,
34809
- &.k-state-hovered div,
34810
34529
  &.k-hover div {
34811
34530
  margin: 0;
34812
34531
  align-self: center;
@@ -34872,7 +34591,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
34872
34591
  .k-spreadsheet-insert-image-dialog {
34873
34592
  .k-spreadsheet-has-image {
34874
34593
  &:hover,
34875
- &.k-state-hovered,
34876
34594
  &.k-hover {
34877
34595
  border-radius: $spreadsheet-insert-image-dialog-preview-overlay-border-radius;
34878
34596
  }
@@ -34993,7 +34711,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
34993
34711
  .k-tabstrip-items .k-item {
34994
34712
  color: inherit;
34995
34713
  }
34996
- .k-tabstrip-items .k-item.k-state-active::after,
34997
34714
  .k-tabstrip-items .k-item.k-active::after {
34998
34715
  border-color: $primary-contrast;
34999
34716
  }
@@ -35016,7 +34733,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
35016
34733
  $toolbar-gradient
35017
34734
  );
35018
34735
 
35019
- .k-tabstrip-items .k-item.k-state-active,
35020
34736
  .k-tabstrip-items .k-item.k-active {
35021
34737
  border-color: $secondary;
35022
34738
  }
@@ -35138,7 +34854,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
35138
34854
  );
35139
34855
  box-shadow: inset 0 0 0 1px $kendo-button-border;
35140
34856
 
35141
- &.k-state-active,
35142
34857
  &.k-active {
35143
34858
  @include fill(
35144
34859
  $kendo-button-active-text,
@@ -35184,13 +34899,11 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
35184
34899
 
35185
34900
  .k-spreadsheet-has-image {
35186
34901
  &:hover,
35187
- &.k-state-hovered,
35188
34902
  &.k-hover {
35189
34903
  box-shadow: $spreadsheet-insert-image-dialog-preview-overlay-shadow;
35190
34904
  }
35191
34905
 
35192
34906
  &:hover div,
35193
- &.k-state-hovered div,
35194
34907
  &.k-hover div {
35195
34908
  color: $spreadsheet-insert-image-dialog-overlay-hovered-text;
35196
34909
  }
@@ -35225,7 +34938,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
35225
34938
  .k-button {}
35226
34939
 
35227
34940
  .k-button:hover,
35228
- .k-button.k-state-hover,
35229
34941
  .k-button.k-hover {
35230
34942
  @include fill(
35231
34943
  $kendo-list-item-hover-text,
@@ -35233,9 +34945,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
35233
34945
  );
35234
34946
  }
35235
34947
  .k-button:active,
35236
- .k-button.k-state-active,
35237
34948
  .k-button.k-active,
35238
- .k-button.k-state-selected,
35239
34949
  .k-button.k-selected {
35240
34950
  @include fill(
35241
34951
  $kendo-list-item-selected-text,
@@ -35491,6 +35201,10 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
35491
35201
  border-right-width: $pivotgrid-cell-border-width;
35492
35202
  border-bottom-style: solid;
35493
35203
  border-bottom-width: $pivotgrid-cell-border-width;
35204
+
35205
+ &:focus {
35206
+ outline: none;
35207
+ }
35494
35208
  }
35495
35209
 
35496
35210
 
@@ -35561,6 +35275,10 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
35561
35275
  white-space: nowrap;
35562
35276
  vertical-align: top;
35563
35277
  overflow: hidden;
35278
+
35279
+ &:focus {
35280
+ outline: none;
35281
+ }
35564
35282
  }
35565
35283
 
35566
35284
  .k-pivotgrid-cell .k-icon {
@@ -36194,15 +35912,12 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
36194
35912
 
36195
35913
 
36196
35914
  // Hover state
36197
- .k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-state-hover,
36198
- .k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-hover,
36199
35915
  .k-pivotgrid-row-headers tbody > .k-pivotgrid-row:hover,
36200
- .k-pivotgrid-column-headers tbody > .k-pivotgrid-row.k-state-hover,
36201
- .k-pivotgrid-column-headers tbody > .k-pivotgrid-row.k-hover,
35916
+ .k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-hover,
36202
35917
  .k-pivotgrid-column-headers tbody > .k-pivotgrid-row:hover,
36203
- .k-pivotgrid-values tbody > .k-pivotgrid-row.k-state-hover,
36204
- .k-pivotgrid-values tbody > .k-pivotgrid-row.k-hover,
36205
- .k-pivotgrid-values tbody > .k-pivotgrid-row:hover {
35918
+ .k-pivotgrid-column-headers tbody > .k-pivotgrid-row.k-hover,
35919
+ .k-pivotgrid-values tbody > .k-pivotgrid-row:hover,
35920
+ .k-pivotgrid-values tbody > .k-pivotgrid-row.k-hover {
36206
35921
  @include fill (
36207
35922
  $pivotgrid-hover-text,
36208
35923
  $pivotgrid-hover-bg,
@@ -36211,9 +35926,10 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
36211
35926
  }
36212
35927
 
36213
35928
  // Focus state
36214
- .k-pivotgrid-cell.k-state-focus,
36215
- .k-pivotgrid-cell.k-focus,
36216
35929
  .k-pivotgrid-cell:focus,
35930
+ .k-pivotgrid-cell.k-focus,
35931
+ .k-pivotgrid-empty-cell:focus,
35932
+ .k-pivotgrid-empty-cell.k-focus,
36217
35933
  .k-master-row > .k-pivotgrid-cell:focus,
36218
35934
  .k-grouping-row > .k-pivotgrid-cell:focus,
36219
35935
  .k-detail-row > .k-pivotgrid-cell:focus,
@@ -36222,9 +35938,7 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
36222
35938
  }
36223
35939
 
36224
35940
  // Selected state
36225
- .k-pivotgrid-cell.k-state-selected,
36226
35941
  .k-pivotgrid-cell.k-selected,
36227
- .k-pivotgrid-row.k-state-selected > .k-pivotgrid-cell,
36228
35942
  .k-pivotgrid-row.k-selected > .k-pivotgrid-cell {
36229
35943
  @include fill (
36230
35944
  $pivotgrid-selected-text,
@@ -36402,9 +36116,8 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
36402
36116
  @include exports("pivotgrid/theme/material") {
36403
36117
 
36404
36118
  // Hover and Focus state have the same bg color
36405
- .k-pivotgrid-cell.k-state-focus,
36406
- .k-pivotgrid-cell.k-focus,
36407
36119
  .k-pivotgrid-cell:focus,
36120
+ .k-pivotgrid-cell.k-focus,
36408
36121
  .k-master-row > .k-pivotgrid-cell:focus,
36409
36122
  .k-grouping-row > .k-pivotgrid-cell:focus,
36410
36123
  .k-detail-row > .k-pivotgrid-cell:focus,
@@ -36471,7 +36184,6 @@ $treelist-footer-row-border-width: 1px !default;
36471
36184
  }
36472
36185
 
36473
36186
  .k-treelist-dragging,
36474
- .k-treelist-dragging .k-state-hover,
36475
36187
  .k-treelist-dragging .k-hover {
36476
36188
  cursor: default;
36477
36189
  }
@@ -37247,7 +36959,6 @@ $filemanager-preview-icon-border: null !default;
37247
36959
  );
37248
36960
  }
37249
36961
 
37250
- &.k-state-selected .k-file-icon,
37251
36962
  &.k-selected .k-file-icon {
37252
36963
  @include fill(
37253
36964
  inherit,
@@ -37617,10 +37328,8 @@ $taskboard-drag-placeholder-border: $component-border !default;
37617
37328
 
37618
37329
  &:focus,
37619
37330
  &.k-focus,
37620
- &.k-state-focus,
37621
37331
  &:hover,
37622
- &.k-hover,
37623
- &.k-state-hover {
37332
+ &.k-hover {
37624
37333
  text-decoration: underline;
37625
37334
  }
37626
37335
  }
@@ -37712,7 +37421,6 @@ $taskboard-drag-placeholder-border: $component-border !default;
37712
37421
  );
37713
37422
  }
37714
37423
  .k-taskboard-column:focus,
37715
- .k-taskboard-column.k-state-focus,
37716
37424
  .k-taskboard-column.k-focus {
37717
37425
  @include fill(
37718
37426
  $taskboard-column-focus-text,
@@ -37751,39 +37459,33 @@ $taskboard-drag-placeholder-border: $component-border !default;
37751
37459
  @include fill( $color: $taskboard-card-header-text );
37752
37460
 
37753
37461
  &:focus,
37754
- &.k-focus,
37755
- &.k-state-focus {
37462
+ &.k-focus {
37756
37463
  @include fill( $color: $taskboard-card-header-focus-text );
37757
37464
  }
37758
37465
 
37759
37466
  &:hover,
37760
- &.k-hover,
37761
- &.k-state-hover {
37467
+ &.k-hover {
37762
37468
  @include fill( $color: $taskboard-card-header-hover-text );
37763
37469
  }
37764
37470
  }
37765
37471
 
37766
37472
  &:focus,
37767
- &.k-focus,
37768
- &.k-state-focus {
37473
+ &.k-focus {
37769
37474
  @include fill( $border: $taskboard-card-focus-border );
37770
37475
  @include box-shadow( $taskboard-card-focus-shadow );
37771
37476
  }
37772
37477
 
37773
37478
  &:hover,
37774
- &.k-hover,
37775
- &.k-state-hover {
37479
+ &.k-hover {
37776
37480
  @include fill( $border: $taskboard-card-hover-border );
37777
37481
  }
37778
37482
 
37779
- &.k-selected,
37780
- &.k-state-selected {
37483
+ &.k-selected {
37781
37484
  @include fill( $border: $taskboard-card-selected-border );
37782
37485
  @include box-shadow( $taskboard-card-selected-shadow );
37783
37486
  }
37784
37487
 
37785
- &.k-disabled,
37786
- &.k-state-disabled {
37488
+ &.k-disabled {
37787
37489
  @include disabled( $disabled-styling );
37788
37490
  }
37789
37491
  }
@@ -37915,7 +37617,6 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
37915
37617
  pointer-events: auto;
37916
37618
  }
37917
37619
 
37918
- .k-editor-content.k-state-focused,
37919
37620
  .k-editor-content.k-focus {
37920
37621
  outline-width: 1px;
37921
37622
  outline-style: dashed;
@@ -38171,7 +37872,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
38171
37872
  border-bottom-color: inherit;
38172
37873
  cursor: se-resize;
38173
37874
 
38174
- .k-i-arrow-45-down-right {
37875
+ .k-i-arrow-45-down-right,
37876
+ .k-i-caret-br {
38175
37877
  display: none;
38176
37878
  }
38177
37879
  }
@@ -38369,7 +38071,6 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
38369
38071
  display: block;
38370
38072
  margin: auto;
38371
38073
 
38372
- &.k-state-selected,
38373
38074
  &.k-selected {
38374
38075
  color: inherit;
38375
38076
  border-width: 0;
@@ -38678,9 +38379,9 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
38678
38379
  }
38679
38380
  }
38680
38381
 
38681
- // Hover & Actve state
38382
+ // Hover & Active state
38682
38383
  &:hover,
38683
- &.k-state-active,
38384
+ &.k-hover
38684
38385
  &.k-active {
38685
38386
  border-color: $panel-border;
38686
38387
  }
@@ -38698,7 +38399,6 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
38698
38399
 
38699
38400
  // Insert table
38700
38401
  .k-ct-popup {
38701
- .k-state-selected,
38702
38402
  .k-selected {
38703
38403
  @include fill( $selected-text, $selected-bg, $selected-border, none );
38704
38404
  }
@@ -39209,7 +38909,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
39209
38909
  }
39210
38910
 
39211
38911
  &.k-gantt-planned .k-grid-content tr {
39212
- height: calc( #{$line-height-em * 1.7} + #{$grid-cell-padding-y * 2} + #{$grid-cell-horizontal-border-width} );
38912
+ height: calc( #{$line-height-em} * 1.7 + #{$grid-cell-padding-y * 2} + #{$grid-cell-horizontal-border-width} );
39213
38913
  }
39214
38914
 
39215
38915
  // Layout
@@ -39254,7 +38954,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
39254
38954
  }
39255
38955
  }
39256
38956
 
39257
- tr.k-state-selected > td:last-child,
39258
38957
  tr.k-selected > td:last-child {
39259
38958
  background: transparent;
39260
38959
  }
@@ -39433,7 +39132,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
39433
39132
  padding: 0 !important; // sass-lint:disable-line no-important
39434
39133
  }
39435
39134
  .k-grid-header tr {
39436
- height: calc( #{$line-height-em * 2} + #{$grid-header-padding-y * 4} + 2px );
39135
+ height: calc( #{$line-height-em} * 2 + #{$grid-header-padding-y * 4} + 2px );
39437
39136
  vertical-align: bottom;
39438
39137
  }
39439
39138
  .k-grid-content {
@@ -39524,7 +39223,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
39524
39223
  border-color: currentColor;
39525
39224
  position: absolute;
39526
39225
  }
39527
- .k-gantt-line.k-state-selected,
39528
39226
  .k-gantt-line.k-selected {
39529
39227
  z-index: 3;
39530
39228
  }
@@ -39598,7 +39296,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
39598
39296
  transform: translate(-50%, -50%);
39599
39297
  }
39600
39298
  .k-task-dot:hover::before,
39601
- .k-task-dot.k-state-hover::before,
39602
39299
  .k-task-dot.k-hover::before {
39603
39300
  border-width: 1px;
39604
39301
  }
@@ -40086,7 +39783,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
40086
39783
  $border: $gantt-milestone-border
40087
39784
  );
40088
39785
  }
40089
- .k-task-milestone.k-state-selected .k-task-milestone-content,
40090
39786
  .k-task-milestone.k-selected .k-task-milestone-content {
40091
39787
  @include fill(
40092
39788
  $bg: $gantt-milestone-selected-bg,
@@ -40101,7 +39797,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
40101
39797
  stroke: $gantt-line-fill;
40102
39798
  }
40103
39799
 
40104
- polyline.k-state-selected,
40105
39800
  polyline.k-selected {
40106
39801
  stroke: $gantt-line-selected-fill;
40107
39802
  }
@@ -40155,7 +39850,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
40155
39850
  );
40156
39851
  }
40157
39852
  .k-task-dot:hover::before,
40158
- .k-task-dot.k-state-hover::before,
40159
39853
  .k-task-dot.k-hover::before {
40160
39854
  @include fill(
40161
39855
  $bg: $gantt-dot-hover-bg,
@@ -40181,7 +39875,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
40181
39875
  );
40182
39876
  }
40183
39877
  }
40184
- .k-task-milestone.k-state-selected,
40185
39878
  .k-task-milestone.k-selected {
40186
39879
  background-image: none;
40187
39880
  @include fill(
@@ -40212,7 +39905,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
40212
39905
  .k-task-advanced .k-task-summary-complete {
40213
39906
  color: $gantt-advanced-bg;
40214
39907
  }
40215
- .k-task-summary.k-state-selected,
40216
39908
  .k-task-summary.k-selected {
40217
39909
  color: $gantt-summary-selected-bg;
40218
39910
 
@@ -40256,7 +39948,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
40256
39948
  $bg: $gantt-advanced-bg
40257
39949
  );
40258
39950
  }
40259
- .k-task-single.k-state-selected,
40260
39951
  .k-task-single.k-selected {
40261
39952
  @include fill(
40262
39953
  $gantt-task-selected-text,
@@ -40273,7 +39964,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
40273
39964
  .k-gantt-line {
40274
39965
  color: $gantt-line-fill;
40275
39966
  }
40276
- .k-gantt-line.k-state-selected,
40277
39967
  .k-gantt-line.k-selected {
40278
39968
  color: $gantt-line-selected-fill;
40279
39969
  }
@@ -40954,7 +40644,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
40954
40644
  }
40955
40645
 
40956
40646
  &:hover,
40957
- &.k-state-hover,
40958
40647
  &.k-hover {
40959
40648
  .k-event-delete {
40960
40649
  opacity: 1;
@@ -41020,7 +40709,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
41020
40709
 
41021
40710
  // Hover
41022
40711
  &:hover,
41023
- &.k-state-hover,
41024
40712
  &.k-hover {
41025
40713
  .k-event-actions .k-event-delete,
41026
40714
  .k-resize-handle {
@@ -41278,11 +40966,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
41278
40966
  opacity: .5;
41279
40967
  visibility: hidden;
41280
40968
  }
41281
- .k-state-hover .k-task > .k-event-delete,
41282
40969
  .k-hover .k-task > .k-event-delete,
41283
40970
  .k-scheduler-content tr:hover .k-event-delete,
41284
40971
  .k-scheduler-content .k-scheduler-row:hover .k-event-delete,
41285
- .k-scheduler-content .k-scheduler-row.k-state-hover .k-event-delete,
41286
40972
  .k-scheduler-content .k-scheduler-row.k-hover .k-event-delete {
41287
40973
  visibility: visible;
41288
40974
  }
@@ -41356,7 +41042,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
41356
41042
  position: relative;
41357
41043
  }
41358
41044
 
41359
- td.k-state-selected,
41360
41045
  td.k-selected {
41361
41046
  background-color: inherit;
41362
41047
  }
@@ -41565,6 +41250,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
41565
41250
 
41566
41251
  .k-scheduler,
41567
41252
  &.k-scheduler {
41253
+ .k-i-caret-alt-left,
41254
+ .k-i-caret-alt-right,
41568
41255
  .k-i-arrow-60-left,
41569
41256
  .k-i-arrow-60-right,
41570
41257
  .k-current-time-arrow-right {
@@ -41654,7 +41341,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
41654
41341
  kendo-scheduler .k-event,
41655
41342
  .k-event {
41656
41343
 
41657
- &.k-state-selected,
41658
41344
  &.k-selected {
41659
41345
  &::before {
41660
41346
  display: block;
@@ -41870,9 +41556,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
41870
41556
  );
41871
41557
  }
41872
41558
 
41873
- .k-scheduler-layout td.k-state-selected,
41874
41559
  .k-scheduler-layout td.k-selected,
41875
- .k-scheduler-layout .k-scheduler-cell.k-state-selected,
41876
41560
  .k-scheduler-layout .k-scheduler-cell.k-selected {
41877
41561
  background-color: rgba($selected-bg, .25);
41878
41562
  }
@@ -41895,7 +41579,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
41895
41579
  );
41896
41580
  @include box-shadow( $scheduler-event-shadow );
41897
41581
 
41898
- &.k-state-hover,
41582
+ &:hover,
41899
41583
  &.k-hover {
41900
41584
  @include fill(
41901
41585
  $scheduler-event-hover-text,
@@ -41906,7 +41590,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
41906
41590
  @include box-shadow( $scheduler-event-hover-shadow );
41907
41591
  }
41908
41592
 
41909
- &.k-state-selected,
41910
41593
  &.k-selected {
41911
41594
  @include fill(
41912
41595
  $scheduler-event-selected-text,
@@ -41973,10 +41656,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
41973
41656
 
41974
41657
  // Hover
41975
41658
  .k-scheduler-content tr:hover,
41976
- .k-scheduler-content tr.k-state-hover,
41977
41659
  .k-scheduler-content tr.k-hover,
41978
41660
  .k-scheduler-content .k-scheduler-row:hover,
41979
- .k-scheduler-content .k-scheduler-row.k-state-hover,
41980
41661
  .k-scheduler-content .k-scheduler-row.k-hover {
41981
41662
  @include fill(
41982
41663
  $hovered-text,
@@ -41988,9 +41669,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
41988
41669
 
41989
41670
  .k-scheduler-content tr:hover .k-scheduler-datecolumn,
41990
41671
  .k-scheduler-content tr:hover .k-scheduler-groupcolumn,
41991
- .k-scheduler-content tr.k-state-hover .k-scheduler-datecolumn,
41992
41672
  .k-scheduler-content tr.k-hover .k-scheduler-datecolumn,
41993
- .k-scheduler-content tr.k-state-hover .k-scheduler-groupcolumn,
41994
41673
  .k-scheduler-content tr.k-hover .k-scheduler-groupcolumn {
41995
41674
  @include fill(
41996
41675
  $scheduler-text,
@@ -42000,13 +41679,10 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
42000
41679
  }
42001
41680
 
42002
41681
  // Selected
42003
- .k-scheduler-content tr.k-state-selected,
42004
41682
  .k-scheduler-content tr.k-selected {
42005
41683
  background-color: rgba($selected-bg, .25);
42006
41684
  }
42007
- .k-scheduler-content tr.k-state-selected .k-scheduler-datecolumn,
42008
41685
  .k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
42009
- .k-scheduler-content tr.k-state-selected .k-scheduler-groupcolumn,
42010
41686
  .k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
42011
41687
  background-color: $scheduler-bg;
42012
41688
  }
@@ -42024,7 +41700,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
42024
41700
  @include fill( $bg: $scheduler-yearview-indicator-bg );
42025
41701
  }
42026
41702
 
42027
- .k-state-selected .k-day-indicator,
42028
41703
  .k-selected .k-day-indicator {
42029
41704
  @include fill( $bg: $scheduler-yearview-indicator-selected-bg );
42030
41705
  }
@@ -42362,7 +42037,6 @@ $chat-quick-reply-hover-border: $primary !default;
42362
42037
 
42363
42038
 
42364
42039
  // Message states
42365
- .k-message.k-state-selected,
42366
42040
  .k-message.k-selected {
42367
42041
  margin-bottom: $chat-item-spacing-y;
42368
42042
  border: 0;
@@ -42491,7 +42165,6 @@ $chat-quick-reply-hover-border: $primary !default;
42491
42165
  align-items: center;
42492
42166
 
42493
42167
  &:focus,
42494
- &.k-state-focus,
42495
42168
  &.k-focus,
42496
42169
  &:focus-within {
42497
42170
  outline: 0;
@@ -42572,7 +42245,6 @@ $chat-quick-reply-hover-border: $primary !default;
42572
42245
  flex: 0 0 auto;
42573
42246
  }
42574
42247
 
42575
- &.k-state-selected,
42576
42248
  &.k-selected {
42577
42249
  background: none;
42578
42250
  }
@@ -42809,7 +42481,6 @@ $chat-quick-reply-hover-border: $primary !default;
42809
42481
  .k-bubble:hover {
42810
42482
  @include box-shadow( $chat-bubble-hover-shadow );
42811
42483
  }
42812
- .k-state-selected .k-bubble,
42813
42484
  .k-selected .k-bubble {
42814
42485
  @include box-shadow( $chat-bubble-selected-shadow );
42815
42486
  }
@@ -42825,7 +42496,6 @@ $chat-quick-reply-hover-border: $primary !default;
42825
42496
  .k-alt .k-bubble:hover {
42826
42497
  @include box-shadow( $chat-alt-bubble-hover-shadow );
42827
42498
  }
42828
- .k-alt .k-state-selected .k-bubble,
42829
42499
  .k-alt .k-selected .k-bubble {
42830
42500
  @include box-shadow( $chat-alt-bubble-selected-shadow );
42831
42501
  }
@@ -43588,12 +43258,10 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
43588
43258
  }
43589
43259
 
43590
43260
  .k-timeline-track-item:hover .k-timeline-circle::before,
43591
- .k-timeline-track-item.k-state-hover .k-timeline-circle::before,
43592
43261
  .k-timeline-track-item.k-hover .k-timeline-circle::before {
43593
43262
  opacity: $kendo-flat-button-hover-opacity;
43594
43263
  }
43595
43264
 
43596
- .k-timeline-track-item.k-state-focus .k-timeline-circle::before,
43597
43265
  .k-timeline-track-item.k-focus .k-timeline-circle::before {
43598
43266
  opacity: $kendo-flat-button-focus-opacity;
43599
43267
  }
@@ -43645,7 +43313,6 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
43645
43313
  color: $body-text;
43646
43314
  }
43647
43315
 
43648
- .k-timeline-arrow.k-state-disabled,
43649
43316
  .k-timeline-arrow.k-disabled {
43650
43317
  opacity: 1; // The arrow button in disabled mode should have a solid background
43651
43318
  color: $timeline-track-arrow-disabled-text;
@@ -43666,7 +43333,6 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
43666
43333
  background-color: $timeline-flag-bg;
43667
43334
  }
43668
43335
 
43669
- .k-timeline-track-item.k-state-focus .k-timeline-circle,
43670
43336
  .k-timeline-track-item.k-focus .k-timeline-circle {
43671
43337
  @include box-shadow( $timeline-track-item-focus-shadow );
43672
43338
  }
@@ -43688,6 +43354,9 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
43688
43354
  // #region @import "../common/_index.scss"; -> packages/material/scss/common/_index.scss
43689
43355
  // File already imported_once. Skipping output.
43690
43356
  // #endregion
43357
+ // #region @import "../button/_variables.scss"; -> packages/material/scss/button/_variables.scss
43358
+ // File already imported_once. Skipping output.
43359
+ // #endregion
43691
43360
  // #region @import "../combobox/_index.scss"; -> packages/material/scss/combobox/_index.scss
43692
43361
  // File already imported_once. Skipping output.
43693
43362
  // #endregion
@@ -43703,7 +43372,12 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
43703
43372
  // #region @import "../icons/_index.scss"; -> packages/material/scss/icons/_index.scss
43704
43373
  // File already imported_once. Skipping output.
43705
43374
  // #endregion
43706
-
43375
+ // #region @import "../dropzone/_index.scss"; -> packages/material/scss/dropzone/_index.scss
43376
+ // File already imported_once. Skipping output.
43377
+ // #endregion
43378
+ // #region @import "../window/_index.scss"; -> packages/material/scss/window/_index.scss
43379
+ // File already imported_once. Skipping output.
43380
+ // #endregion
43707
43381
 
43708
43382
  // Component
43709
43383
  // #region @import "_variables.scss"; -> packages/material/scss/pdf-viewer/_variables.scss
@@ -43733,12 +43407,25 @@ $pdf-viewer-page-text: $component-text !default;
43733
43407
  $pdf-viewer-page-border: $component-border !default;
43734
43408
  $pdf-viewer-page-shadow: 0 0 ($pdf-viewer-page-spacing / 2) $pdf-viewer-page-border !default;
43735
43409
 
43736
- $pdf-viewer-search-dialog-padding: $toolbar-padding-x !default;
43410
+ $pdf-viewer-search-panel-border-width: 1px !default;
43411
+ $pdf-viewer-search-panel-border-radius: map-get( $spacing, 1 ) !default;
43412
+ $pdf-viewer-search-panel-bg: $component-bg !default;
43413
+ $pdf-viewer-search-panel-text: $component-text !default;
43414
+ $pdf-viewer-search-panel-border: $component-border !default;
43415
+ $pdf-viewer-search-panel-shadow: $window-shadow !default;
43416
+ $pdf-viewer-search-panel-matches-spacing: $padding-x-sm !default;
43417
+
43418
+ $pdf-viewer-search-dialog-padding-x: $toolbar-padding-x !default;
43419
+ $pdf-viewer-search-dialog-padding-y: calc( #{$toolbar-padding-x} * 2 ) !default;
43737
43420
  $pdf-viewer-search-dialog-spacing: $toolbar-spacing !default;
43738
43421
 
43739
43422
  $pdf-viewer-selection-line-height: $line-height-sm !default;
43740
43423
 
43741
43424
  $pdf-viewer-search-highlight-bg: $body-text !default;
43425
+ $pdf-viewer-search-highlight-mark-bg: yellow !default;
43426
+
43427
+ $pdf-viewer-icon-text: $dropzone-icon-text !default;
43428
+ $pdf-viewer-icon-size: calc( #{$icon-size} * 3 ) !default;
43742
43429
 
43743
43430
  // #endregion
43744
43431
  // #region @import "_layout.scss"; -> packages/material/scss/pdf-viewer/_layout.scss
@@ -43749,6 +43436,7 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
43749
43436
  border-width: $pdf-viewer-border-width;
43750
43437
  border-style: solid;
43751
43438
  box-sizing: border-box;
43439
+ position: relative;
43752
43440
  outline: 0;
43753
43441
  font-family: $pdf-viewer-font-family;
43754
43442
  font-size: $pdf-viewer-font-size;
@@ -43779,11 +43467,14 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
43779
43467
 
43780
43468
 
43781
43469
  // Canvas
43782
- .k-list-scroller {
43470
+ .k-canvas {
43471
+ display: flex;
43472
+ flex-direction: column;
43783
43473
  flex: 1 1 auto;
43784
43474
  outline: none;
43785
43475
 
43786
- .k-enable-text-select {
43476
+ .k-enable-text-select,
43477
+ &.k-enable-text-select {
43787
43478
  -webkit-user-select: text;
43788
43479
  -moz-user-select: text;
43789
43480
  -ms-user-select: text;
@@ -43791,16 +43482,22 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
43791
43482
  cursor: text;
43792
43483
  }
43793
43484
 
43794
- .k-enable-panning {
43485
+ .k-enable-panning,
43486
+ &.k-enable-panning {
43795
43487
  cursor: grab;
43796
43488
  }
43797
- .k-enable-panning span::selection {
43489
+ .k-enable-panning span::selection,
43490
+ &.k-enable-panning span::selection {
43798
43491
  background-color: transparent;
43799
43492
  }
43800
43493
  }
43801
43494
 
43802
43495
 
43803
- // Page
43496
+ // Pages
43497
+ .k-pdf-viewer-pages {
43498
+ flex: 1 1 auto;
43499
+ }
43500
+
43804
43501
  .k-page {
43805
43502
  position: relative;
43806
43503
  margin: $pdf-viewer-page-spacing auto;
@@ -43826,46 +43523,88 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
43826
43523
  mark {
43827
43524
  color: transparent;
43828
43525
  }
43526
+
43527
+ .k-search-highlight-mark {
43528
+ color: transparent;
43529
+ }
43829
43530
  }
43830
43531
  }
43532
+
43533
+ .k-blank-page {
43534
+ margin: 0;
43535
+ display: flex;
43536
+ flex-flow: column nowrap;
43537
+ width: 100%;
43538
+ height: 100%;
43539
+ align-items: center;
43540
+ justify-content: center;
43541
+ background-color: inherit !important; // sass-lint:disable-line no-important
43542
+
43543
+ .k-upload,
43544
+ .k-dropzone,
43545
+ .k-dropzone-inner {
43546
+ border: 0;
43547
+ background: none;
43548
+ }
43549
+
43550
+ > .k-icon {
43551
+ font-size: $pdf-viewer-icon-size;
43552
+ }
43553
+ }
43554
+
43831
43555
  }
43832
43556
 
43833
43557
  // Search
43834
43558
  .k-pdf-viewer-search-dialog {
43835
- padding: $pdf-viewer-search-dialog-padding;
43559
+ padding: 0 !important; // sass-lint:disable-line no-important
43560
+ }
43836
43561
 
43837
- .k-search-container {
43838
- display: flex;
43839
- gap: $pdf-viewer-search-dialog-spacing;
43840
- flex-flow: row nowrap;
43841
- flex: 0 0 auto;
43842
- justify-content: flex-start;
43843
- align-items: center;
43562
+ .k-search-panel {
43563
+ padding: $pdf-viewer-search-dialog-padding-y $pdf-viewer-search-dialog-padding-x;
43564
+ display: flex;
43565
+ gap: $pdf-viewer-search-dialog-spacing;
43566
+ flex-flow: row nowrap;
43567
+ flex: 0 0 auto;
43568
+ justify-content: flex-start;
43569
+ align-items: center;
43844
43570
 
43845
- .k-search-dialog-draghandle {
43846
- cursor: move;
43847
- margin-left: 0;
43848
- }
43571
+ .k-search-dialog-draghandle {
43572
+ cursor: move;
43573
+ margin-left: 0;
43574
+ }
43849
43575
 
43850
- .k-textbox {
43851
- width: 10em;
43852
- flex: none;
43576
+ .k-textbox {
43577
+ width: 10em;
43578
+ flex: none;
43853
43579
 
43854
- .k-button {
43855
- border-width: 0;
43856
- }
43580
+ .k-button {
43581
+ border-width: 0;
43857
43582
  }
43583
+ }
43858
43584
 
43859
- .k-search-matches {
43860
- flex: 1 1 auto;
43861
- }
43585
+ .k-search-matches {
43586
+ display: inline-flex;
43587
+ gap: $pdf-viewer-search-panel-matches-spacing;
43862
43588
  }
43863
43589
  }
43864
43590
 
43591
+ .k-pdf-viewer-canvas > .k-search-panel {
43592
+ width: max-content;
43593
+ margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$pdf-viewer-search-panel-border-width} ) + ( 2 * #{$pdf-viewer-search-dialog-padding-y} )) * -1 );
43594
+ border-width: $pdf-viewer-search-panel-border-width;
43595
+ border-style: solid;
43596
+ border-radius: $pdf-viewer-search-panel-border-radius;
43597
+ z-index: 10;
43598
+ }
43599
+
43600
+ // Alias
43601
+ .k-search-container {
43602
+ @extend .k-search-panel !optional;
43603
+ }
43604
+
43865
43605
 
43866
43606
  // IE
43867
43607
  .k-ie .k-pdf-viewer-search-dialog {
43868
-
43869
43608
  .k-search-container > * + * {
43870
43609
  margin-left: $pdf-viewer-search-dialog-spacing;
43871
43610
  }
@@ -43920,12 +43659,33 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
43920
43659
  @include box-shadow( $pdf-viewer-page-shadow );
43921
43660
  }
43922
43661
 
43662
+ .k-blank-page > .k-icon {
43663
+ @include fill( $color: $pdf-viewer-icon-text );
43664
+ }
43665
+
43923
43666
 
43924
43667
  // Search
43925
43668
  .k-search-highlight {
43926
43669
  background-color: $pdf-viewer-search-highlight-bg;
43927
43670
  }
43928
43671
 
43672
+ .k-search-highlight-mark {
43673
+ @include fill( $bg: $pdf-viewer-search-highlight-mark-bg );
43674
+ }
43675
+
43676
+ }
43677
+
43678
+ .k-pdf-viewer-canvas > .k-search-panel {
43679
+ @include fill(
43680
+ $pdf-viewer-search-panel-text,
43681
+ $pdf-viewer-search-panel-bg,
43682
+ $pdf-viewer-search-panel-border,
43683
+ );
43684
+ @include box-shadow( $pdf-viewer-search-panel-shadow );
43685
+ }
43686
+
43687
+ .k-search-container {
43688
+ @extend .k-search-panel !optional;
43929
43689
  }
43930
43690
 
43931
43691
  }
@@ -44379,7 +44139,6 @@ $scrollview-transition-timing-function: ease-in-out !default;
44379
44139
  -webkit-tap-highlight-color: $scrollview-arrow-tap-highlight-color;
44380
44140
 
44381
44141
  &:focus,
44382
- &.k-state-focus,
44383
44142
  &.k-focus {
44384
44143
  color: $scrollview-navigation-color;
44385
44144
  opacity: $scrollview-navigation-hover-opacity;
@@ -44390,7 +44149,6 @@ $scrollview-transition-timing-function: ease-in-out !default;
44390
44149
  }
44391
44150
 
44392
44151
  &:hover,
44393
- &.k-state-hover,
44394
44152
  &.k-hover {
44395
44153
  color: $scrollview-navigation-color;
44396
44154
  opacity: $scrollview-navigation-hover-opacity;
@@ -44410,14 +44168,12 @@ $scrollview-transition-timing-function: ease-in-out !default;
44410
44168
  }
44411
44169
 
44412
44170
  &:focus,
44413
- &.k-state-focused,
44414
44171
  &.k-focus {
44415
44172
  box-shadow: $scrollview-pagebutton-shadow;
44416
44173
  }
44417
44174
  }
44418
44175
 
44419
44176
  .k-scrollview-nav > .k-link:hover,
44420
- .k-scrollview-nav > .k-link.k-state-hover,
44421
44177
  .k-scrollview-nav > .k-link.k-hover {
44422
44178
  box-shadow: $scrollview-pagebutton-shadow;
44423
44179
  }
@@ -45236,7 +44992,7 @@ $treemap-line-height: $line-height !default;
45236
44992
  .k-leaf.k-inverse {
45237
44993
  color: $component-text;
45238
44994
  }
45239
- .k-leaf.k-state-hover,
44995
+ .k-leaf:hover,
45240
44996
  .k-leaf.k-hover {
45241
44997
  box-shadow: inset 0 0 0 3px $component-border;
45242
44998
  }
@@ -45718,8 +45474,7 @@ $orgchart-line-v-height: 25px !default;
45718
45474
  }
45719
45475
 
45720
45476
  &:focus,
45721
- &.k-focus,
45722
- &.k-state-focus {
45477
+ &.k-focus {
45723
45478
  @include box-shadow( $orgchart-card-focus-shadow );
45724
45479
  }
45725
45480
  }
@@ -45733,9 +45488,6 @@ $orgchart-line-v-height: 25px !default;
45733
45488
  );
45734
45489
  }
45735
45490
  .k-orgchart-node-group-container:focus,
45736
- .k-orgchart-node-group-container.k-focus,
45737
- .k-orgchart-node-group-container.k-state-focus,
45738
- .k-orgchart-node-group-container.k-state-focused,
45739
45491
  .k-orgchart-node-group-container.k-focus {
45740
45492
  @include box-shadow( $orgchart-node-group-focus-shadow );
45741
45493
  @include fill ( $border: $orgchart-node-group-focus-border );
@@ -45779,40 +45531,42 @@ $kendo-signature-height: 108px !default;
45779
45531
  $kendo-signature-maximized-width: 750px !default;
45780
45532
  $kendo-signature-maximized-height: 252px !default;
45781
45533
 
45782
- $kendo-signature-padding: map-get( $spacing, 2 ) !default;
45783
- $kendo-signature-padding-sm: map-get( $spacing, 2 ) - map-get( $spacing, thin ) !default;
45784
- $kendo-signature-padding-md: $kendo-signature-padding !default;
45785
- $kendo-signature-padding-lg: map-get( $spacing, 2 ) + map-get( $spacing, thin ) !default;
45534
+ $kendo-signature-padding-x: map-get( $spacing, 1 ) !default;
45535
+ $kendo-signature-padding-x-sm: map-get( $spacing, thin ) !default;
45536
+ $kendo-signature-padding-x-md: $kendo-signature-padding-x !default;
45537
+ $kendo-signature-padding-x-lg: map-get( $spacing, 1 ) + map-get( $spacing, thin ) !default;
45538
+
45539
+ $kendo-signature-padding-y: $kendo-signature-padding-x !default;
45540
+ $kendo-signature-padding-y-sm: $kendo-signature-padding-x-sm !default;
45541
+ $kendo-signature-padding-y-md: $kendo-signature-padding-y !default;
45542
+ $kendo-signature-padding-y-lg: $kendo-signature-padding-x-lg !default;
45786
45543
 
45787
45544
  $kendo-signature-line-width: 1px !default;
45788
45545
  $kendo-signature-line-style: dashed !default;
45789
45546
  $kendo-signature-line-color: rgba( $info, .24 ) !default;
45790
45547
 
45791
- $kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding} ) !default;
45792
- $kendo-signature-line-size-sm: calc( 100% - 2 * #{$kendo-signature-padding-sm} ) !default;
45793
- $kendo-signature-line-size-md: calc( 100% - 2 * #{$kendo-signature-padding-md} ) !default;
45794
- $kendo-signature-line-size-lg: calc( 100% - 2 * #{$kendo-signature-padding-lg} ) !default;
45548
+ $kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
45549
+ $kendo-signature-line-size-sm: calc( 100% - 2 * #{$kendo-signature-padding-x-sm} ) !default;
45550
+ $kendo-signature-line-size-md: calc( 100% - 2 * #{$kendo-signature-padding-x-md} ) !default;
45551
+ $kendo-signature-line-size-lg: calc( 100% - 2 * #{$kendo-signature-padding-x-lg} ) !default;
45795
45552
 
45796
- $kendo-signature-line-bottom-offset: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding} ) !default;
45797
- $kendo-signature-line-bottom-offset-sm: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-sm} ) !default;
45798
- $kendo-signature-line-bottom-offset-md: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-md} ) !default;
45799
- $kendo-signature-line-bottom-offset-lg: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-lg} ) !default;
45553
+ $kendo-signature-line-bottom-offset: 33% !default;
45800
45554
 
45801
45555
  $kendo-signature-sizes: (
45802
45556
  sm: (
45803
- padding: $kendo-signature-padding-sm,
45804
- line-size: $kendo-signature-line-size-sm,
45805
- line-offset: $kendo-signature-line-bottom-offset-sm
45557
+ padding-x: $kendo-signature-padding-x-sm,
45558
+ padding-y: $kendo-signature-padding-y-sm,
45559
+ line-size: $kendo-signature-line-size-sm
45806
45560
  ),
45807
45561
  md: (
45808
- padding: $kendo-signature-padding-md,
45809
- line-size: $kendo-signature-line-size-md,
45810
- line-offset: $kendo-signature-line-bottom-offset-md
45562
+ padding-x: $kendo-signature-padding-x-md,
45563
+ padding-y: $kendo-signature-padding-y-md,
45564
+ line-size: $kendo-signature-line-size-md
45811
45565
  ),
45812
45566
  lg: (
45813
- padding: $kendo-signature-padding-lg,
45814
- line-size: $kendo-signature-line-size-lg,
45815
- line-offset: $kendo-signature-line-bottom-offset-lg
45567
+ padding-x: $kendo-signature-padding-x-lg,
45568
+ padding-y: $kendo-signature-padding-y-lg,
45569
+ line-size: $kendo-signature-line-size-lg
45816
45570
  )
45817
45571
  ) !default;
45818
45572
 
@@ -45826,7 +45580,7 @@ $kendo-signature-maximized-line-width: map-get( $spacing, 1 ) - map-get( $spacin
45826
45580
 
45827
45581
  .k-signature {
45828
45582
  width: $kendo-signature-width;
45829
- height: $kendo-signature-height;
45583
+ min-height: $kendo-signature-height;
45830
45584
  position: relative;
45831
45585
  box-sizing: border-box;
45832
45586
  display: flex;
@@ -45863,27 +45617,30 @@ $kendo-signature-maximized-line-width: map-get( $spacing, 1 ) - map-get( $spacin
45863
45617
 
45864
45618
  .k-signature-line {
45865
45619
  position: absolute;
45866
- z-index: 0;
45620
+ bottom: $kendo-signature-line-bottom-offset;
45621
+ z-index: 2;
45622
+ pointer-events: none;
45867
45623
  border-bottom-width: $kendo-signature-line-width;
45868
45624
  border-bottom-style: $kendo-signature-line-style;
45869
45625
  }
45870
45626
 
45871
45627
  // Sizes
45872
45628
  @each $size, $size-props in $kendo-signature-sizes {
45873
- $_padding: map-get($size-props, padding);
45629
+ $_padding-x: map-get($size-props, padding-x);
45630
+ $_padding-y: map-get($size-props, padding-y);
45874
45631
  $_line-size: map-get($size-props, line-size);
45875
45632
  $_line-offset: map-get($size-props, line-offset);
45876
45633
 
45877
45634
  .k-signature-#{$size} {
45878
- padding: $_padding;
45635
+ padding-inline: $_padding-x;
45636
+ padding-block: $_padding-y;
45879
45637
 
45880
45638
  .k-signature-line {
45881
45639
  width: $_line-size;
45882
- bottom: $_line-offset;
45883
45640
  }
45884
45641
  }
45885
-
45886
45642
  }
45643
+
45887
45644
  }
45888
45645
 
45889
45646
  // #endregion