@progress/kendo-theme-default 5.4.0 → 5.4.2-dev.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. package/dist/all.css +472 -209
  2. package/dist/all.scss +455 -178
  3. package/lib/swatches/default-blue.json +1 -1
  4. package/lib/swatches/default-dataviz-v4.json +1 -1
  5. package/lib/swatches/default-green.json +1 -1
  6. package/lib/swatches/default-main-dark.json +1 -1
  7. package/lib/swatches/default-main.json +1 -1
  8. package/lib/swatches/default-nordic.json +1 -1
  9. package/lib/swatches/default-ocean-blue.json +1 -1
  10. package/lib/swatches/default-orange.json +1 -1
  11. package/lib/swatches/default-purple.json +1 -1
  12. package/lib/swatches/default-turquoise.json +1 -1
  13. package/lib/swatches/default-urban.json +1 -1
  14. package/package.json +2 -2
  15. package/scss/action-sheet/_theme.scss +6 -3
  16. package/scss/adaptive/_theme.scss +4 -2
  17. package/scss/bottom-navigation/_layout.scss +2 -1
  18. package/scss/bottom-navigation/_theme.scss +8 -2
  19. package/scss/breadcrumb/_theme.scss +10 -5
  20. package/scss/calendar/_layout.scss +2 -1
  21. package/scss/calendar/_theme.scss +6 -0
  22. package/scss/chat/_layout.scss +5 -2
  23. package/scss/chat/_theme.scss +4 -2
  24. package/scss/colorpalette/_layout.scss +4 -1
  25. package/scss/colorpalette/_theme.scss +1 -0
  26. package/scss/common/_base.scss +1 -0
  27. package/scss/core/mixins/_input-ripple.scss +4 -2
  28. package/scss/dataviz/_theme.scss +2 -1
  29. package/scss/drawer/_theme.scss +10 -5
  30. package/scss/editor/_layout.scss +4 -2
  31. package/scss/editor/_theme.scss +6 -3
  32. package/scss/expansion-panel/_theme.scss +6 -3
  33. package/scss/filemanager/_theme.scss +2 -1
  34. package/scss/gantt/_layout.scss +6 -3
  35. package/scss/gantt/_theme.scss +14 -7
  36. package/scss/grid/_theme.scss +80 -23
  37. package/scss/input/_layout.scss +8 -0
  38. package/scss/listview/_theme.scss +4 -2
  39. package/scss/orgchart/_theme.scss +2 -1
  40. package/scss/pager/_layout.scss +6 -3
  41. package/scss/pager/_theme.scss +20 -10
  42. package/scss/panelbar/_theme.scss +53 -14
  43. package/scss/pivotgrid/_theme.scss +7 -1
  44. package/scss/progressbar/_layout.scss +22 -10
  45. package/scss/progressbar/_theme.scss +2 -1
  46. package/scss/radio/_layout.scss +2 -1
  47. package/scss/radio/_theme.scss +6 -3
  48. package/scss/rating/_theme.scss +10 -5
  49. package/scss/scheduler/_layout.scss +9 -4
  50. package/scss/scheduler/_theme.scss +20 -8
  51. package/scss/scrollview/_theme.scss +8 -4
  52. package/scss/slider/_layout.scss +2 -1
  53. package/scss/slider/_theme.scss +6 -3
  54. package/scss/splitter/_theme.scss +4 -1
  55. package/scss/spreadsheet/_layout.scss +6 -3
  56. package/scss/spreadsheet/_theme.scss +13 -6
  57. package/scss/stepper/_layout.scss +2 -1
  58. package/scss/stepper/_theme.scss +2 -1
  59. package/scss/tabstrip/_layout.scss +14 -7
  60. package/scss/tabstrip/_theme.scss +11 -5
  61. package/scss/taskboard/_theme.scss +2 -1
  62. package/scss/tilelayout/_theme.scss +2 -1
  63. package/scss/timeline/_theme.scss +4 -2
  64. package/scss/timeselector/_layout.scss +2 -1
  65. package/scss/timeselector/_theme.scss +2 -1
  66. package/scss/treelist/_layout.scss +2 -1
  67. package/scss/upload/_layout.scss +2 -1
  68. package/scss/upload/_theme.scss +5 -2
  69. package/scss/window/_theme.scss +2 -1
  70. package/scss/wizard/_layout.scss +2 -1
  71. package/scss/wizard/_theme.scss +4 -2
