@progress/kendo-theme-core 11.0.0-dev.0 → 11.0.0-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 (51) hide show
  1. package/package.json +2 -2
  2. package/scss/components/action-sheet/_layout.scss +2 -1
  3. package/scss/components/action-sheet/_variables.scss +2 -0
  4. package/scss/components/bottom-navigation/_theme.scss +5 -5
  5. package/scss/components/button/_layout.scss +1 -0
  6. package/scss/components/button/_theme.scss +20 -20
  7. package/scss/components/button/_variables.scss +1 -0
  8. package/scss/components/calendar/_layout.scss +3 -1
  9. package/scss/components/calendar/_theme.scss +4 -1
  10. package/scss/components/calendar/_variables.scss +7 -1
  11. package/scss/components/chat/_theme.scss +1 -1
  12. package/scss/components/chip/_layout.scss +1 -0
  13. package/scss/components/chip/_theme.scss +36 -19
  14. package/scss/components/chip/_variables.scss +6 -0
  15. package/scss/components/colorgradient/_layout.scss +1 -10
  16. package/scss/components/colorgradient/_variables.scss +0 -6
  17. package/scss/components/dialog/_theme.scss +3 -0
  18. package/scss/components/dialog/_variables.scss +2 -0
  19. package/scss/components/drawer/_layout.scss +6 -2
  20. package/scss/components/drawer/_theme.scss +5 -0
  21. package/scss/components/drawer/_variables.scss +7 -0
  22. package/scss/components/editor/_theme.scss +3 -3
  23. package/scss/components/fab/_theme.scss +1 -1
  24. package/scss/components/floating-label/_theme.scss +1 -1
  25. package/scss/components/forms/_theme.scss +4 -4
  26. package/scss/components/gantt/_theme.scss +3 -3
  27. package/scss/components/input/_layout.scss +1 -5
  28. package/scss/components/list/_layout.scss +21 -4
  29. package/scss/components/list/_variables.scss +24 -0
  30. package/scss/components/menu/_layout.scss +2 -0
  31. package/scss/components/menu/_variables.scss +2 -0
  32. package/scss/components/messagebox/_theme.scss +6 -6
  33. package/scss/components/notification/_layout.scss +2 -0
  34. package/scss/components/notification/_variables.scss +2 -0
  35. package/scss/components/pager/_layout.scss +0 -3
  36. package/scss/components/panel/_theme.scss +3 -3
  37. package/scss/components/pivotgrid/_theme.scss +1 -1
  38. package/scss/components/progressbar/_theme.scss +1 -1
  39. package/scss/components/scheduler/_theme.scss +3 -3
  40. package/scss/components/slider/_layout.scss +2 -2
  41. package/scss/components/slider/_theme.scss +5 -0
  42. package/scss/components/slider/_variables.scss +3 -0
  43. package/scss/components/stepper/_theme.scss +8 -8
  44. package/scss/components/switch/_theme.scss +20 -2
  45. package/scss/components/switch/_variables.scss +10 -0
  46. package/scss/components/tabstrip/_layout.scss +0 -1
  47. package/scss/components/tabstrip/_theme.scss +15 -3
  48. package/scss/components/tabstrip/_variables.scss +0 -1
  49. package/scss/components/timeselector/_theme.scss +5 -4
  50. package/scss/components/timeselector/_variables.scss +3 -0
  51. package/scss/components/typography/_theme.scss +2 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-core",
3
3
  "description": "A collection of functions and mixins used for building themes for Kendo UI",
4
- "version": "11.0.0-dev.0",
4
+ "version": "11.0.0-dev.1",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -45,5 +45,5 @@
45
45
  "directories": {
46
46
  "doc": "docs"
47
47
  },
48
- "gitHead": "b83fa9575266e751edf9317822154d05a4fc566a"
48
+ "gitHead": "57358fb664667fda76ce2febcd9bf331796b263c"
49
49
  }
@@ -184,6 +184,7 @@
184
184
  }
185
185
  .k-actionsheet-item-description {
186
186
  font-size: $kendo-actionsheet-item-description-font-size;
187
+ line-height: $kendo-actionsheet-item-description-line-height;
187
188
  }
188
189
 
189
190
 
@@ -250,6 +251,7 @@
250
251
  max-width: 100%;
251
252
  width: 100%;
252
253
  font-size: $kendo-adaptive-actionsheet-font-size;
254
+ line-height: $kendo-adaptive-actionsheet-line-height;
253
255
 
