@progress/kendo-theme-fluent 5.8.2-dev.4 → 5.8.2-dev.6

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.
@@ -3,13 +3,54 @@
3
3
 
4
4
  @mixin kendo-action-sheet--layout() {
5
5
  .k-actionsheet-container {
6
- width: 100vw;
7
- height: 100vh;
6
+ width: 100%;
7
+ height: 100%;
8
+ max-width: unquote("max(100%, 100vw)");
9
+ max-height: unquote("max(100%, 100vh)");
8
10
  position: fixed;
9
11
  top: 0;
10
12
  left: 0;
11
13
  z-index: 9999;
12
14
  overflow: hidden;
15
+ transform: translateZ(0);
16
+ }
17
+
18
+ // Animation container
19
+ .k-actionsheet-container {
20
+
21
+ // Overlay
22
+ > .k-overlay {
23
+ position: absolute;
24
+ z-index: 1;
25
+ }
26
+
27
+ // Nested animation container
28
+ > .k-animation-container {
29
+ width: 100%;
30
+ height: 100%;
31
+ border-radius: 0;
32
+ overflow: hidden;
33
+ position: absolute;
34
+ z-index: 2;
35
+ top: 0;
36
+ left: 0;
37
+ pointer-events: none;
38
+
39
+ > .k-child-animation-container {
40
+ position: absolute;
41
+ }
42
+ }
43
+
44
+ // No animation container
45
+ > .k-actionsheet {
46
+ position: absolute;
47
+ z-index: 2;
48
+ }
49
+
50
+ // Enable mouse events for action sheet
51
+ .k-actionsheet {
52
+ pointer-events: all;
53
+ }
13
54
  }
14
55
 
15
56
  // Actionsheet
@@ -18,6 +59,7 @@
18
59
  padding-block: var( --kendo-actionsheet-padding-y, #{$kendo-actionsheet-padding-y} );
19
60
  width: var( --kendo-actionsheet-width, #{$kendo-actionsheet-width} );
20
61
  max-width: var( --kendo-actionsheet-max-width, #{$kendo-actionsheet-max-width} );
62
+ height: var( --kendo-actionsheet-height, #{$kendo-actionsheet-height} );
21
63
  max-height: var( --kendo-actionsheet-max-height, #{$kendo-actionsheet-max-height} );
22
64
  border-width: 0;
23
65
  border-style: solid;
@@ -26,10 +68,8 @@
26
68
  font-size: var( --kendo-actionsheet-font-size, #{$kendo-actionsheet-font-size} );
27
69
  font-family: var( --kendo-actionsheet-font-family, #{$kendo-actionsheet-font-family} );
28
70
  line-height: var( --kendo-actionsheet-line-height, #{$kendo-actionsheet-line-height} );
29
- overflow-x: hidden;
30
- overflow-y: auto;
31
- position: fixed;
32
- z-index: 10002;
71
+ overflow: hidden;
72
+ position: relative;
33
73
 
34
74
  *,
35
75
  *::before,
@@ -39,6 +79,8 @@
39
79
  }
40
80
 
41
81
  .k-actionsheet-fullscreen {
82
+ width: 100%;
83
+ max-width: 100%;
42
84
  max-height: 100%;
43
85
  height: 100%;
44
86
  }
@@ -57,21 +99,34 @@
57
99
  font-family: var( --kendo-actionsheet-header-font-family, #{$kendo-actionsheet-header-font-family} );
58
100
  line-height: var( --kendo-actionsheet-header-line-height, #{$kendo-actionsheet-header-line-height} );
59
101
  flex: none;
102
+ gap: var( --kendo-actionsheet-header-gap, #{$kendo-actionsheet-header-gap} );
60
103
  }
61
104
 
62
105
 
63
106
  // Actionsheet titlebar
64
107
  .k-actionsheet-titlebar {
65
108
  @extend .k-actionsheet-header !optional;
109
+ display: flex;
110
+ flex-flow: column nowrap;
111
+ align-items: center;
112
+ }
113
+
114
+ .k-actionsheet-titlebar-group {
66
115
  display: flex;
67
116
  flex-flow: row nowrap;
68
117
  align-items: center;
118
+ width: 100%;
69
119
  }
70
120
 
71
121
  .k-actionsheet-title {
72
122
  flex: 1;
73
123
  }
74
124
 
125
+ .k-actionsheet-subtitle {
126
+ font-size: var( --kendo-actionsheet-subtitle-font-size, #{$kendo-actionsheet-subtitle-font-size} );
127
+ line-height: var( --kendo-actionsheet-subtitle-line-height, #{$kendo-actionsheet-subtitle-line-height} );
128
+ }
129
+
75
130
  .k-actionsheet-actions {
76
131
  flex: none;
77
132
  }
@@ -81,6 +136,7 @@
81
136
  .k-actionsheet-content {
82
137
  flex: 1;
83
138
  overflow: auto;
139
+ position: relative;
84
140
  }
85
141
 
86
142
 
@@ -95,6 +151,7 @@
95
151
  margin: 0;
96
152
  padding: 0;
97
153
  list-style: none;
154
+ flex: none;
98
155
  }
99
156
 
100
157
 
@@ -102,6 +159,13 @@
102
159
  .k-actionsheet-item {
103
160
  padding: 0;
104
161
  box-sizing: border-box;
162
+
163
+ &:focus,
164
+ &.k-focus {
165
+ outline-width: var( --kendo-actionsheet-item-focus-outline-width, #{$kendo-actionsheet-item-focus-outline-width} );
166
+ outline-style: solid;
167
+ outline-offset: calc( -1 * var( --kendo-actionsheet-item-focus-outline-width, #{$kendo-actionsheet-item-focus-outline-width} ) );
168
+ }
105
169
  }
106
170
 
107
171
  .k-actionsheet-action {
@@ -115,16 +179,8 @@
115
179
  outline: 0;
116
180
  display: flex;
117
181
  flex-flow: row nowrap;
118
- align-items: center;
182
+ align-items: flex-start;
119
183
  gap: var( --kendo-actionsheet-item-spacing, #{$kendo-actionsheet-item-spacing} );
120
-
121
-
122
- &:focus,
123
- &.k-focus {
124
- outline-width: var( --kendo-actionsheet-item-focus-outline-width, #{$kendo-actionsheet-item-focus-outline-width} );
125
- outline-style: solid;
126
- outline-offset: calc( -1 * var( --kendo-actionsheet-item-focus-outline-width, #{$kendo-actionsheet-item-focus-outline-width} ) );
127
- }
128
184
  }
129
185
 
130
186
  .k-actionsheet-item-icon {
@@ -150,6 +206,7 @@
150
206
  .k-actionsheet > .k-hr {
151
207
  margin: 0;
152
208
  border-color: inherit;
209
+ flex: none;
153
210
  }
154
211
 
155
212
 
@@ -210,6 +267,31 @@
210
267
  display: flex;
211
268
  flex-flow: column nowrap;
212
269
 
270
+ .k-actionsheet-titlebar {
271
+ padding-inline: var( --kendo-adaptive-actionsheet-header-padding-x, #{$kendo-adaptive-actionsheet-header-padding-x} );
272
+ padding-block: var( --kendo-adaptive-actionsheet-header-padding-y, #{$kendo-adaptive-actionsheet-header-padding-y} );
273
+ border-bottom-width: var( --kendo-adaptive-actionsheet-header-border-width, #{$kendo-adaptive-actionsheet-header-border-width} );
274
+ }
275
+
276
+ .k-actionsheet-content {
277
+ padding-inline: var( --kendo-adaptive-actionsheet-content-padding-x, #{$kendo-adaptive-actionsheet-content-padding-x} );
278
+ padding-block: var( --kendo-adaptive-actionsheet-content-padding-y, #{$kendo-adaptive-actionsheet-content-padding-y} );
279
+ }
280
+
281
+ .k-actionsheet-footer {
282
+ padding-inline: var( --kendo-adaptive-actionsheet-footer-padding-x, #{$kendo-adaptive-actionsheet-footer-padding-x} );
283
+ padding-block: var( --kendo-adaptive-actionsheet-footer-padding-y, #{$kendo-adaptive-actionsheet-footer-padding-y} );
284
+ }
285
+
286
+ .k-list-container,
287
+ .k-treeview {
288
+ height: 100%;
289
+ }
290
+ .k-list-filter {
291
+ width: 100%;
292
+ padding-inline: 0;
293
+ }
294
+
213
295
  .k-calendar {
214
296
  margin-inline: auto;
215
297
  border-width: 0;
@@ -229,5 +311,58 @@
229
311
  height: 100%;
230
312
  }
231
313
  }
314
+
315
+ .k-datetime-wrap {
316
+ width: 100%;
317
+ height: 100%;
318
+ display: flex;
319
+ flex-flow: column nowrap;
320
+ }
321
+ .k-datetime-selector {
322
+ flex: 1 1 auto;
323
+ }
324
+
325
+ .k-datetime-calendar-wrap {
326
+ width: 100%;
327
+ position: absolute;
328
+ top: 0;
329
+ left: 0;
330
+ bottom: 0;
331
+ flex: 0 0 100%;
332
+ }
333
+
334
+ .k-datetime-time-wrap {
335
+ width: 100%;
336
+ position: absolute;
337
+ top: 0;
338
+ left: 100%;
339
+ bottom: 0;
340
+ flex: 0 0 100%;
341
+ }
342
+
343
+ .k-scrollable-wrap {
344
+ height: 100%;
345
+ overflow-y: auto;
346
+ }
232
347
  }
233
348
  }
349
+
350
+ @mixin kendo-action-sheet--layout-jq() {
351
+
352
+ .k-actionsheet-jq {
353
+ &.k-actionsheet {
354
+ height: auto;
355
+ position: relative;
356
+ }
357
+
358
+ .k-actionsheet-header {
359
+ @extend .k-actionsheet-titlebar !optional;
360
+ align-items: flex-start;
361
+ }
362
+
363
+ .k-actionsheet-action {
364
+ align-items: center;
365
+ }
366
+ }
367
+
368
+ }
@@ -19,7 +19,9 @@
19
19
  border-color: var( --kendo-actionsheet-header-border, #{$kendo-actionsheet-header-border} );
20
20
  @include box-shadow( var( --kendo-actionsheet-header-shadow, #{$kendo-actionsheet-header-shadow} ) );
21
21
  }
22
-
22
+ .k-actionsheet-subtitle-text {
23
+ color: var( --kendo-actionsheet-subtitle-text, #{$kendo-actionsheet-subtitle-text} );
24
+ }
23
25
 
24
26
  // Actionsheet items
25
27
  .k-actionsheet-items {}
@@ -40,7 +42,7 @@
40
42
 
41
43
 
42
44
  // Actionsheet action
43
- .k-actionsheet-action {
45
+ .k-actionsheet-item {
44
46
 
45
47
  color: var( --INTERNAL--kendo-actionsheet-item-text, inherit );
46
48
  background-color: var( --INTERNAL--kendo-actionsheet-item-bg, inherit );
@@ -86,4 +88,10 @@
86
88
  }
87
89
  }
88
90
  }
91
+
92
+ // Adaptive Actionsheet
93
+ .k-adaptive-actionsheet .k-actionsheet-titlebar {
94
+ border-color: var( --kendo-adaptive-actionsheet-header-border, #{$kendo-adaptive-actionsheet-header-border} );
95
+ }
96
+
89
97
  }
@@ -13,9 +13,12 @@ $kendo-actionsheet-width: 360px !default;
13
13
  /// Maximum width of the action sheet.
14
14
  /// @group action-sheet
15
15
  $kendo-actionsheet-max-width: 100% !default;
16
+ /// Height of the action sheet.
17
+ /// @group action-sheet
18
+ $kendo-actionsheet-height: 60vh !default;
16
19
  /// Maximum height of the action sheet.
17
20
  /// @group action-sheet
18
- $kendo-actionsheet-max-height: 50vh !default;
21
+ $kendo-actionsheet-max-height: 60vh !default;
19
22
 
20
23
  /// Border width around the action sheet.
21
24
  /// @group action-sheet
@@ -65,6 +68,10 @@ $kendo-actionsheet-header-font-family: inherit !default;
65
68
  /// Line height of the action sheet header.
66
69
  /// @group action-sheet
67
70
  $kendo-actionsheet-header-line-height: inherit !default;
71
+ /// Spacing between the action sheet header groups.
72
+ /// @group action-sheet
73
+ $kendo-actionsheet-header-gap: map-get( $kendo-spacing, 4 ) !default;
74
+
68
75
 
69
76
  /// Background color of the action sheet header.
70
77
  /// @group action-sheet
@@ -79,6 +86,16 @@ $kendo-actionsheet-header-border: inherit !default;
79
86
  /// @group action-sheet
80
87
  $kendo-actionsheet-header-shadow: none !default;
81
88
 
89
+ /// Font size of the action sheet subtitle.
90
+ /// @group action-sheet
91
+ $kendo-actionsheet-subtitle-font-size: var( --kendo-font-size-sm, inherit ) !default;
92
+ /// Line height of the action sheet subtitle.
93
+ /// @group action-sheet
94
+ $kendo-actionsheet-subtitle-line-height: var( --kendo-line-height-sm, inherit ) !default;
95
+ /// Text color of the action sheet subtitle.
96
+ /// @group action-sheet
97
+ $kendo-actionsheet-subtitle-text: var( --kendo-subtle-text, inherit ) !default;
98
+
82
99
  /// Minimum height of the action sheet item.
83
100
  /// @group action-sheet
84
101
  $kendo-actionsheet-item-min-height: 40px !default;
@@ -161,3 +178,33 @@ $kendo-actionsheet-item-disabled-text: var( --kendo-disabled-text, inherit ) !de
161
178
  /// Disabled border color of the action sheet item.
162
179
  /// @group action-sheet
163
180
  $kendo-actionsheet-item-disabled-border: var( --kendo-disabled-border, inherit ) !default;
181
+
182
+
183
+ // Adaptive Actionsheet
184
+
185
+ /// Border width of the adaptive action sheet titlebar.
186
+ /// @group action-sheet
187
+ $kendo-adaptive-actionsheet-header-border-width: 1px !default;
188
+ /// Vertical padding of the adaptive action sheet titlebar.
189
+ /// @group action-sheet
190
+ $kendo-adaptive-actionsheet-header-padding-y: map-get( $kendo-spacing, 4 ) !default;
191
+ /// Horizontal padding of the adaptive action sheet titlebar.
192
+ /// @group action-sheet
193
+ $kendo-adaptive-actionsheet-header-padding-x: $kendo-adaptive-actionsheet-header-padding-y !default;
194
+ /// Text color of the adaptive action sheet titlebar.
195
+ /// @group action-sheet
196
+ $kendo-adaptive-actionsheet-header-border: var( --kendo-component-border, initial ) !default;
197
+
198
+ /// Vertical padding of the adaptive action sheet content.
199
+ /// @group action-sheet
200
+ $kendo-adaptive-actionsheet-content-padding-y: map-get( $kendo-spacing, 2 ) !default;
201
+ /// Horizontal padding of the adaptive action sheet content.
202
+ /// @group action-sheet
203
+ $kendo-adaptive-actionsheet-content-padding-x: map-get( $kendo-spacing, 4 ) !default;
204
+
205
+ /// Vertical padding of the adaptive action sheet footer.
206
+ /// @group action-sheet
207
+ $kendo-adaptive-actionsheet-footer-padding-y: map-get( $kendo-spacing, 2 ) !default;
208
+ /// Horizontal padding of the adaptive action sheet footer.
209
+ /// @group action-sheet
210
+ $kendo-adaptive-actionsheet-footer-padding-x: map-get( $kendo-spacing, 4 ) !default;
@@ -22,6 +22,7 @@ $_kendo-module-meta: (
22
22
  @mixin styles() {
23
23
  @include module.render( "action-sheet" ) {
24
24
  @include kendo-action-sheet--layout();
25
+ @include kendo-action-sheet--layout-jq();
25
26
  @include kendo-action-sheet--theme();
26
27
  }
27
28
  }
@@ -412,7 +412,6 @@
412
412
  &::before {
413
413
  content: "";
414
414
  position: absolute;
415
- z-index: 1;
416
415
  inset: 0px;
417
416
  border-style: solid;
418
417
  border-width: var( --INTERNAL--kendo-calendar-range-border-width, 0 );
@@ -30,6 +30,12 @@
30
30
  &.k-focus {
31
31
  color: var( --kendo-calendar-today-nav-hover-text, #{$kendo-calendar-today-nav-hover-text});
32
32
  }
33
+
34
+ &.k-disabled {
35
+ @include disabled(
36
+ $color: var( --kendo-disabled-text, inherit )
37
+ );
38
+ }
33
39
  }
34
40
 
35
41
 
@@ -185,6 +191,7 @@
185
191
  --kendo-calendar-cell-bg: var( --kendo-calendar-range-bg, #{$kendo-calendar-range-bg} );
186
192
  --kendo-calendar-cell-text: var( --kendo-calendar-range-text, #{$kendo-calendar-range-text} );
187
193
  --kendo-calendar-cell-link-bg: transparent;
194
+ --kendo-calendar-cell-selected-bg: transparent;
188
195
  --kendo-calendar-cell-selected-shadow: none;
189
196
 
190
197
  &::before {
@@ -49,6 +49,7 @@
49
49
  // Color Preview Mask
50
50
  .k-color-preview-mask {
51
51
  width: 100%;
52
+ min-width: var( --kendo-icon-size, 1rem );
52
53
  height: 100%;
53
54
  position: relative;
54
55
  }
@@ -7,9 +7,8 @@
7
7
  .k-widget[disabled],
8
8
  .k-disabled {
9
9
  @include disabled(
10
- var( --kendo-disabled-text, inherit ),
11
- var( --kendo-disabled-bg, inherit ),
12
- var( --kendo-disabled-border, inherit )
10
+ $color: var( --kendo-disabled-text, inherit ),
11
+ $border: var( --kendo-disabled-border, inherit )
13
12
  );
14
13
 
15
14
  .k-link {
@@ -1,8 +1,9 @@
1
+ @use "../variables.scss" as *;
1
2
  // Infinite calendar and timepicker
2
3
  @mixin hide-scrollbar($max-scrollbar: 100px) {
3
4
  // anything larger than the scrollbar width will do
4
- $scrollbar-size: 17px;
5
- $margin: -$max-scrollbar - $scrollbar-size;
5
+ $scrollbar-size: var( --kendo-scrollbar-width, #{$default-scrollbar-width} );
6
+ $margin: calc( -#{$max-scrollbar} - #{$scrollbar-size} );
6
7
 
7
8
  padding-inline-end: $max-scrollbar;
8
9
  padding-inline-start: $max-scrollbar;
@@ -77,6 +77,13 @@
77
77
  var( --kendo-editor-ct-popup-border, #{$kendo-editor-ct-popup-border} )
78
78
  );
79
79
  }
80
+
81
+ .k-disabled:not(.k-selected) {
82
+ @include disabled(
83
+ $bg: var( --kendo-disabled-bg, inherit ),
84
+ $border: var( --kendo-disabled-border, inherit )
85
+ );
86
+ }
80
87
  }
81
88
 
82
89
  // Content
@@ -20,6 +20,12 @@
20
20
  .k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after {
21
21
  background-color: var( --kendo-filter-line-bg, #{$kendo-filter-line-bg} );
22
22
  }
23
+
24
+ // Focus
25
+ .k-toolbar:focus,
26
+ .k-toolbar.k-focus {
27
+ border-color: var( --kendo-filter-toolbar-focus-border, #{$kendo-filter-toolbar-focus-border} );
28
+ }
23
29
  }
24
30
 
25
31
  }
@@ -33,3 +33,7 @@ $kendo-filter-text: var( --kendo-component-text, initial ) !default;
33
33
  /// Background color of the line that connects the filter items.
34
34
  /// @group filter
35
35
  $kendo-filter-line-bg: var( --kendo-component-border, initial ) !default;
36
+
37
+ /// Border color of the focused filter.
38
+ /// @group filter
39
+ $kendo-filter-toolbar-focus-border: get-theme-color-var( neutral-130 ) !default;
@@ -157,17 +157,42 @@
157
157
  $bg: var( --kendo-gantt-task-progress-bg, #{$kendo-gantt-task-progress-bg} )
158
158
  );
159
159
  }
160
+
161
+ &:hover {
162
+ .k-task-complete {
163
+ background-color: var( --kendo-gantt-task-progress-hover-bg, #{$kendo-gantt-task-progress-hover-bg} )
164
+ }
165
+ }
160
166
  }
161
- .k-task-delayed .k-task-complete {
162
- @include fill(
163
- $bg: var( --kendo-gantt-delayed-bg, #{$kendo-gantt-delayed-bg} )
164
- );
167
+
168
+ .k-task-delayed {
169
+ .k-task-complete {
170
+ @include fill(
171
+ $bg: var( --kendo-gantt-delayed-bg, #{$kendo-gantt-delayed-bg} )
172
+ );
173
+ }
174
+
175
+ &:hover .k-task-complete {
176
+ @include fill(
177
+ $bg: var( --kendo-gantt-delayed-hover-bg, #{$kendo-gantt-delayed-hover-bg} )
178
+ );
179
+ }
165
180
  }
166
- .k-task-advanced .k-task-complete {
167
- @include fill(
168
- $bg: var( --kendo-gantt-advanced-bg, #{$kendo-gantt-advanced-bg} )
169
- );
181
+
182
+ .k-task-advanced {
183
+ .k-task-complete {
184
+ @include fill(
185
+ $bg: var( --kendo-gantt-advanced-bg, #{$kendo-gantt-advanced-bg} )
186
+ );
187
+ }
188
+
189
+ &:hover {
190
+ .k-task-complete {
191
+ background-color: var( --kendo-gantt-advanced-hover-bg, #{$kendo-gantt-advanced-hover-bg} );
192
+ }
193
+ }
170
194
  }
195
+
171
196
  .k-task-single.k-selected {
172
197
  @include fill(
173
198
  var( --kendo-gantt-task-selected-text, #{$kendo-gantt-task-selected-text} ),
@@ -110,6 +110,9 @@ $kendo-gantt-task-border: inherit !default;
110
110
  /// Background color of the gantt task progress.
111
111
  /// @group gantt
112
112
  $kendo-gantt-task-progress-bg: get-theme-color-var( neutral-160 ) !default;
113
+ /// Background hover color of the gantt task progress.
114
+ /// @group gantt
115
+ $kendo-gantt-task-progress-hover-bg: get-theme-color-var( neutral-190 ) !default;
113
116
  /// Selected background color of the gantt task.
114
117
  /// @group gantt
115
118
  $kendo-gantt-task-selected-bg: get-theme-color-var( primary-50 ) !default;
@@ -200,6 +203,9 @@ $kendo-gantt-delayed-bg: get-theme-color-var( error-160 ) !default;
200
203
  /// Complement background color of the gantt delayed task.
201
204
  /// @group gantt
202
205
  $kendo-gantt-delayed-bg-lighter: get-theme-color-var( error-110) !default;
206
+ /// Background hover color of the gantt delayed task.
207
+ /// @group gantt
208
+ $kendo-gantt-delayed-hover-bg: get-theme-color-var( error-190 ) !default;
203
209
 
204
210
  /// Background color of the gantt advanced task.
205
211
  /// @group gantt
@@ -207,6 +213,9 @@ $kendo-gantt-advanced-bg: get-theme-color-var( success-160 ) !default;
207
213
  /// Complement background color of the gantt advanced task.
208
214
  /// @group gantt
209
215
  $kendo-gantt-advanced-bg-lighter: get-theme-color-var( success-110 ) !default;
216
+ /// Background hover color of the gantt advanced task.
217
+ /// @group gantt
218
+ $kendo-gantt-advanced-hover-bg: get-theme-color-var( success-190 ) !default;
210
219
 
211
220
  /// Text color of the gantt delayed task action.
212
221
  /// @group gantt
@@ -353,6 +353,10 @@
353
353
  }
354
354
  }
355
355
 
356
+ // Alias used in jQuery
357
+ .k-reorder-cue {
358
+ @extend .k-grouping-dropclue;
359
+ }
356
360
 
357
361
  // Grid header / footer
358
362
  .k-grid-header-wrap,
@@ -514,7 +518,7 @@
514
518
  }
515
519
 
516
520
  .k-grid-filter-popup {
517
- min-width: 200px;
521
+ min-width: 230px;
518
522
  }
519
523
 
520
524
  // Standalone column menu
@@ -1090,7 +1094,7 @@
1090
1094
 
1091
1095
  .k-actions {
1092
1096
  margin: 0;
1093
- padding-block-start: var( --kendo-filter-menu-container-padding-y, #{$kendo-filter-menu-container-padding-y} );
1097
+ padding-block-start: calc( var( --kendo-filter-menu-container-padding-y, #{$kendo-filter-menu-container-padding-y} ) - var( --kendo-grid-column-menu-spacing, #{$kendo-grid-column-menu-spacing} ) ) ;
1094
1098
  padding-block-end: 0;
1095
1099
  padding-inline: 0;
1096
1100
  }
@@ -484,6 +484,14 @@
484
484
  .k-check-all-wrap {
485
485
  @include fill( $border: $kendo-popup-border );
486
486
  }
487
+
488
+ .k-listgroup-item {
489
+ &.k-disabled {
490
+ @include disabled(
491
+ $bg: var( --kendo-disabled-bg, inherit )
492
+ );
493
+ }
494
+ }
487
495
  }
488
496
 
489
497
 
@@ -3,6 +3,17 @@
3
3
 
4
4
  @mixin kendo-list--layout() {
5
5
 
6
+ // List container
7
+ .k-list-container {
8
+ display: flex;
9
+ flex-flow: column nowrap;
10
+
11
+ > .k-list {
12
+ flex: 1;
13
+ height: 100%;
14
+ }
15
+ }
16
+
6
17
  .k-list {
7
18
  margin: 0;
8
19
  padding: 0;
@@ -67,6 +67,8 @@
67
67
  display: flex;
68
68
  overflow: unset;
69
69
  flex-shrink: 0;
70
+ grid-column: 1/-1;
71
+ grid-row: 2/-1;
70
72
 
71
73
  &.k-progress-start { justify-content: flex-start; }
72
74
  &.k-progress-center { justify-content: center; }
@@ -137,10 +139,10 @@
137
139
 
138
140
  .k-progress-status-wrap {
139
141
  flex-direction: column;
140
- align-items: flex-end;
141
- grid-row: 1 / -1;
142
- grid-column: 1 / -1;
143
- margin-inline-start: var( --kendo-progressbar-offset-y, #{- $kendo-progressbar-offset-y} );
142
+ align-items: flex-start;
143
+ margin-inline-start: var( --kendo-progressbar-vertical-status-offset, #{$kendo-progressbar-vertical-status-offset} );
144
+ grid-row: 1/-1;
145
+ grid-column: -1/1;
144
146
  }
145
147
 
146
148
  .k-progress-status {
@@ -27,13 +27,10 @@ $kendo-progressbar-font-size: var( --kendo-font-size-sm, inherit ) !default;
27
27
  /// @group progressbar
28
28
  $kendo-progressbar-line-height: var( --kendo-line-height, inherit ) !default;
29
29
 
30
- /// of the progressbar.
31
- /// @group progressbar
32
- $kendo-progressbar-offset-y: map-get( $kendo-spacing, 2 ) !default;
33
- /// of the progressbar.
30
+ /// Horizontal padding of the progressbar.
34
31
  /// @group progressbar
35
32
  $kendo-progressbar-padding-x: 0 !default;
36
- /// of the progressbar.
33
+ /// Vertical padding of the progressbar.
37
34
  /// @group progressbar
38
35
  $kendo-progressbar-padding-y: 0 !default;
39
36
 
@@ -73,6 +70,13 @@ $kendo-progressbar-fill-border: $kendo-progressbar-fill-bg !default;
73
70
  /// @group progressbar
74
71
  $kendo-progressbar-fill-gradient: null !default;
75
72
 
73
+ /// Progress status offset of the progressbar.
74
+ /// @group progressbar
75
+ $kendo-progressbar-offset-y: map-get( $kendo-spacing, 2 ) !default;
76
+ /// Vertical status offset of the progressbar.
77
+ /// @group progressbar
78
+ $kendo-progressbar-vertical-status-offset: calc( (#{$kendo-progressbar-font-size} * #{$kendo-progressbar-line-height} + #{$kendo-progressbar-offset-y}) * -1) !default;
79
+
76
80
  /// Progress background color of the disabled progressbar.
77
81
  /// @group progressbar
78
82
  $kendo-progressbar-fill-disabled-bg: get-theme-color-var( primary-30 ) !default;