@@ -26,7 +26,8 @@
26
26
 
27
27
 
28
28
  // Selection
29
- > .k-state-selected {
29
+ > .k-state-selected ,
30
+ > .k-selected {
30
31
  border-width: 0;
31
32
  border-style: solid;
32
33
  display: flex;
@@ -96,7 +97,8 @@
96
97
  flex-direction: row;
97
98
  }
98
99
 
99
- > .k-state-selected {
100
+ > .k-state-selected ,
101
+ > .k-selected {
100
102
  width: 0;
101
103
  width: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
102
104
  flex-direction: row;
@@ -122,7 +124,8 @@
122
124
  // Horizontal reverse
123
125
  &.k-progressbar-reverse {
124
126
 
125
- > .k-state-selected {
127
+ > .k-state-selected ,
128
+ > .k-selected {
126
129
  flex-direction: row-reverse;
127
130
  justify-self: flex-end;
128
131
  }
@@ -146,7 +149,8 @@
146
149
  writing-mode: vertical-lr;
147
150
  }
148
151
 
149
- > .k-state-selected {
152
+ > .k-state-selected ,
153
+ > .k-selected {
150
154
  height: 0;
151
155
  height: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
152
156
  flex-direction: column-reverse;
@@ -175,7 +179,8 @@
175
179
  &.k-progressbar-reverse {
176
180
  flex-direction: column;
177
181
 
178
- > .k-state-selected {
182
+ > .k-state-selected ,
183
+ > .k-selected {
179
184
  flex-direction: column;
180
185
  align-self: flex-start;
181
186
  }
@@ -187,6 +192,7 @@
187
192
  .k-progressbar-indeterminate {
188
193
  .k-progress-status-wrap,
189
194
  .k-state-selected,
195
+ .k-selected,
190
196
  .k-item {
191
197
  display: none;
192
198
  }
@@ -197,7 +203,9 @@
197
203
  .telerik-blazor.k-progressbar-horizontal {
198
204
 
199
205
  > .k-state-selected,
200
- > .k-state-selected > .k-progress-status-wrap {
206
+ > .k-selected,
207
+ > .k-state-selected > .k-progress-status-wrap ,
208
+ > .k-selected > .k-progress-status-wrap {
201
209
  transition: width .1s ease-in-out;
202
210
  }
203
211
  }
@@ -225,7 +233,8 @@
225
233
  display: -ms-inline-grid;
226
234
 
227
235
  > .k-progress-status-wrap,
228
- > .k-state-selected {
236
+ > .k-state-selected ,
237
+ > .k-selected {
229
238
  -ms-grid-column: 1;
230
239
  -ms-grid-row: 1;
231
240
  }
@@ -234,7 +243,8 @@
234
243
  -ms-grid-columns: 1fr;
235
244
  -ms-grid-rows: $progressbar-height;
236
245
 
237
- &.k-progressbar-reverse > .k-state-selected {
246
+ &.k-progressbar-reverse > .k-state-selected ,
247
+ &.k-progressbar-reverse > .k-selected {
238
248
  -ms-grid-column-align: end;
239
249
  }
240
250
  }
@@ -242,11 +252,13 @@
242
252
  -ms-grid-columns: $progressbar-height;
243
253
  -ms-grid-rows: 1fr;
244
254
 
245
- > .k-state-selected {
255
+ > .k-state-selected ,
256
+ > .k-selected {
246
257
  -ms-grid-row-align: end;
247
258
  }
248
259
 
249
- &.k-progressbar-reverse > .k-state-selected {
260
+ &.k-progressbar-reverse > .k-state-selected ,
261
+ &.k-progressbar-reverse > .k-selected {
250
262
  -ms-grid-row-align: start;
251
263
  }
252
264
  }
@@ -8,7 +8,8 @@
8
8
  .k-progressbar {
9
9
  @include fill( $progressbar-text, $progressbar-bg, $progressbar-border, $progressbar-gradient );
10
10
 
11
- .k-state-selected {
11
+ .k-state-selected ,
12
+ .k-selected {
12
13
  @include fill( $progressbar-fill-text, $progressbar-fill-bg, $progressbar-fill-border, $progressbar-fill-gradient );
13
14
  }
14
15
 
@@ -169,7 +169,8 @@
169
169
  }
170
170
 
171
171
  .k-radio:focus,
172
- .k-radio.k-state-focus {
172
+ .k-radio.k-state-focus ,
173
+ .k-radio.k-focus {
173
174
  box-shadow: none !important; // sass-lint:disable-line no-important
174
175
 
175
176
  &::after {
@@ -12,7 +12,8 @@
12
12
 
13
13
  // Hover state
14
14
  .k-radio:hover,
15
- .k-radio.k-state-hover {
15
+ .k-radio.k-state-hover ,
16
+ .k-radio.k-hover {
16
17
  @include fill(
17
18
  $kendo-radio-hover-text,
18
19
  $kendo-radio-hover-bg,
@@ -23,7 +24,8 @@
23
24
 
24
25
  // Focus state
25
26
  .k-radio:focus,
26
- .k-radio.k-state-focus {
27
+ .k-radio.k-state-focus ,
28
+ .k-radio.k-focus {
27
29
  @include fill( $border: $kendo-radio-focus-border );
28
30
  @include box-shadow( $kendo-radio-focus-shadow );
29
31
  }
@@ -54,7 +56,8 @@
54
56
  );
55
57
  }
56
58
  .k-radio:checked:focus,
57
- .k-radio.k-checked.k-state-focus {
59
+ .k-radio.k-checked.k-state-focus ,
60
+ .k-radio.k-checked.k-focus {
58
61
  @include fill( $border: $kendo-radio-focus-checked-border );
59
62
  @include box-shadow( $kendo-radio-focus-checked-shadow );
60
63
  }
@@ -4,14 +4,16 @@
4
4
  color: $component-text;
5
5
 
6
6
  &:focus,
7
- &.k-state-focused {
7
+ &.k-state-focused ,
8
+ &.k-focus {
8
9
 
9
10
  .k-rating-item {
10
11
  > .k-icon {
11
12
  text-shadow: $rating-icon-focused-shadow;
12
13
  }
13
14
 
14
- &.k-state-selected > .k-icon {
15
+ &.k-state-selected > .k-icon ,
16
+ &.k-selected > .k-icon {
15
17
  text-shadow: $rating-icon-focused-selected-shadow;
16
18
  }
17
19
  }
@@ -21,17 +23,20 @@
21
23
  .k-rating-item {
22
24
  color: $rating-icon-text;
23
25
 
24
- &.k-state-selected {
26
+ &.k-state-selected ,
27
+ &.k-selected {
25
28
  color: $rating-icon-selected-text;
26
29
 
27
30
  &:focus,
28
- &.k-state-focused {
31
+ &.k-state-focused ,
32
+ &.k-focus {
29
33
  color: $rating-icon-focused-text;
30
34
  }
31
35
  }
32
36
 
33
37
  &:hover,
34
- &.k-state-hover {
38
+ &.k-state-hover ,
39
+ &.k-hover {
35
40
  color: $rating-icon-hover-text;
36
41
  cursor: pointer;
37
42
  }
@@ -441,7 +441,8 @@
441
441
  }
442
442
 
443
443
  &:hover,
444
- &.k-state-hover {
444
+ &.k-state-hover ,
445
+ &.k-hover {
445
446
  .k-event-delete {
446
447
  opacity: 1;
447
448
  }
@@ -506,7 +507,8 @@
506
507
 
507
508
  // Hover
508
509
  &:hover,
509
- &.k-state-hover {
510
+ &.k-state-hover ,
511
+ &.k-hover {
510
512
  .k-event-actions .k-event-delete,
511
513
  .k-resize-handle {
512
514
  visibility: visible;
@@ -764,9 +766,11 @@
764
766
  visibility: hidden;
765
767
  }
766
768
  .k-state-hover .k-task > .k-event-delete,
769
+ .k-hover .k-task > .k-event-delete,
767
770
  .k-scheduler-content tr:hover .k-event-delete,
768
771
  .k-scheduler-content .k-scheduler-row:hover .k-event-delete,
769
- .k-scheduler-content .k-scheduler-row.k-state-hover .k-event-delete {
772
+ .k-scheduler-content .k-scheduler-row.k-state-hover .k-event-delete ,
773
+ .k-scheduler-content .k-scheduler-row.k-hover .k-event-delete {
770
774
  visibility: visible;
771
775
  }
772
776
  }
@@ -839,7 +843,8 @@
839
843
  position: relative;
840
844
  }
841
845
 
842
- td.k-state-selected {
846
+ td.k-state-selected ,
847
+ td.k-selected {
843
848
  background-color: inherit;
844
849
  }
845
850
  }
@@ -83,7 +83,9 @@
83
83
  }
84
84
 
85
85
  .k-scheduler-layout td.k-state-selected,
86
- .k-scheduler-layout .k-scheduler-cell.k-state-selected {
86
+ .k-scheduler-layout td.k-selected,
87
+ .k-scheduler-layout .k-scheduler-cell.k-state-selected ,
88
+ .k-scheduler-layout .k-scheduler-cell.k-selected {
87
89
  background-color: rgba($selected-bg, .25);
88
90
  }
89
91
 
@@ -105,7 +107,8 @@
105
107
  );
106
108
  @include box-shadow( $scheduler-event-shadow );
107
109
 
108
- &.k-state-hover {
110
+ &.k-state-hover ,
111
+ &.k-hover {
109
112
  @include fill(
110
113
  $scheduler-event-hover-text,
111
114
  $scheduler-event-hover-bg,
@@ -115,7 +118,8 @@
115
118
  @include box-shadow( $scheduler-event-hover-shadow );
116
119
  }
117
120
 
118
- &.k-state-selected {
121
+ &.k-state-selected ,
122
+ &.k-selected {
119
123
  @include fill(
120
124
  $scheduler-event-selected-text,
121
125
  $scheduler-event-selected-bg,
@@ -182,8 +186,10 @@
182
186
  // Hover
183
187
  .k-scheduler-content tr:hover,
184
188
  .k-scheduler-content tr.k-state-hover,
189
+ .k-scheduler-content tr.k-hover,
185
190
  .k-scheduler-content .k-scheduler-row:hover,
186
- .k-scheduler-content .k-scheduler-row.k-state-hover {
191
+ .k-scheduler-content .k-scheduler-row.k-state-hover ,
192
+ .k-scheduler-content .k-scheduler-row.k-hover {
187
193
  @include fill(
188
194
  $hovered-text,
189
195
  $hovered-bg,
@@ -195,7 +201,9 @@
195
201
  .k-scheduler-content tr:hover .k-scheduler-datecolumn,
196
202
  .k-scheduler-content tr:hover .k-scheduler-groupcolumn,
197
203
  .k-scheduler-content tr.k-state-hover .k-scheduler-datecolumn,
198
- .k-scheduler-content tr.k-state-hover .k-scheduler-groupcolumn {
204
+ .k-scheduler-content tr.k-hover .k-scheduler-datecolumn,
205
+ .k-scheduler-content tr.k-state-hover .k-scheduler-groupcolumn ,
206
+ .k-scheduler-content tr.k-hover .k-scheduler-groupcolumn {
199
207
  @include fill(
200
208
  $scheduler-text,
201
209
  $scheduler-bg,
@@ -204,11 +212,14 @@
204
212
  }
205
213
 
206
214
  // Selected
207
- .k-scheduler-content tr.k-state-selected {
215
+ .k-scheduler-content tr.k-state-selected ,
216
+ .k-scheduler-content tr.k-selected {
208
217
  background-color: rgba($selected-bg, .25);
209
218
  }
210
219
  .k-scheduler-content tr.k-state-selected .k-scheduler-datecolumn,
211
- .k-scheduler-content tr.k-state-selected .k-scheduler-groupcolumn {
220
+ .k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
221
+ .k-scheduler-content tr.k-state-selected .k-scheduler-groupcolumn ,
222
+ .k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
212
223
  background-color: $scheduler-bg;
213
224
  }
214
225
  }
@@ -225,7 +236,8 @@
225
236
  @include fill( $bg: $scheduler-yearview-indicator-bg );
226
237
  }
227
238
 
228
- .k-state-selected .k-day-indicator {
239
+ .k-state-selected .k-day-indicator ,
240
+ .k-selected .k-day-indicator {
229
241
  @include fill( $bg: $scheduler-yearview-indicator-selected-bg );
230
242
  }
231
243
  }
@@ -49,7 +49,8 @@
49
49
  -webkit-tap-highlight-color: $scrollview-arrow-tap-highlight-color;
50
50
 
51
51
  &:focus,
52
- &.k-state-focus {
52
+ &.k-state-focus ,
53
+ &.k-focus {
53
54
  color: $scrollview-navigation-color;
54
55
  opacity: $scrollview-navigation-hover-opacity;
55
56
 
@@ -59,7 +60,8 @@
59
60
  }
60
61
 
61
62
  &:hover,
62
- &.k-state-hover {
63
+ &.k-state-hover ,
64
+ &.k-hover {
63
65
  color: $scrollview-navigation-color;
64
66
  opacity: $scrollview-navigation-hover-opacity;
65
67
 
@@ -78,13 +80,15 @@
78
80
  }
79
81
 
80
82
  &:focus,
81
- &.k-state-focused {
83
+ &.k-state-focused ,
84
+ &.k-focus {
82
85
  box-shadow: $scrollview-pagebutton-shadow;
83
86
  }
84
87
  }
85
88
 
86
89
  .k-scrollview-nav > .k-link:hover,
87
- .k-scrollview-nav > .k-link.k-state-hover {
90
+ .k-scrollview-nav > .k-link.k-state-hover ,
91
+ .k-scrollview-nav > .k-link.k-hover {
88
92
  box-shadow: $scrollview-pagebutton-shadow;
89
93
  }
90
94
 
@@ -44,7 +44,8 @@
44
44
  }
45
45
 
46
46
 
47
- &.k-state-disabled {
47
+ &.k-state-disabled ,
48
+ &.k-disabled {
48
49
  .k-tick,
49
50
  .k-slider-track,
50
51
  .k-draghandle {
@@ -47,18 +47,21 @@
47
47
  }
48
48
 
49
49
  &:focus,
50
- &.k-state-focused {
50
+ &.k-state-focused ,
51
+ &.k-focus {
51
52
  @include box-shadow( $slider-draghandle-focused-shadow );
52
53
  }
53
54
  }
54
55
 
55
- &.k-state-focused {
56
+ &.k-state-focused ,
57
+ &.k-focus {
56
58
  .k-draghandle {
57
59
  @include box-shadow( $slider-draghandle-focused-shadow );
58
60
  }
59
61
  }
60
62
 
61
- &.k-state-disabled {
63
+ &.k-state-disabled ,
64
+ &.k-disabled {
62
65
  opacity: $slider-disabled-opacity;
63
66
  }
64
67
  }
@@ -15,6 +15,7 @@
15
15
  }
16
16
  .k-splitbar:hover,
17
17
  .k-splitbar.k-state-hover,
18
+ .k-splitbar.k-hover,
18
19
  .k-splitbar-horizontal-hover,
19
20
  .k-splitbar-vertical-hover {
20
21
  color: $splitbar-hover-text;
@@ -22,7 +23,9 @@
22
23
  }
23
24
  .k-splitbar:focus,
24
25
  .k-splitbar.k-state-focus,
25
- .k-splitbar.k-state-focused {
26
+ .k-splitbar.k-focus,
27
+ .k-splitbar.k-state-focused ,
28
+ .k-splitbar.k-focus {
26
29
  color: $splitbar-selected-text;
27
30
  background: $splitbar-selected-bg;
28
31
  }
@@ -257,7 +257,8 @@
257
257
  overflow: hidden;
258
258
 
259
259
  // disabled cells in the Spreadsheet should allow navigation if link is used
260
- .k-state-disabled {
260
+ .k-state-disabled ,
261
+ .k-disabled {
261
262
  pointer-events: auto;
262
263
  }
263
264
  }
@@ -818,7 +819,8 @@
818
819
  background-position: 50% 50%;
819
820
 
820
821
  &:hover div,
821
- &.k-state-hovered div {
822
+ &.k-state-hovered div ,
823
+ &.k-hover div {
822
824
  margin: 0;
823
825
  align-self: center;
824
826
  opacity: 1;
@@ -883,7 +885,8 @@
883
885
  .k-spreadsheet-insert-image-dialog {
884
886
  .k-spreadsheet-has-image {
885
887
  &:hover,
886
- &.k-state-hovered {
888
+ &.k-state-hovered ,
889
+ &.k-hover {
887
890
  border-radius: $spreadsheet-insert-image-dialog-preview-overlay-border-radius;
888
891
  }
889
892
  }
@@ -142,7 +142,8 @@
142
142
  );
143
143
  }
144
144
 
145
- &.k-state-active {
145
+ &.k-state-active ,
146
+ &.k-active {
146
147
  @include fill(
147
148
  $kendo-button-active-text,
148
149
  $kendo-button-active-bg,
@@ -159,7 +160,8 @@
159
160
  > .k-menu,
160
161
  > .k-menu:not(.k-context-menu) {
161
162
 
162
- .k-item.k-state-hover {
163
+ .k-item.k-state-hover ,
164
+ .k-item.k-hover {
163
165
  @include fill(
164
166
  $kendo-list-item-hover-text,
165
167
  $kendo-list-item-hover-bg
@@ -189,7 +191,8 @@
189
191
  .k-button {}
190
192
 
191
193
  .k-button:hover,
192
- .k-button.k-state-hover {
194
+ .k-button.k-state-hover ,
195
+ .k-button.k-hover {
193
196
  @include fill(
194
197
  $kendo-list-item-hover-text,
195
198
  $kendo-list-item-hover-bg
@@ -197,7 +200,9 @@
197
200
  }
198
201
  .k-button:active,
199
202
  .k-button.k-state-active,
200
- .k-button.k-state-selected {
203
+ .k-button.k-active,
204
+ .k-button.k-state-selected ,
205
+ .k-button.k-selected {
201
206
  @include fill(
202
207
  $kendo-list-item-selected-text,
203
208
  $kendo-list-item-selected-bg
@@ -218,12 +223,14 @@
218
223
 
219
224
  .k-spreadsheet-has-image {
220
225
  &:hover,
221
- &.k-state-hovered {
226
+ &.k-state-hovered ,
227
+ &.k-hover {
222
228
  box-shadow: $spreadsheet-insert-image-dialog-preview-overlay-shadow;
223
229
  }
224
230
 
225
231
  &:hover div,
226
- &.k-state-hovered div {
232
+ &.k-state-hovered div ,
233
+ &.k-hover div {
227
234
  color: $spreadsheet-insert-image-dialog-overlay-hovered-text;
228
235
  }
229
236
  }
@@ -136,7 +136,8 @@
136
136
  opacity: $stepper-optional-label-opacity;
137
137
  }
138
138
  .k-step-disabled .k-step-label-optional,
139
- &.k-state-disabled .k-step-label-optional {
139
+ &.k-state-disabled .k-step-label-optional ,
140
+ &.k-disabled .k-step-label-optional {
140
141
  color: inherit;
141
142
  }
142
143
 
@@ -182,7 +182,8 @@
182
182
  $bg: $stepper-progressbar-bg
183
183
  );
184
184
 
185
- .k-state-selected {
185
+ .k-state-selected ,
186
+ .k-selected {
186
187
  @include fill(
187
188
  $color: $stepper-progressbar-fill-text,
188
189
  $bg: $stepper-progressbar-fill-bg
@@ -97,12 +97,14 @@
97
97
  position: relative;
98
98
  z-index: 1;
99
99
 
100
- &.k-state-active {
100
+ &.k-state-active ,
101
+ &.k-active {
101
102
  display: block;
102
103
  }
103
104
 
104
105
  &:focus,
105
- &.k-state-focused {
106
+ &.k-state-focused ,
107
+ &.k-focus {
106
108
  outline-width: 1px;
107
109
  outline-style: dotted;
108
110
  outline-offset: -1px;
@@ -190,7 +192,8 @@
190
192
  margin-left: $tabstrip-item-gap;
191
193
  }
192
194
 
193
- .k-item.k-state-active {
195
+ .k-item.k-state-active ,
196
+ .k-item.k-active {
194
197
  border-bottom-color: transparent;
195
198
  }
196
199
  }
@@ -219,7 +222,8 @@
219
222
  margin-left: $tabstrip-item-gap;
220
223
  }
221
224
 
222
- .k-item.k-state-active {
225
+ .k-item.k-state-active ,
226
+ .k-item.k-active {
223
227
  border-top-color: transparent;
224
228
  }
225
229
  }
@@ -252,7 +256,8 @@
252
256
  margin-top: $tabstrip-item-gap;
253
257
  }
254
258
 
255
- .k-item.k-state-active {
259
+ .k-item.k-state-active ,
260
+ .k-item.k-active {
256
261
  border-right-color: transparent;
257
262
  }
258
263
  }
@@ -287,7 +292,8 @@
287
292
  margin-top: $tabstrip-item-gap;
288
293
  }
289
294
 
290
- .k-item.k-state-active {
295
+ .k-item.k-state-active ,
296
+ .k-item.k-active {
291
297
  border-left-color: transparent;
292
298
  }
293
299
  }
@@ -332,7 +338,8 @@
332
338
  border-left-width: $tabstrip-indicator-size;
333
339
  }
334
340
  }
335
- .k-item.k-state-active::after {
341
+ .k-item.k-state-active::after ,
342
+ .k-item.k-active::after {
336
343
  display: block;
337
344
  }
338
345
 
@@ -27,7 +27,8 @@
27
27
  );
28
28
 
29
29
  &:hover,
30
- &.k-state-hover {
30
+ &.k-state-hover ,
31
+ &.k-hover {
31
32
  @include fill(
32
33
  $tabstrip-item-hovered-text,
33
34
  $tabstrip-item-hovered-bg,
@@ -38,7 +39,9 @@
38
39
 
39
40
  &:active,
40
41
  &.k-state-active,
41
- &.k-state-selected {
42
+ &.k-active,
43
+ &.k-state-selected ,
44
+ &.k-selected {
42
45
  @include fill(
43
46
  $tabstrip-item-selected-text,
44
47
  $tabstrip-item-selected-bg,
@@ -48,7 +51,8 @@
48
51
  }
49
52
 
50
53
  &:focus,
51
- &.k-state-focused {
54
+ &.k-state-focused ,
55
+ &.k-focus {
52
56
  @include box-shadow( $tabstrip-item-focused-shadow );
53
57
  }
54
58
 
@@ -70,7 +74,8 @@
70
74
  );
71
75
 
72
76
  &:focus,
73
- &.k-state-focused {
77
+ &.k-state-focused ,
78
+ &.k-focus {
74
79
  outline-color: $tabstrip-content-border-focused;
75
80
  }
76
81
  }
@@ -80,7 +85,8 @@
80
85
  @if ($tabstrip-indicator-size) {
81
86
 
82
87
  .k-tabstrip-items-wrapper {
83
- .k-item.k-state-active::after {
88
+ .k-item.k-state-active::after ,
89
+ .k-item.k-active::after {
84
90
  border-color: $tabstrip-indicator-color;
85
91
  }
86
92
  }
@@ -28,7 +28,8 @@
28
28
  );
29
29
  }
30
30
  .k-taskboard-column:focus,
31
- .k-taskboard-column.k-state-focus {
31
+ .k-taskboard-column.k-state-focus ,
32
+ .k-taskboard-column.k-focus {
32
33
  @include fill(
33
34
  $taskboard-column-focus-text,
34
35
  $taskboard-column-focus-bg,
@@ -9,7 +9,8 @@
9
9
  .k-tilelayout-item:focus,
10
10
  .k-tilelayout-item.k-focus,
11
11
  .k-tilelayout-item.k-state-focus,
12
- .k-tilelayout-item.k-state-focused {
12
+ .k-tilelayout-item.k-state-focused ,
13
+ .k-tilelayout-item.k-focus {
13
14
  @include box-shadow($tilelayout-card-focus-shadow);
14
15
  }
15
16
 
@@ -41,7 +41,8 @@
41
41
  color: $body-text;
42
42
  }
43
43
 
44
- .k-timeline-arrow.k-state-disabled {
44
+ .k-timeline-arrow.k-state-disabled ,
45
+ .k-timeline-arrow.k-disabled {
45
46
  opacity: 1; // The arrow button in disabled mode should have a solid background
46
47
  color: $timeline-track-arrow-disabled-text;
47
48
  background-color: $timeline-track-arrow-disabled-bg;
@@ -61,7 +62,8 @@
61
62
  background-color: $timeline-flag-bg;
62
63
  }
63
64
 
64
- .k-timeline-track-item.k-state-focus .k-timeline-circle {
65
+ .k-timeline-track-item.k-state-focus .k-timeline-circle ,
66
+ .k-timeline-track-item.k-focus .k-timeline-circle {
65
67
  @include box-shadow( $timeline-track-item-focus-shadow );
66
68
  }
67
69
  }