254
256
  .k-actionsheet-titlebar {
255
257
  padding-block: $kendo-adaptive-actionsheet-titlebar-padding-y;
@@ -372,7 +374,6 @@
372
374
 
373
375
  .k-colorgradient-canvas {
374
376
  .k-hsv-gradient {
375
- aspect-ratio: 1;
376
377
  height: 100%;
377
378
  }
378
379
  }
@@ -59,6 +59,7 @@ $kendo-actionsheet-item-title-font-weight: null !default;
59
59
  $kendo-actionsheet-item-title-text-transform: null !default;
60
60
 
61
61
  $kendo-actionsheet-item-description-font-size: null !default;
62
+ $kendo-actionsheet-item-description-line-height: null !default;
62
63
  $kendo-actionsheet-item-description-text: null !default;
63
64
 
64
65
  $kendo-actionsheet-item-hover-bg: null !default;
@@ -85,6 +86,7 @@ $kendo-actionsheet-item-disabled-opacity: null !default;
85
86
 
86
87
  // Adaptive Actionsheet
87
88
  $kendo-adaptive-actionsheet-font-size: null !default;
89
+ $kendo-adaptive-actionsheet-line-height: null !default;
88
90
  $kendo-adaptive-actionsheet-titlebar-padding-y: null !default;
89
91
  $kendo-adaptive-actionsheet-titlebar-padding-x: null !default;
90
92
 
@@ -10,17 +10,17 @@
10
10
  @each $name, $color in $kendo-bottom-navigation-theme-colors {
11
11
  .k-bottom-nav-solid-#{$name} {
12
12
  @include fill(
13
- $color: color-mix(in srgb, k-color( on-#{$name} ) 65%, transparent),
13
+ $color: color-mix(in srgb, k-color(on-#{$name}) 65%, transparent),
14
14
  $bg: $color
15
15
  );
16
16
 
17
17
  .k-bottom-nav-item.k-focus,
18
18
  .k-bottom-nav-item:focus {
19
- @include fill( $bg: color-mix(in srgb, k-color( on-#{$name} ) 12.5%, transparent));
19
+ @include fill( $bg: color-mix(in srgb, k-color(on-#{$name}) 12.5%, transparent));
20
20
  }
21
21
 
22
22
  .k-bottom-nav-item.k-selected {
23
- @include fill( $color: k-color( on-#{$name} ));
23
+ @include fill( $color: k-color(on-#{$name}));
24
24
  }
25
25
  }
26
26
  // TODO: remove when suites update class names
@@ -40,12 +40,12 @@
40
40
 
41
41
  .k-bottom-nav-item.k-focus,
42
42
  .k-bottom-nav-item:focus {
43
- @include fill( $bg: color-mix(in srgb, k-color( on-app-surface ) 5%, transparent));
43
+ @include fill( $bg: color-mix(in srgb, k-color(on-app-surface) 5%, transparent));
44
44
  }
45
45
 
46
46
  .k-bottom-nav-item.k-selected {
47
47
  @if $name == "secondary" or $name == "light" {
48
- @include fill( $color: k-color( #{$name} ));
48
+ @include fill( $color: k-color(#{$name}));
49
49
  } @else {
50
50
  @include fill( $color: $color );
51
51
  }
@@ -15,6 +15,7 @@
15
15
  color: inherit;
16
16
  background: none;
17
17
  font-family: $kendo-button-font-family;
18
+ font-weight: $kendo-button-font-weight;
18
19
  text-align: center;
19
20
  text-decoration: none;
20
21
  white-space: nowrap;
@@ -110,7 +110,7 @@
110
110
  &:focus,
111
111
  &.k-focus {
112
112
  @if ( $kendo-solid-button-shadow ) {
113
- @include focus-indicator( 0 0 $kendo-solid-button-shadow-blur $kendo-solid-button-shadow-spread color-mix(in srgb, k-color( $name ) ( $kendo-solid-button-shadow-opacity * 100% ), transparent), true, true );
113
+ @include focus-indicator( 0 0 $kendo-solid-button-shadow-blur $kendo-solid-button-shadow-spread color-mix(in srgb, k-color($name) ( $kendo-solid-button-shadow-opacity * 100% ), transparent), true, true );
114
114
  }
115
115
  }
116
116
 
@@ -150,7 +150,7 @@
150
150
 
151
151
 
152
152
  // Outline button
153
- @each $name, $color in map.merge( $kendo-button-theme-colors, ( "base": k-color( on-app-surface ) ) ) {
153
+ @each $name, $color in map.merge( $kendo-button-theme-colors, ( "base": k-color(on-app-surface) ) ) {
154
154
  .k-button-outline-#{$name} {
155
155
  @include box-shadow( none );
156
156
  border-color: currentColor;
@@ -162,13 +162,13 @@
162
162
  &.k-hover {
163
163
  @if $name == "base" {
164
164
  @include fill(
165
- k-color( base ),
166
- k-color( on-base ),
167
- k-color( on-base )
165
+ k-color(base),
166
+ k-color(on-base),
167
+ k-color(on-base)
168
168
  );
169
169
  } @else {
170
170
  @include fill(
171
- k-color( on-#{$name} ),
171
+ k-color(on-#{$name}),
172
172
  $color,
173
173
  $color
174
174
  );
@@ -180,9 +180,9 @@
180
180
  &.k-focus {
181
181
  @if $kendo-outline-button-shadow {
182
182
  @if $name == "base" {
183
- @include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread color-mix(in srgb, k-color( on-app-surface ) ( $kendo-outline-button-shadow-opacity * 100% ), transparent), true, true );
183
+ @include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread color-mix(in srgb, k-color(on-app-surface ) ( $kendo-outline-button-shadow-opacity * 100% ), transparent), true, true );
184
184
  } @else {
185
- @include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread color-mix(in srgb, k-color( $name ) ( $kendo-outline-button-shadow-opacity * 100% ), transparent), true, true );
185
+ @include focus-indicator( 0 0 $kendo-outline-button-shadow-blur $kendo-outline-button-shadow-spread color-mix(in srgb, k-color($name ) ( $kendo-outline-button-shadow-opacity * 100% ), transparent), true, true );
186
186
  }
187
187
  }
188
188
  }
@@ -192,13 +192,13 @@
192
192
  &.k-active {
193
193
  @if $name == "base" {
194
194
  @include fill(
195
- k-color( base ),
196
- k-color( on-base ),
197
- k-color( on-base )
195
+ k-color(base ),
196
+ k-color(on-base ),
197
+ k-color(on-base )
198
198
  );
199
199
  } @else {
200
200
  @include fill(
201
- k-color( on-#{$name} ),
201
+ k-color(on-#{$name} ),
202
202
  $color,
203
203
  $color
204
204
  );
@@ -209,13 +209,13 @@
209
209
  &.k-selected {
210
210
  @if $name == "base" {
211
211
  @include fill(
212
- k-color( base ),
213
- k-color( on-base ),
214
- k-color( on-base )
212
+ k-color(base ),
213
+ k-color(on-base ),
214
+ k-color(on-base )
215
215
  );
216
216
  } @else {
217
217
  @include fill(
218
- k-color( on-#{$name} ),
218
+ k-color(on-#{$name} ),
219
219
  $color,
220
220
  $color
221
221
  );
@@ -250,7 +250,7 @@
250
250
 
251
251
 
252
252
  // Link button
253
- @each $name, $color in map.merge( $kendo-button-theme-colors, ( "base": k-color( on-app-surface ) ) ) {
253
+ @each $name, $color in map.merge( $kendo-button-theme-colors, ( "base": k-color(on-app-surface ) ) ) {
254
254
  .k-button-link-#{$name} {
255
255
  color: $color;
256
256
 
@@ -269,9 +269,9 @@
269
269
  &.k-focus {
270
270
  @if ( $kendo-link-button-shadow ) {
271
271
  @if $name == "base" {
272
- @include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread color-mix(in srgb, k-color( on-app-surface ) ( $kendo-link-button-shadow-opacity * 100% ), transparent), true, true );
272
+ @include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread color-mix(in srgb, k-color(on-app-surface ) ( $kendo-link-button-shadow-opacity * 100% ), transparent), true, true );
273
273
  } @else {
274
- @include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread color-mix(in srgb, k-color( $name ) ( $kendo-link-button-shadow-opacity * 100% ), transparent), true, true );
274
+ @include focus-indicator( 0 0 $kendo-link-button-shadow-blur $kendo-link-button-shadow-spread color-mix(in srgb, k-color($name ) ( $kendo-link-button-shadow-opacity * 100% ), transparent), true, true );
275
275
  }
276
276
  }
277
277
  }
@@ -305,7 +305,7 @@
305
305
 
306
306
 
307
307
  // Clear button
308
- @each $name, $color in map.merge( $kendo-button-theme-colors, ( "base": k-color( on-app-surface ) ) ) {
308
+ @each $name, $color in map.merge( $kendo-button-theme-colors, ( "base": k-color(on-app-surface ) ) ) {
309
309
  .k-button-clear-#{$name} {
310
310
  color: k-color(#{$name}-on-surface);
311
311
 
@@ -15,6 +15,7 @@ $kendo-button-md-padding-y: null !default;
15
15
  $kendo-button-lg-padding-y: null !default;
16
16
 
17
17
  $kendo-button-font-family: null !default;
18
+ $kendo-button-font-weight: null !default;
18
19
 
19
20
  $kendo-button-font-size: null !default;
20
21
  $kendo-button-sm-font-size: null !default;
@@ -12,6 +12,7 @@
12
12
  block-size: var( --INTERNAL--kendo-calendar-height, min-content );
13
13
  border-width: $kendo-calendar-border-width;
14
14
  border-style: solid;
15
+ border-radius: $kendo-calendar-border-radius;
15
16
  box-sizing: border-box;
16
17
  outline: 0;
17
18
  font-family: $kendo-calendar-font-family;
@@ -177,7 +178,8 @@
177
178
  overflow: hidden;
178
179
 
179
180
  .k-today {
180
- font-weight: bold;
181
+ font-weight: $kendo-calendar-today-font-weight;
182
+ box-shadow: $kendo-calendar-today-box-shadow;
181
183
  }
182
184
  }
183
185
 
@@ -128,6 +128,10 @@
128
128
  );
129
129
  }
130
130
 
131
+ .k-calendar-navigation-marker {
132
+ color: $kendo-calendar-navigation-marker-text;
133
+ }
134
+
131
135
  // Invalid
132
136
  &.k-invalid,
133
137
  &.k-invalid:hover,
@@ -159,7 +163,6 @@
159
163
  .k-calendar { // stylelint-disable-line
160
164
 
161
165
  $kendo-calendar-range-gap: k-spacing(1px) !default;
162
- $kendo-calendar-range-bg: color-mix(in srgb, k-color(primary) 25%, transparent);
163
166
  $kendo-calendar-range-split-size: 5px !default;
164
167
 
165
168
  .k-range-start,
@@ -5,6 +5,7 @@ $kendo-calendar-border-width: null !default;
5
5
  $kendo-calendar-font-family: null !default;
6
6
  $kendo-calendar-font-size: null !default;
7
7
  $kendo-calendar-line-height: null !default;
8
+ $kendo-calendar-border-radius: null !default;
8
9
 
9
10
  $kendo-calendar-cell-size: null !default;
10
11
 
@@ -66,6 +67,8 @@ $kendo-calendar-weekend-text: null !default;
66
67
 
67
68
  $kendo-calendar-today-style: null !default;
68
69
  $kendo-calendar-today-color: null !default;
70
+ $kendo-calendar-today-font-weight: null !default;
71
+ $kendo-calendar-today-box-shadow: null !default;
69
72
 
70
73
  $kendo-calendar-week-number-bg: null !default;
71
74
  $kendo-calendar-week-number-text: null !default;
@@ -106,6 +109,10 @@ $kendo-calendar-navigation-border: null !default;
106
109
 
107
110
  $kendo-calendar-navigation-hover-text: null !default;
108
111
 
112
+ $kendo-calendar-navigation-marker-text: null !default;
113
+
114
+ $kendo-calendar-range-bg: null !default;
115
+
109
116
  $kendo-infinite-calendar-header-padding-x: null !default;
110
117
  $kendo-infinite-calendar-header-padding-y: null !default;
111
118
 
@@ -114,7 +121,6 @@ $kendo-infinite-calendar-view-padding-y: null !default;
114
121
 
115
122
  $kendo-infinite-calendar-view-height: null !default;
116
123
 
117
-
118
124
  // Multiview calendar
119
125
 
120
126
  $kendo-calendar-range-cell-border-radius: null !default;
@@ -83,7 +83,7 @@
83
83
 
84
84
  &:focus,
85
85
  &.k-focus {
86
- @include focus-indicator( 0 0 $kendo-chat-quick-reply-shadow-blur $kendo-chat-quick-reply-shadow-spread color-mix(in srgb, k-color( 'primary' ) ( $kendo-chat-quick-reply-shadow-opacity * 100% ), transparent), true, true );
86
+ @include focus-indicator( 0 0 $kendo-chat-quick-reply-shadow-blur $kendo-chat-quick-reply-shadow-spread color-mix(in srgb, k-color(primary) ( $kendo-chat-quick-reply-shadow-opacity * 100% ), transparent), true, true );
87
87
  }
88
88
  }
89
89
  }
@@ -11,6 +11,7 @@
11
11
  border-style: solid;
12
12
  outline: 0;
13
13
  font-family: var( --kendo-font-family, inherit );
14
+ font-weight: $kendo-chip-font-weight;
14
15
  font-size: $kendo-chip-font-size;
15
16
  line-height: $kendo-chip-line-height;
16
17
  display: inline-flex;
@@ -35,26 +35,36 @@
35
35
  }
36
36
  } @else {
37
37
  @include fill(
38
- k-color( #{$name}-on-subtle ),
39
- k-color( #{$name}-subtle ),
40
- k-color( #{$name}-emphasis ),
38
+ k-color(#{$name}-on-subtle),
39
+ k-color(#{$name}-subtle),
40
+ k-color(#{$name}-emphasis),
41
41
  $kendo-chip-solid-gradient
42
42
  );
43
43
 
44
44
  &:focus,
45
45
  &.k-focus {
46
- @include focus-indicator( 0 0 0 2px color-mix(in srgb, k-color( $name ) 16%, transparent));
46
+ @include focus-indicator( 0 0 0 2px color-mix(in srgb, k-color($name) 16%, transparent));
47
47
  }
48
48
 
49
49
  &:hover,
50
50
  &.k-hover {
51
- @include fill( $bg: k-color( #{$name}-subtle-hover ));
51
+ @include fill( $bg: k-color(#{$name}-subtle-hover));
52
52
  }
53
53
 
54
54
  &.k-selected {
55
- @include fill( $bg: k-color( #{$name}-subtle-active ));
55
+ @include fill( $bg: k-color(#{$name}-subtle-active));
56
56
  }
57
57
  }
58
+
59
+ // Disabled state
60
+ &:disabled,
61
+ &.k-disabled {
62
+ @include fill(
63
+ $kendo-chip-disabled-text,
64
+ $kendo-chip-disabled-bg,
65
+ $kendo-chip-disabled-border,
66
+ );
67
+ }
58
68
  }
59
69
  }
60
70
 
@@ -90,59 +100,66 @@
90
100
  }
91
101
  } @else if ($name == "warning") {
92
102
  @include fill(
93
- k-color( on-app-surface ),
103
+ k-color(on-app-surface),
94
104
  transparent,
95
105
  $color
96
106
  );
97
107
 
98
108
  &:focus,
99
109
  &.k-focus {
100
- @include focus-indicator( 0 0 0 2px color-mix(in srgb, k-color( $name ) 16%, transparent));
110
+ @include focus-indicator( 0 0 0 2px color-mix(in srgb, k-color($name) 16%, transparent));
101
111
  }
102
112
 
103
113
  &:hover,
104
114
  &.k-hover {
105
115
  @include fill(
106
- $color: k-color( on-#{$name} ),
116
+ $color: k-color(on-#{$name}),
107
117
  $bg: $color
108
118
  );
109
119
  }
110
120
 
111
121
  &.k-selected {
112
122
  @include fill(
113
- $color: k-color( on-#{$name} ),
123
+ $color: k-color(on-#{$name}),
114
124
  $bg: $color
115
125
  );
116
126
  }
117
127
  } @else {
118
128
  @include fill(
119
- k-color( #{$name}-on-surface ),
129
+ k-color(#{$name}-on-surface),
120
130
  transparent,
121
- k-color( #{$name}-on-surface )
131
+ k-color(#{$name}-on-surface)
122
132
  );
123
133
 
124
134
  &:focus,
125
135
  &.k-focus {
126
- @include focus-indicator( 0 0 0 2px color-mix(in srgb, k-color( $name ) 16%, transparent));
136
+ @include focus-indicator( 0 0 0 2px color-mix(in srgb, k-color($name) 16%, transparent));
127
137
  }
128
138
 
129
139
  &:hover,
130
140
  &.k-hover {
131
141
  @include fill(
132
- k-color( on-#{$name} ),
133
- k-color( #{$name}-hover ),
134
- k-color( #{$name}-hover )
142
+ k-color(on-#{$name}),
143
+ k-color(#{$name}-hover),
144
+ k-color(#{$name}-hover)
135
145
  );
136
146
  }
137
147
 
138
148
  &.k-selected {
139
149
  @include fill(
140
- k-color( on-#{$name} ),
141
- k-color( #{$name}-active ),
142
- k-color( #{$name}-active )
150
+ k-color(on-#{$name}),
151
+ k-color(#{$name}-active),
152
+ k-color(#{$name}-active)
143
153
  );
144
154
  }
145
155
  }
156
+
157
+ // Disabled state
158
+ &:disabled,
159
+ &.k-disabled {
160
+ color: $kendo-chip-disabled-text;
161
+ border-color: $kendo-chip-disabled-text;
162
+ }
146
163
  }
147
164
  }
148
165
 
@@ -13,6 +13,8 @@ $kendo-chip-sm-padding-y: null !default;
13
13
  $kendo-chip-md-padding-y: null !default;
14
14
  $kendo-chip-lg-padding-y: null !default;
15
15
 
16
+ $kendo-chip-font-weight: null !default;
17
+
16
18
  $kendo-chip-font-size: null !default;
17
19
  $kendo-chip-sm-font-size: null !default;
18
20
  $kendo-chip-md-font-size: null !default;
@@ -58,6 +60,10 @@ $kendo-chip-outline-hover-text: null !default;
58
60
  $kendo-chip-outline-selected-bg: null !default;
59
61
  $kendo-chip-outline-selected-text: null !default;
60
62
 
63
+ $kendo-chip-disabled-bg: null !default;
64
+ $kendo-chip-disabled-text: null !default;
65
+ $kendo-chip-disabled-border: null !default;
66
+
61
67
  // Chip List
62
68
 
63
69
  $kendo-chip-list-sizes: null !default;
@@ -46,6 +46,7 @@
46
46
 
47
47
  .k-hsv-gradient {
48
48
  @include border-radius( $kendo-color-gradient-canvas-border-radius );
49
+ aspect-ratio: 1;
49
50
  height: $kendo-color-gradient-canvas-rectangle-height;
50
51
  }
51
52
 
@@ -133,8 +134,6 @@
133
134
  @each $size, $size-props in $kendo-color-gradient-sizes {
134
135
  $_width: map.get( $size-props, width );
135
136
  $_gap: map.get( $size-props, gap );
136
- $_vertical-slider-height: map.get( $size-props, vertical-slider-height );
137
- $_rectangle-height: map.get( $size-props, rectangle-height );
138
137
  $_input-width: map.get( $size-props, input-width );
139
138
  $_canvas-gap: map.get( $size-props, canvas-gap );
140
139
  $_padding-x: map.get( $size-props, padding-x );
@@ -155,14 +154,6 @@
155
154
  .k-colorgradient-canvas {
156
155
  gap: $_canvas-gap;
157
156
 
158
- .k-hsv-gradient {
159
- height: $_rectangle-height;
160
- }
161
-
162
- .k-slider-vertical {
163
- height: $_vertical-slider-height;
164
- }
165
-
166
157
  .k-hsv-controls {
167
158
  gap: $_canvas-gap;
168
159
  }
@@ -36,9 +36,6 @@ $kendo-color-gradient-focus-shadow: null !default;
36
36
  $kendo-color-gradient-canvas-border-radius: null !default;
37
37
  $kendo-color-gradient-canvas-gap: null !default;
38
38
  $kendo-color-gradient-canvas-rectangle-height: null !default;
39
- $kendo-color-gradient-sm-canvas-rectangle-height: null !default;
40
- $kendo-color-gradient-md-canvas-rectangle-height: null !default;
41
- $kendo-color-gradient-lg-canvas-rectangle-height: null !default;
42
39
 
43
40
  $kendo-color-gradient-sm-canvas-gap: null !default;
44
41
  $kendo-color-gradient-md-canvas-gap: null !default;
@@ -51,9 +48,6 @@ $kendo-color-gradient-slider-draghandle-border-width: null !default;
51
48
  $kendo-color-gradient-slider-vertical-size: null !default;
52
49
  $kendo-color-gradient-slider-horizontal-size: null !default;
53
50
  $kendo-color-gradient-slider-alpha-bgr: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAuSURBVHgBxYyxDQAwDMJIL+YT+DjtzFRliUfLcklqBCRT4eCTxbD6kdL2/LgYXqpvCbs3kBv/AAAAAElFTkSuQmCC" !default;
54
- $kendo-color-gradient-sm-slider-vertical-size: null !default;
55
- $kendo-color-gradient-md-slider-vertical-size: null !default;
56
- $kendo-color-gradient-lg-slider-vertical-size: null !default;
57
51
 
58
52
  $kendo-color-gradient-draghandle-width: null !default;
59
53
  $kendo-color-gradient-draghandle-height: null !default;
@@ -5,6 +5,9 @@
5
5
  @use "./variables.scss" as *;
6
6
 
7
7
  @mixin kendo-dialog--theme-base() {
8
+ .k-dialog {
9
+ background-color: $kendo-dialog-bg;
10
+ }
8
11
 
9
12
  // Dialog titlebar
10
13
  .k-dialog-titlebar {
@@ -9,4 +9,6 @@ $kendo-dialog-buttongroup-padding-y: null !default;
9
9
  $kendo-dialog-buttongroup-border-width: null !default;
10
10
  $kendo-dialog-button-spacing: null !default;
11
11
 
12
+ $kendo-dialog-bg: null !default;
13
+
12
14
  $kendo-dialog-theme-colors: null !default;
@@ -125,7 +125,8 @@
125
125
  }
126
126
  .k-drawer-items {
127
127
  margin: 0;
128
- padding: 0;
128
+ padding-block: $kendo-drawer-items-padding-y;
129
+ padding-inline: $kendo-drawer-items-padding-x;
129
130
  list-style: none;
130
131
  display: flex;
131
132
  flex-direction: column;
@@ -134,13 +135,16 @@
134
135
  .k-drawer-item {
135
136
  padding-block: $kendo-drawer-item-padding-y;
136
137
  padding-inline: $kendo-drawer-item-padding-x;
138
+ border-radius: $kendo-drawer-item-border-radius;
137
139
  outline: 0;
138
140
  color: inherit;
139
141
  font-size: $kendo-drawer-item-font-size;
140
142
  line-height: $kendo-drawer-item-line-height;
143
+ font-weight: $kendo-drawer-item-font-weight;
141
144
  display: flex;
142
145
  flex-flow: row nowrap;
143
- gap: $kendo-drawer-item-padding-x;
146
+ gap: $kendo-drawer-item-spacing;
147
+ align-items: center;
144
148
  cursor: pointer;
145
149
 
146
150
  > .k-drawer-link {
@@ -54,6 +54,11 @@
54
54
  color: $kendo-drawer-selected-hover-text;
55
55
  background-color: $kendo-drawer-selected-hover-bg;
56
56
  }
57
+
58
+ &:focus,
59
+ &.k-focus {
60
+ background-color: $kendo-drawer-selected-focus-bg;
61
+ }
57
62
  }
58
63
  }
59
64
  .k-drawer-separator {
@@ -19,13 +19,18 @@ $kendo-drawer-scrollbar-bg: null !default;
19
19
  $kendo-drawer-scrollbar-radius: null !default;
20
20
  $kendo-drawer-scrollbar-hover-color: null !default;
21
21
 
22
+ $kendo-drawer-items-padding-x: null !default;
23
+ $kendo-drawer-items-padding-y: null !default;
22
24
  $kendo-drawer-item-padding-x: null !default;
23
25
  $kendo-drawer-item-padding-y: null !default;
26
+ $kendo-drawer-item-spacing: null !default;
24
27
  $kendo-drawer-item-font-size: null !default;
25
28
  $kendo-drawer-item-line-height: null !default;
29
+ $kendo-drawer-item-font-weight: null !default;
26
30
 
27
31
  $kendo-drawer-item-level-padding-x: null !default;
28
32
  $kendo-drawer-item-level-count: null !default;
33
+ $kendo-drawer-item-border-radius: null !default;
29
34
 
30
35
  $kendo-drawer-icon-padding-x: null !default;
31
36
 
@@ -44,3 +49,5 @@ $kendo-drawer-selected-text: null !default;
44
49
 
45
50
  $kendo-drawer-selected-hover-bg: null !default;
46
51
  $kendo-drawer-selected-hover-text: null !default;
52
+
53
+ $kendo-drawer-selected-focus-bg: null !default;
@@ -6,9 +6,9 @@
6
6
 
7
7
  .k-editor {
8
8
  @include fill(
9
- k-color( on-app-surface ),
10
- k-color( surface-alt ),
11
- k-color( border )
9
+ k-color(on-app-surface),
10
+ k-color(surface-alt),
11
+ k-color(border)
12
12
  );
13
13
 
14
14
  &.k-readonly {
@@ -95,7 +95,7 @@
95
95
  .k-fab-item.k-focus .k-fab-item-text,
96
96
  .k-fab-item.k-focus .k-fab-item-icon {
97
97
  @if $kendo-enable-focus-contrast {
98
- @include box-shadow( inset 0 0 0 2px k-color( on-app-surface ));
98
+ @include box-shadow( inset 0 0 0 2px k-color(on-app-surface));
99
99
  } @else {
100
100
  outline: $kendo-fab-item-outline-style $kendo-fab-item-outline-width $kendo-fab-item-outline-color;
101
101
  }
@@ -24,7 +24,7 @@
24
24
  &.k-invalid > .k-floating-label,
25
25
  &.ng-invalid.ng-touched > .k-floating-label,
26
26
  &.ng-invalid.ng-dirty > .k-floating-label {
27
- @include fill ( $color: k-color( error ) );
27
+ @include fill ( $color: k-color(error) );
28
28
  }
29
29
  }
30
30
 
@@ -6,7 +6,7 @@
6
6
 
7
7
  .k-form,
8
8
  .k-form-inline {
9
- @include fill( $color: k-color( on-app-surface ) );
9
+ @include fill( $color: k-color(on-app-surface) );
10
10
 
11
11
  fieldset {
12
12
  legend {
@@ -19,18 +19,18 @@
19
19
  }
20
20
 
21
21
  .k-field-info {
22
- @include fill( $color: k-color( subtle ) );
22
+ @include fill( $color: k-color(subtle) );
23
23
  }
24
24
 
25
25
  .k-alert-error {
26
- @include fill( $color: k-color( error ) );
26
+ @include fill( $color: k-color(error) );
27
27
  }
28
28
  }
29
29
 
30
30
  .k-form-error,
31
31
  .k-text-error,
32
32
  .k-form-field-error .k-label {
33
- @include fill( $color: k-color( error ) );
33
+ @include fill( $color: k-color(error) );
34
34
  }
35
35
 
36
36
  .k-form-separator {
@@ -103,7 +103,7 @@
103
103
  );
104
104
 
105
105
  &.k-task-delayed {
106
- @include repeating-striped-gradient($kendo-gantt-delayed-bg, k-color( app-surface ), 90deg, 4px, 2px);
106
+ @include repeating-striped-gradient($kendo-gantt-delayed-bg, k-color(app-surface), 90deg, 4px, 2px);
107
107
  }
108
108
 
109
109
  &.k-task-advanced {
@@ -227,7 +227,7 @@
227
227
 
228
228
  // Delay offset
229
229
  .k-task-offset {
230
- @include repeating-striped-gradient($kendo-gantt-delayed-bg, k-color( app-surface ), 135deg, 4px, 2px);
230
+ @include repeating-striped-gradient($kendo-gantt-delayed-bg, k-color(app-surface), 135deg, 4px, 2px);
231
231
 
232
232
  .k-resize-e::before {
233
233
  @include fill(
@@ -241,7 +241,7 @@
241
241
  }
242
242
 
243
243
  .k-task-offset:hover {
244
- @include repeating-striped-gradient($kendo-gantt-delayed-bg-lighter, k-color( app-surface ), 135deg, 4px, 2px);
244
+ @include repeating-striped-gradient($kendo-gantt-delayed-bg-lighter, k-color(app-surface), 135deg, 4px, 2px);
245
245
  }
246
246
 
247
247
  .k-pdf-export .k-task-offset {
@@ -518,11 +518,7 @@
518
518
  box-sizing: content-box;
519
519
  }
520
520
  }
521
- .k-dropdown-operator.k-picker-#{$size} {
522
- .k-input-button {
523
- padding: $_padding-y;
524
- }
525
- }
521
+
526
522
  select.k-picker-#{$size} {
527
523
  padding-block: $_padding-y;
528
524
  padding-inline: $_padding-x;
@@ -21,6 +21,7 @@
21
21
  margin: 0;
22
22
  padding: 0;
23
23
  box-sizing: border-box;
24
+ border-radius: inherit;
24
25
  font-family: $kendo-list-font-family;
25
26
  font-size: $kendo-list-font-size;
26
27
  line-height: $kendo-list-line-height;
@@ -160,9 +161,6 @@
160
161
 
161
162
  // List item group label
162
163
  .k-list-item-group-label {
163
- padding-block: 0;
164
- padding-inline: .5em;
165
- font-size: .75em;
166
164
  position: absolute;
167
165
  top: 0;
168
166
  inset-inline-end: 0;
@@ -197,7 +195,8 @@
197
195
  .k-list-filter {
198
196
  display: block;
199
197
  position: relative;
200
- padding: $kendo-list-filter-padding;
198
+ padding-inline: $kendo-list-filter-padding-x;
199
+ padding-block: $kendo-list-filter-padding-y;
201
200
  box-sizing: border-box;
202
201
  flex: none;
203
202
  }
@@ -221,6 +220,12 @@
221
220
  $_group-item-padding-y: map.get( $size-props, group-item-padding-y );
222
221
  $_group-item-font-size: map.get( $size-props, group-item-font-size );
223
222
  $_group-item-line-height: map.get( $size-props, group-item-line-height );
223
+ $_group-label-padding-x: map.get( $size-props, item-group-label-padding-x );
224
+ $_group-label-padding-y: map.get( $size-props, item-group-label-padding-y );
225
+ $_group-label-font-size: map.get( $size-props, item-group-label-font-size );
226
+ $_group-label-line-height: map.get( $size-props, item-group-label-line-height );
227
+ $_filter-padding-x: map.get( $size-props, filter-padding-x );
228
+ $_filter-padding-y: map.get( $size-props, filter-padding-y );
224
229
 
225
230
  .k-list-#{$size} {
226
231
  font-size: $_font-size;
@@ -234,6 +239,11 @@
234
239
  line-height: $_header-line-height;
235
240
  }
236
241
 
242
+ .k-list-filter {
243
+ padding-inline: $_filter-padding-x;
244
+ padding-block: $_filter-padding-y;
245
+ }
246
+
237
247
  .k-list-item {
238
248
  padding-block: $_item-padding-y;
239
249
  padding-inline: $_item-padding-x;
@@ -247,6 +257,13 @@
247
257
  font-size: $_group-item-font-size;
248
258
  line-height: $_group-item-line-height;
249
259
  }
260
+
261
+ .k-list-item-group-label {
262
+ padding-block: $_group-label-padding-y;
263
+ padding-inline: $_group-label-padding-x;
264
+ font-size: $_group-label-font-size;
265
+ line-height: $_group-label-line-height;
266
+ }
250
267
  }
251
268
  }
252
269
  }
@@ -36,7 +36,31 @@ $kendo-list-lg-header-line-height: null !default;
36
36
 
37
37
  $kendo-list-header-font-weight: null !default;
38
38
 
39
+ $kendo-list-item-group-label-sm-font-size: null !default;
40
+ $kendo-list-item-group-label-md-font-size: null !default;
41
+ $kendo-list-item-group-label-lg-font-size: null !default;
42
+
43
+ $kendo-list-item-group-label-sm-line-height: inherit !default;
44
+ $kendo-list-item-group-label-md-line-height: inherit !default;
45
+ $kendo-list-item-group-label-lg-line-height: inherit !default;
46
+
47
+ $kendo-list-item-group-label-sm-padding-x: null !default;
48
+ $kendo-list-item-group-label-md-padding-x: null !default;
49
+ $kendo-list-item-group-label-lg-padding-x: null !default;
50
+
51
+ $kendo-list-item-group-label-sm-padding-y: 0 !default;
52
+ $kendo-list-item-group-label-md-padding-y: 0 !default;
53
+ $kendo-list-item-group-label-lg-padding-y: 0 !default;
54
+
39
55
  $kendo-list-filter-padding: null !default;
56
+ $kendo-list-filter-padding-x: null !default;
57
+ $kendo-list-sm-filter-padding-x: null !default;
58
+ $kendo-list-md-filter-padding-x: null !default;
59
+ $kendo-list-lg-filter-padding-x: null !default;
60
+ $kendo-list-filter-padding-y: null !default;
61
+ $kendo-list-sm-filter-padding-y: null !default;
62
+ $kendo-list-md-filter-padding-y: null !default;
63
+ $kendo-list-lg-filter-padding-y: null !default;
40
64
 
41
65
  $kendo-list-item-padding-x: null !default;
42
66
  $kendo-list-sm-item-padding-x: null !default;
@@ -84,6 +84,8 @@
84
84
  // Expand arrow
85
85
  .k-menu-expand-arrow {
86
86
  margin-inline-end: calc( #{$kendo-icon-spacing} * -1 );
87
+ padding-block: $kendo-menu-icon-padding-y;
88
+ padding-inline: $kendo-menu-icon-padding-x;
87
89
  display: inline-flex;
88
90
  flex-flow: row wrap;
89
91
  align-items: center;
@@ -52,6 +52,8 @@ $kendo-menu-scroll-button-hover-text: null !default;
52
52
  $kendo-menu-scroll-button-hover-border: null !default;
53
53
  $kendo-menu-scroll-button-hover-gradient: null !default;
54
54
 
55
+ $kendo-menu-icon-padding-x: null !default;
56
+ $kendo-menu-icon-padding-y: null !default;
55
57
 
56
58
  // Menu Separator
57
59
 
@@ -11,15 +11,15 @@
11
11
  .k-messagebox-#{$color-name} {
12
12
  @if $color-name == "inverse" {
13
13
  @include fill(
14
- k-color( dark-on-subtle ),
15
- k-color( dark-subtle ),
16
- k-color( dark-hover )
14
+ k-color(dark-on-subtle),
15
+ k-color(dark-subtle),
16
+ k-color(dark-hover)
17
17
  );
18
18
  } @else {
19
19
  @include fill(
20
- k-color( #{$color-name}-on-subtle ),
21
- k-color( #{$color-name}-subtle ),
22
- k-color( #{$color-name}-emphasis )
20
+ k-color(#{$color-name}-on-subtle),
21
+ k-color(#{$color-name}-subtle),
22
+ k-color(#{$color-name}-emphasis)
23
23
  );
24
24
  }
25
25
  }
@@ -55,6 +55,8 @@
55
55
  }
56
56
 
57
57
  .k-notification-actions {
58
+ padding-inline: $kendo-notification-actions-padding-x;
59
+ padding-block: $kendo-notification-actions-padding-y;
58
60
  flex: none;
59
61
  display: flex;
60
62
  gap: $kendo-notification-icon-spacing;
@@ -9,6 +9,8 @@ $kendo-notification-border-radius: k-border-radius(md)!default;
9
9
  $kendo-notification-font-family: null !default;
10
10
  $kendo-notification-font-size: null !default;
11
11
  $kendo-notification-line-height: null !default;
12
+ $kendo-notification-actions-padding-x: null !default;
13
+ $kendo-notification-actions-padding-y: null !default;
12
14
  $kendo-notification-bg: null !default;
13
15
  $kendo-notification-text: null !default;
14
16
  $kendo-notification-border: null !default;
@@ -52,9 +52,6 @@
52
52
  &:hover {
53
53
  z-index: 2;
54
54
  }
55
- &.k-disabled {
56
- color: inherit;
57
- }
58
55
  }
59
56
 
60
57
 
@@ -14,9 +14,9 @@
14
14
 
15
15
  > .k-header {
16
16
  @include fill(
17
- k-color( on-app-surface ),
18
- k-color( surface-alt ),
19
- k-color( border )
17
+ k-color(on-app-surface),
18
+ k-color(surface-alt),
19
+ k-color(border)
20
20
  );
21
21
  }
22
22
  }
@@ -134,7 +134,7 @@
134
134
  }
135
135
 
136
136
  .k-pivotgrid-configurator-content .k-form-field-wrapper {
137
- @include fill( $border: k-color( border ) );
137
+ @include fill( $border: k-color(border) );
138
138
  }
139
139
 
140
140
 
@@ -36,7 +36,7 @@
36
36
 
37
37
  .k-progressbar-indeterminate {
38
38
  @include fill( $kendo-progressbar-indeterminate-text, $kendo-progressbar-indeterminate-bg, $kendo-progressbar-indeterminate-border );
39
- @include striped-gradient( color-mix(in srgb, k-color( base-emphasis ) 55%, transparent) );
39
+ @include striped-gradient( color-mix(in srgb, k-color(base-emphasis) 55%, transparent) );
40
40
  background-size: $kendo-progressbar-height $kendo-progressbar-height;
41
41
  animation: kendo-progressbar-indeterminate-animation $kendo-progressbar-animation-timing;
42
42
  }
@@ -170,9 +170,9 @@
170
170
  .k-scheduler-content .k-scheduler-row:hover,
171
171
  .k-scheduler-content .k-scheduler-row.k-hover {
172
172
  @include fill(
173
- k-color( on-app-surface ),
174
- k-color( base-hover ),
175
- k-color( border ),
173
+ k-color(on-app-surface),
174
+ k-color(base-hover),
175
+ k-color(border),
176
176
  null
177
177
  );
178
178
  }
@@ -283,14 +283,14 @@
283
283
  .k-slider-horizontal :is(.k-slider-track, .k-slider-selection) {
284
284
  height: $kendo-slider-track-thickness;
285
285
  left: 0;
286
- margin-top: - math.div( $kendo-slider-track-thickness, 2 );
286
+ margin-top: calc( #{$kendo-slider-track-thickness} / -2 );
287
287
  top: 50%;
288
288
  }
289
289
 
290
290
  .k-slider-vertical :is(.k-slider-track, .k-slider-selection) {
291
291
  bottom: 0;
292
292
  left: 50%;
293
- margin-left: - math.div( $kendo-slider-track-thickness, 2 );
293
+ margin-left: calc( #{$kendo-slider-track-thickness} / -2 );
294
294
  width: $kendo-slider-track-thickness;
295
295
  }
296
296
 
@@ -54,6 +54,11 @@
54
54
  );
55
55
  }
56
56
 
57
+ &:hover,
58
+ &.k-hover {
59
+ @include focus-indicator( $kendo-slider-draghandle-hover-shadow );
60
+ }
61
+
57
62
  &:focus,
58
63
  &.k-focus {
59
64
  @include focus-indicator( $kendo-slider-draghandle-focus-shadow );
@@ -27,6 +27,7 @@ $kendo-slider-draghandle-hover-bg: null !default;
27
27
  $kendo-slider-draghandle-hover-text: null !default;
28
28
  $kendo-slider-draghandle-hover-border: null !default;
29
29
  $kendo-slider-draghandle-hover-gradient: null !default;
30
+ $kendo-slider-draghandle-hover-shadow: null !default;
30
31
 
31
32
  $kendo-slider-draghandle-pressed-bg: null !default;
32
33
  $kendo-slider-draghandle-pressed-text: null !default;
@@ -46,3 +47,5 @@ $kendo-slider-disabled-opacity: null !default;
46
47
 
47
48
  $kendo-slider-tick-horizontal-image: "data:image/gif;base64,R0lGODlhAQC0AIABALi4uAAAACH5BAEAAAEALAAAAAABALQAAAIWjIGJxqzazlux2ovlzND2rAHgSIZWAQA7" !default;
48
49
  $kendo-slider-tick-vertical-image: "data:image/gif;base64,R0lGODlhtAABAIABALi4uAAAACH5BAEAAAEALAAAAAC0AAEAAAIWjIGJxqzazlux2ovlzND2rAHgSIZWAQA7" !default;
50
+
51
+ $kendo-slider-tick-marker-bg: null !default;
@@ -37,7 +37,7 @@
37
37
  .k-step-link:focus {
38
38
  // Labels only
39
39
  .k-step-label:only-child {
40
- @include focus-indicator( $indicator: ( inset 0 0 0 $kendo-stepper-indicator-focus-size k-color( border ) ), $inset: true );
40
+ @include focus-indicator( $indicator: ( inset 0 0 0 $kendo-stepper-indicator-focus-size k-color(border ) ), $inset: true );
41
41
  }
42
42
  }
43
43
 
@@ -48,7 +48,7 @@
48
48
  .k-step-indicator {
49
49
  @include fill(
50
50
  $kendo-stepper-indicator-disabled-text,
51
- k-color( app-surface ),
51
+ k-color(app-surface),
52
52
  $kendo-stepper-indicator-disabled-border
53
53
  );
54
54
 
@@ -70,13 +70,13 @@
70
70
  );
71
71
  }
72
72
  .k-step-indicator::after {
73
- @include box-shadow( inset 0 0 0 $kendo-stepper-indicator-focus-size k-color( surface-alt ) );
73
+ @include box-shadow( inset 0 0 0 $kendo-stepper-indicator-focus-size k-color(surface-alt ) );
74
74
  }
75
75
  .k-step-label:only-child {
76
76
  @include fill(
77
- k-color( on-app-surface ),
78
- k-color( surface-alt ),
79
- k-color( border )
77
+ k-color(on-app-surface ),
78
+ k-color(surface-alt ),
79
+ k-color(border )
80
80
  );
81
81
  }
82
82
 
@@ -114,7 +114,7 @@
114
114
  .k-step-indicator {
115
115
  @include fill(
116
116
  $kendo-stepper-indicator-done-disabled-text,
117
- k-color( app-surface ),
117
+ k-color(app-surface ),
118
118
  $kendo-stepper-indicator-done-disabled-border
119
119
  );
120
120
 
@@ -160,7 +160,7 @@
160
160
  .k-step-indicator {
161
161
  @include fill(
162
162
  $kendo-stepper-indicator-current-disabled-text,
163
- k-color( app-surface ),
163
+ k-color(app-surface ),
164
164
  $kendo-stepper-indicator-current-disabled-border
165
165
  );
166
166
 
@@ -63,7 +63,7 @@
63
63
  $kendo-switch-off-track-focus-gradient
64
64
  );
65
65
  @if $kendo-enable-focus-contrast {
66
- @include box-shadow( 0 0 0 2px k-color( on-app-surface ));
66
+ @include box-shadow( 0 0 0 2px k-color(on-app-surface));
67
67
  } @else {
68
68
  outline: $kendo-switch-off-track-focus-ring;
69
69
  }
@@ -81,6 +81,15 @@
81
81
  $kendo-switch-off-track-disabled-gradient
82
82
  );
83
83
  }
84
+
85
+ .k-switch-thumb {
86
+ @include fill(
87
+ $kendo-switch-off-thumb-disabled-text,
88
+ $kendo-switch-off-thumb-disabled-bg,
89
+ $kendo-switch-off-thumb-disabled-border,
90
+ $kendo-switch-off-thumb-disabled-gradient
91
+ );
92
+ }
84
93
  }
85
94
 
86
95
  .k-switch-label-on {
@@ -143,7 +152,7 @@
143
152
  $kendo-switch-on-track-focus-gradient
144
153
  );
145
154
  @if $kendo-enable-focus-contrast {
146
- @include box-shadow( 0 0 0 2px k-color( on-app-surface ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ));
155
+ @include box-shadow( 0 0 0 2px k-color(on-app-surface ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ));
147
156
  } @else {
148
157
  outline: $kendo-switch-on-track-focus-ring;
149
158
  }
@@ -161,6 +170,15 @@
161
170
  $kendo-switch-on-track-disabled-gradient
162
171
  );
163
172
  }
173
+
174
+ .k-switch-thumb {
175
+ @include fill(
176
+ $kendo-switch-on-thumb-disabled-text,
177
+ $kendo-switch-on-thumb-disabled-bg,
178
+ $kendo-switch-on-thumb-disabled-border,
179
+ $kendo-switch-on-thumb-disabled-gradient
180
+ );
181
+ }
164
182
  }
165
183
 
166
184
  .k-switch-label-off {
@@ -43,6 +43,11 @@ $kendo-switch-off-thumb-hover-text: null !default;
43
43
  $kendo-switch-off-thumb-hover-border: null !default;
44
44
  $kendo-switch-off-thumb-hover-gradient: null !default;
45
45
 
46
+ $kendo-switch-off-thumb-disabled-bg: null !default;
47
+ $kendo-switch-off-thumb-disabled-text: null !default;
48
+ $kendo-switch-off-thumb-disabled-border: null !default;
49
+ $kendo-switch-off-thumb-disabled-gradient: null !default;
50
+
46
51
 
47
52
  $kendo-switch-on-track-bg: null !default;
48
53
  $kendo-switch-on-track-text: null !default;
@@ -74,3 +79,8 @@ $kendo-switch-on-thumb-hover-bg: null !default;
74
79
  $kendo-switch-on-thumb-hover-text: null !default;
75
80
  $kendo-switch-on-thumb-hover-border: null !default;
76
81
  $kendo-switch-on-thumb-hover-gradient: null !default;
82
+
83
+ $kendo-switch-on-thumb-disabled-bg: null !default;
84
+ $kendo-switch-on-thumb-disabled-text: null !default;
85
+ $kendo-switch-on-thumb-disabled-border: null !default;
86
+ $kendo-switch-on-thumb-disabled-gradient: null !default;
@@ -449,7 +449,6 @@
449
449
  display: none !important; // stylelint-disable-line declaration-no-important
450
450
  }
451
451
  }
452
-
453
452
  }
454
453
 
455
454
 
@@ -94,9 +94,21 @@
94
94
  // Selected indicator
95
95
  @if ($kendo-tabstrip-indicator-size) {
96
96
 
97
- .k-tabstrip-items-wrapper {
98
- .k-item.k-active::after {
99
- border-color: $kendo-tabstrip-indicator-color;
97
+ .k-tabstrip-top,
98
+ .k-tabstrip-bottom {
99
+ > .k-tabstrip-items-wrapper {
100
+ .k-item.k-active .k-link::after {
101
+ background: $kendo-tabstrip-indicator-color;
102
+ }
103
+ }
104
+ }
105
+
106
+ .k-tabstrip-left,
107
+ .k-tabstrip-right {
108
+ > .k-tabstrip-items-wrapper {
109
+ .k-item.k-active::after {
110
+ background: $kendo-tabstrip-indicator-color;
111
+ }
100
112
  }
101
113
  }
102
114
  }
@@ -53,7 +53,6 @@ $kendo-tabstrip-item-selected-border: null !default;
53
53
  $kendo-tabstrip-item-selected-gradient: null !default;
54
54
  $kendo-tabstrip-item-selected-font-weight: null !default;
55
55
 
56
-
57
56
  $kendo-tabstrip-item-focus-shadow: null !default;
58
57
 
59
58
  $kendo-tabstrip-item-dragging-shadow: null !default;
@@ -18,14 +18,15 @@
18
18
  // Time selector header
19
19
  .k-time-header,
20
20
  .k-time-selector-header {
21
+ .k-title {
22
+ color: $kendo-time-selector-header-title-text;
23
+ }
21
24
 
22
25
  .k-time-now {
23
- // TODO: use a variable
24
- color: $kendo-time-selector-now-button-text;
26
+ color: $kendo-time-selector-header-time-now-text;
25
27
  }
26
28
  .k-time-now:hover {
27
- // TODO: use a variable
28
- color: $kendo-time-selector-now-button-hover-text;
29
+ color: $kendo-time-selector-header-time-now-hover-text;
29
30
  }
30
31
  }
31
32
 
@@ -12,6 +12,9 @@ $kendo-time-selector-border: null !default;
12
12
  $kendo-time-selector-header-padding-x: null !default;
13
13
  $kendo-time-selector-header-padding-y: null !default;
14
14
  $kendo-time-selector-header-border-width: null !default;
15
+ $kendo-time-selector-header-title-text: null !default;
16
+ $kendo-time-selector-header-time-now-text: null !default;
17
+ $kendo-time-selector-header-time-now-hover-text: null !default;
15
18
 
16
19
  $kendo-time-selector-fast-selection-gap: null !default;
17
20
 
@@ -6,8 +6,8 @@
6
6
 
7
7
  .k-body {
8
8
  @include fill(
9
- k-color( on-app-surface ),
10
- k-color( app-surface )
9
+ k-color(on-app-surface),
10
+ k-color(app-surface)
11
11
  );
12
12
  }
13
13