@progress/kendo-theme-core 13.0.0-dev.4 → 13.0.0-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.
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": "13.0.0-dev.4",
4
+ "version": "13.0.0-dev.6",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -46,5 +46,5 @@
46
46
  "directories": {
47
47
  "doc": "docs"
48
48
  },
49
- "gitHead": "755590fe1a60a7eb3cccfdc1f4d42874d0f32643"
49
+ "gitHead": "58a7d90fa1876430fe909623ec0063b9a2e6eec8"
50
50
  }
@@ -44,7 +44,7 @@
44
44
  .k-file-box-wrapper-scrollable-end::before,
45
45
  .k-file-box-wrapper-scrollable-start::after{
46
46
  content: '';
47
- aspect-ratio: .3;
47
+ aspect-ratio: .5;
48
48
  position: absolute;
49
49
  z-index: k-z-index("base", 3);
50
50
  height: calc(100% - #{$kendo-file-box-padding-y} * 2 );
@@ -12,7 +12,7 @@
12
12
  }
13
13
 
14
14
  .k-prompt-box-header {
15
- padding: $kendo-prompt-box-header-padding;
15
+ padding: $kendo-prompt-box-header-padding $kendo-prompt-box-header-padding 0;
16
16
  }
17
17
 
18
18
  .k-prompt-box-affix {
@@ -39,7 +39,7 @@
39
39
  flex-flow: row nowrap;
40
40
  }
41
41
 
42
- .k-prompt-box-singleline {
42
+ .k-prompt-box:not(.k-prompt-box-multiline) {
43
43
  .k-prompt-box-affix:has(+.k-input-inner) {
44
44
  padding-inline-end: 0;
45
45
  }
@@ -58,6 +58,14 @@
58
58
  white-space: normal;
59
59
  overflow: auto;
60
60
  }
61
+
62
+ .k-prompt-box-affix:has(+.k-input-inner) {
63
+ padding-block-end: 0;
64
+ }
65
+
66
+ .k-input-inner + .k-prompt-box-affix {
67
+ padding-block-start: 0;
68
+ }
61
69
  }
62
70
 
63
71
  }
@@ -178,7 +178,8 @@
178
178
  flex: 1 1 auto;
179
179
  overflow: hidden;
180
180
  }
181
- .k-spreadsheet-sheets .k-tabstrip-items-wrapper {
181
+ // Remove tabstrip border (both real and pseudo-element)
182
+ .k-spreadsheet-sheets.k-tabstrip-scrollable.k-tabstrip-bottom > .k-tabstrip-items-wrapper::after {
182
183
  border-width: 0;
183
184
  }
184
185
 
@@ -236,6 +236,148 @@
236
236
  overflow-y: auto;
237
237
  }
238
238
  }
239
+
240
+ // Scrollable with buttons (not overlay) - use pseudo-element for border
241
+ // so tabs can paint over it (overflow:hidden clips negative margin)
242
+ &:not(.k-tabstrip-scrollable-overlay) {
243
+ > .k-tabstrip-items-wrapper {
244
+ &::after {
245
+ content: "";
246
+ position: absolute;
247
+ z-index: k-z-index("base");
248
+ border-width: 0;
249
+ border-style: solid;
250
+ border-color: inherit;
251
+ }
252
+ }
253
+
254
+ // Top position
255
+ &.k-tabstrip-top > .k-tabstrip-items-wrapper {
256
+ border-block-end-width: 0;
257
+
258
+ &::after {
259
+ inset-inline-start: 0;
260
+ inset-inline-end: 0;
261
+ inset-block-end: 0;
262
+ border-block-end-width: $kendo-tabstrip-border-width;
263
+ }
264
+
265
+ .k-tabstrip-item,
266
+ .k-item {
267
+ z-index: k-z-index("base", 1);
268
+ }
269
+ }
270
+
271
+ // Bottom position
272
+ &.k-tabstrip-bottom > .k-tabstrip-items-wrapper {
273
+ border-block-start-width: 0;
274
+
275
+ &::after {
276
+ inset-inline-start: 0;
277
+ inset-inline-end: 0;
278
+ inset-block-start: 0;
279
+ border-block-start-width: $kendo-tabstrip-border-width;
280
+ }
281
+
282
+ .k-tabstrip-item,
283
+ .k-item {
284
+ z-index: k-z-index("base", 1);
285
+ }
286
+ }
287
+
288
+ // Left position
289
+ &.k-tabstrip-left > .k-tabstrip-items-wrapper {
290
+ border-right-width: 0;
291
+
292
+ &::after {
293
+ inset-block-start: 0;
294
+ inset-block-end: 0;
295
+ right: 0;
296
+ border-right-width: $kendo-tabstrip-border-width;
297
+ }
298
+
299
+ .k-tabstrip-item,
300
+ .k-item {
301
+ z-index: k-z-index("base", 1);
302
+ }
303
+ }
304
+
305
+ // Right position
306
+ &.k-tabstrip-right > .k-tabstrip-items-wrapper {
307
+ border-left-width: 0;
308
+
309
+ &::after {
310
+ inset-block-start: 0;
311
+ inset-block-end: 0;
312
+ left: 0;
313
+ border-left-width: $kendo-tabstrip-border-width;
314
+ }
315
+
316
+ .k-tabstrip-item,
317
+ .k-item {
318
+ z-index: k-z-index("base", 1);
319
+ }
320
+ }
321
+ }
322
+
323
+ // Scrollable overlay - use pseudo-element on items for border
324
+ // (items-wrapper pseudo-elements are used for gradient overlays)
325
+ &.k-tabstrip-scrollable-overlay {
326
+ > .k-tabstrip-items-wrapper {
327
+ border-width: 0;
328
+
329
+ > .k-tabstrip-items {
330
+ position: relative;
331
+ border-color: inherit;
332
+
333
+ &::after {
334
+ content: "";
335
+ position: absolute;
336
+ z-index: k-z-index("base");
337
+ border-width: 0;
338
+ border-style: solid;
339
+ border-color: inherit;
340
+ }
341
+ }
342
+
343
+ .k-tabstrip-item,
344
+ .k-item {
345
+ z-index: k-z-index("base", 1);
346
+ }
347
+ }
348
+
349
+ // Top position
350
+ &.k-tabstrip-top > .k-tabstrip-items-wrapper > .k-tabstrip-items::after {
351
+ inset-inline-start: 0;
352
+ inset-inline-end: 0;
353
+ inset-block-end: 0;
354
+ border-block-end-width: $kendo-tabstrip-border-width;
355
+ }
356
+
357
+ // Bottom position
358
+ &.k-tabstrip-bottom > .k-tabstrip-items-wrapper > .k-tabstrip-items::after {
359
+ inset-inline-start: 0;
360
+ inset-inline-end: 0;
361
+ inset-block-start: 0;
362
+ border-block-start-width: $kendo-tabstrip-border-width;
363
+ }
364
+
365
+ // Left position
366
+ &.k-tabstrip-left > .k-tabstrip-items-wrapper > .k-tabstrip-items::after {
367
+ inset-block-start: 0;
368
+ inset-block-end: 0;
369
+ right: 0;
370
+ border-right-width: $kendo-tabstrip-border-width;
371
+ }
372
+
373
+ // Right position
374
+ &.k-tabstrip-right > .k-tabstrip-items-wrapper > .k-tabstrip-items::after {
375
+ inset-block-start: 0;
376
+ inset-block-end: 0;
377
+ left: 0;
378
+ border-left-width: $kendo-tabstrip-border-width;
379
+ }
380
+ }
239
381
  }
240
382
 
241
383
  .k-tabstrip-scrollable-overlay {