@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.
package/dist/all.css CHANGED
@@ -893,7 +893,6 @@
893
893
  .k-disabled {
894
894
  outline: none;
895
895
  cursor: default;
896
- background-color: var(--kendo-disabled-bg, inherit);
897
896
  color: var(--kendo-disabled-text, inherit);
898
897
  border-color: var(--kendo-disabled-border, inherit);
899
898
  pointer-events: none;
@@ -19628,6 +19627,15 @@ hr.k-separator {
19628
19627
  background-color: var(--kendo-actions-bg, inherit);
19629
19628
  }
19630
19629
 
19630
+ .k-list-container {
19631
+ display: flex;
19632
+ flex-flow: column nowrap;
19633
+ }
19634
+ .k-list-container > .k-list {
19635
+ flex: 1;
19636
+ height: 100%;
19637
+ }
19638
+
19631
19639
  .k-list {
19632
19640
  margin: 0;
19633
19641
  padding: 0;
@@ -21481,6 +21489,7 @@ kendo-badge-container {
21481
21489
 
21482
21490
  .k-color-preview-mask {
21483
21491
  width: 100%;
21492
+ min-width: var(--kendo-icon-size, 1rem);
21484
21493
  height: 100%;
21485
21494
  position: relative;
21486
21495
  }
@@ -21977,7 +21986,7 @@ kendo-badge-container {
21977
21986
  }
21978
21987
 
21979
21988
  .k-skeleton-wave .k-skeleton::after,
21980
- .k-skeleton-wave .k-skeleton::after {
21989
+ .k-skeleton-wave.k-skeleton::after {
21981
21990
  background-image: linear-gradient(to right, transparent, var(--kendo-skeleton-wave-bg, var(--kendo-neutral-20, inherit)), transparent);
21982
21991
  }
21983
21992
 
@@ -25517,6 +25526,8 @@ textarea.k-input-inner {
25517
25526
  display: flex;
25518
25527
  overflow: unset;
25519
25528
  flex-shrink: 0;
25529
+ grid-column: 1/-1;
25530
+ grid-row: 2/-1;
25520
25531
  }
25521
25532
  .k-progress-status-wrap.k-progress-start {
25522
25533
  justify-content: flex-start;
@@ -25574,10 +25585,10 @@ textarea.k-input-inner {
25574
25585
  }
25575
25586
  .k-progressbar-vertical .k-progress-status-wrap {
25576
25587
  flex-direction: column;
25577
- align-items: flex-end;
25588
+ align-items: flex-start;
25589
+ margin-inline-start: var(--kendo-progressbar-vertical-status-offset, calc(var(--kendo-font-size-sm, inherit)*var(--kendo-line-height, inherit)*-1 + -0.5rem));
25578
25590
  grid-row: 1/-1;
25579
- grid-column: 1/-1;
25580
- margin-inline-start: var(--kendo-progressbar-offset-y, -0.5rem);
25591
+ grid-column: -1/1;
25581
25592
  }
25582
25593
  .k-progressbar-vertical .k-progress-status {
25583
25594
  -ms-writing-mode: tb-lr;
@@ -26528,13 +26539,13 @@ textarea.k-input-inner {
26528
26539
  .k-slider-thumb:active, .k-draghandle:active, .k-slider-thumb.k-active, .k-active.k-draghandle {
26529
26540
  --INTERNAL--kendo-slider-thumb-bg: var(--kendo-component-bg, transparent);
26530
26541
  --INTERNAL--kendo-slider-thumb-text: inherit;
26531
- --INTERNAL--kendo-slider-thumb-border: var(--kendo-primary-120, inherit);
26542
+ --INTERNAL--kendo-slider-thumb-border: var(--kendo-primary-130, inherit);
26532
26543
  --INTERNAL--kendo-slider-thumb-gradient: transparent;
26533
26544
  }
26534
26545
  .k-slider-thumb:focus, .k-draghandle:focus, .k-slider-thumb.k-focus, .k-focus.k-draghandle {
26535
26546
  --INTERNAL--kendo-slider-thumb-bg: var(--kendo-component-bg, transparent);
26536
26547
  --INTERNAL--kendo-slider-thumb-text: inherit;
26537
- --INTERNAL--kendo-slider-thumb-border: var(--kendo-primary-120, inherit);
26548
+ --INTERNAL--kendo-slider-thumb-border: var(--kendo-primary-130, inherit);
26538
26549
  --INTERNAL--kendo-slider-thumb-gradient: transparent;
26539
26550
  }
26540
26551
 
@@ -26770,7 +26781,7 @@ textarea.k-input-inner {
26770
26781
  padding-inline-end: 100px;
26771
26782
  padding-inline-start: 100px;
26772
26783
  margin-inline-start: -100px;
26773
- margin-inline-end: -117px;
26784
+ margin-inline-end: calc(-100px - var(--kendo-scrollbar-width, 17px));
26774
26785
  }
26775
26786
 
26776
26787
  .k-calendar .k-scrollable-placeholder {
@@ -26889,7 +26900,6 @@ textarea.k-input-inner {
26889
26900
  .k-calendar-range .k-range-mid::before {
26890
26901
  content: "";
26891
26902
  position: absolute;
26892
- z-index: 1;
26893
26903
  inset: 0px;
26894
26904
  border-style: solid;
26895
26905
  border-width: var(--INTERNAL--kendo-calendar-range-border-width, 0);
@@ -26950,6 +26960,14 @@ textarea.k-input-inner {
26950
26960
  .k-calendar .k-calendar-nav-today.k-focus {
26951
26961
  color: var(--kendo-calendar-today-nav-hover-text, var(--kendo-link-hover-text, initial));
26952
26962
  }
26963
+ .k-calendar .k-nav-today.k-disabled,
26964
+ .k-calendar .k-calendar-nav-today.k-disabled {
26965
+ outline: none;
26966
+ cursor: default;
26967
+ color: var(--kendo-disabled-text, inherit);
26968
+ pointer-events: none;
26969
+ box-shadow: none;
26970
+ }
26953
26971
  .k-calendar .k-calendar-th {
26954
26972
  color: var(--kendo-calendar-header-cell-text, inherit);
26955
26973
  }
@@ -27043,6 +27061,7 @@ textarea.k-input-inner {
27043
27061
  --kendo-calendar-cell-bg: var( --kendo-calendar-range-bg, var(--kendo-neutral-30, inherit) );
27044
27062
  --kendo-calendar-cell-text: var( --kendo-calendar-range-text, inherit );
27045
27063
  --kendo-calendar-cell-link-bg: transparent;
27064
+ --kendo-calendar-cell-selected-bg: transparent;
27046
27065
  --kendo-calendar-cell-selected-shadow: none;
27047
27066
  }
27048
27067
  .k-calendar .k-calendar-td.k-range-start::before, .k-calendar .k-calendar-td.k-range-end::before, .k-calendar .k-calendar-td.k-range-mid::before {
@@ -27106,6 +27125,7 @@ textarea.k-input-inner {
27106
27125
  display: flex;
27107
27126
  position: relative;
27108
27127
  flex: 1 1 auto;
27128
+ overflow: hidden;
27109
27129
  }
27110
27130
 
27111
27131
  .k-time-highlight,
@@ -27116,7 +27136,7 @@ textarea.k-input-inner {
27116
27136
  border-style: solid;
27117
27137
  box-sizing: border-box;
27118
27138
  position: absolute;
27119
- top: calc(50% + var(--kendo-time-list-title-height, calc( var(--kendo-font-size-xs, inherit) * var(--kendo-line-height-lg, inherit) )) / 2);
27139
+ top: calc(50% + var(--kendo-time-list-title-height, calc( 0.75rem + var(--kendo-font-size-xs, inherit) * var(--kendo-line-height-lg, inherit) )) / 2);
27120
27140
  left: 0;
27121
27141
  right: 0;
27122
27142
  transform: translateY(-50%);
@@ -27157,7 +27177,7 @@ textarea.k-input-inner {
27157
27177
  border-style: solid;
27158
27178
  }
27159
27179
  .k-time-list-wrapper.k-focus::before {
27160
- top: calc(var(--kendo-time-list-title-spacing, 0.75rem) + var(--kendo-time-list-title-height, calc( var(--kendo-font-size-xs, inherit) * var(--kendo-line-height-lg, inherit) )));
27180
+ top: calc(var(--kendo-time-list-title-height, calc( 0.75rem + var(--kendo-font-size-xs, inherit) * var(--kendo-line-height-lg, inherit) )));
27161
27181
  }
27162
27182
  .k-time-list-wrapper.k-focus::after {
27163
27183
  bottom: 0;
@@ -27200,7 +27220,7 @@ textarea.k-input-inner {
27200
27220
  padding-inline-end: 100px;
27201
27221
  padding-inline-start: 100px;
27202
27222
  margin-inline-start: -100px;
27203
- margin-inline-end: -117px;
27223
+ margin-inline-end: calc(-100px - var(--kendo-scrollbar-width, 17px));
27204
27224
  }
27205
27225
  .k-time-container > ul,
27206
27226
  .k-time-list-content > ul {
@@ -27225,12 +27245,12 @@ textarea.k-input-inner {
27225
27245
  width: 0;
27226
27246
  height: var(--kendo-time-list-highlight-height, calc(var(--kendo-font-size, inherit)*var(--kendo-line-height, normal) + 0.5rem));
27227
27247
  align-self: center;
27228
- display: inline-flex;
27248
+ display: var(--kendo-time-list-separator-display, none);
27229
27249
  justify-content: center;
27230
27250
  align-items: center;
27231
27251
  position: relative;
27232
27252
  z-index: 11;
27233
- top: calc(var(--kendo-time-list-title-height, calc( var(--kendo-font-size-xs, inherit) * var(--kendo-line-height-lg, inherit) )) / 2);
27253
+ top: calc(var(--kendo-time-list-title-height, calc( 0.75rem + var(--kendo-font-size-xs, inherit) * var(--kendo-line-height-lg, inherit) )) / 2);
27234
27254
  }
27235
27255
 
27236
27256
  .k-timeselector-sm {
@@ -29703,6 +29723,11 @@ k-datetimepicker[dir=rtl] .k-time-tab .k-datetime-selector, .k-rtl k-datetimepic
29703
29723
  align-self: center;
29704
29724
  align-items: center;
29705
29725
  }
29726
+ .k-toolbar .k-toolbar-item:focus,
29727
+ .k-toolbar .k-toolbar-item.k-focus {
29728
+ outline-width: var(--kendo-toolbar-item-focus-outline-width, 1px);
29729
+ outline-style: var(--kendo-toolbar-item-focus-outline-style, solid);
29730
+ }
29706
29731
 
29707
29732
  .k-toolbar-group {
29708
29733
  display: flex;
@@ -29802,6 +29827,10 @@ kendo-toolbar-renderer {
29802
29827
  .k-toolbar .k-separator {
29803
29828
  border-color: var(--kendo-toolbar-separator-border, var(--kendo-neutral-60, inherit));
29804
29829
  }
29830
+ .k-toolbar .k-toolbar-item:focus,
29831
+ .k-toolbar .k-toolbar-item.k-focus {
29832
+ outline-color: var(--kendo-toolbar-item-focus-outline-color, var(--kendo-neutral-130, inherit));
29833
+ }
29805
29834
 
29806
29835
  .k-overflow-container .k-button:hover, .k-overflow-container .k-button.k-hover {
29807
29836
  color: var(--kendo-menu-popup-item-hover-text, initial);
@@ -30002,13 +30031,42 @@ kendo-toolbar-renderer {
30002
30031
  }
30003
30032
 
30004
30033
  .k-actionsheet-container {
30005
- width: 100vw;
30006
- height: 100vh;
30034
+ width: 100%;
30035
+ height: 100%;
30036
+ max-width: max(100%, 100vw);
30037
+ max-height: max(100%, 100vh);
30007
30038
  position: fixed;
30008
30039
  top: 0;
30009
30040
  left: 0;
30010
30041
  z-index: 9999;
30011
30042
  overflow: hidden;
30043
+ transform: translateZ(0);
30044
+ }
30045
+
30046
+ .k-actionsheet-container > .k-overlay {
30047
+ position: absolute;
30048
+ z-index: 1;
30049
+ }
30050
+ .k-actionsheet-container > .k-animation-container {
30051
+ width: 100%;
30052
+ height: 100%;
30053
+ border-radius: 0;
30054
+ overflow: hidden;
30055
+ position: absolute;
30056
+ z-index: 2;
30057
+ top: 0;
30058
+ left: 0;
30059
+ pointer-events: none;
30060
+ }
30061
+ .k-actionsheet-container > .k-animation-container > .k-child-animation-container {
30062
+ position: absolute;
30063
+ }
30064
+ .k-actionsheet-container > .k-actionsheet {
30065
+ position: absolute;
30066
+ z-index: 2;
30067
+ }
30068
+ .k-actionsheet-container .k-actionsheet {
30069
+ pointer-events: all;
30012
30070
  }
30013
30071
 
30014
30072
  .k-actionsheet {
@@ -30016,7 +30074,8 @@ kendo-toolbar-renderer {
30016
30074
  padding-block: var(--kendo-actionsheet-padding-y, 0px);
30017
30075
  width: var(--kendo-actionsheet-width, 360px);
30018
30076
  max-width: var(--kendo-actionsheet-max-width, 100%);
30019
- max-height: var(--kendo-actionsheet-max-height, 50vh);
30077
+ height: var(--kendo-actionsheet-height, 60vh);
30078
+ max-height: var(--kendo-actionsheet-max-height, 60vh);
30020
30079
  border-width: 0;
30021
30080
  border-style: solid;
30022
30081
  border-color: transparent;
@@ -30024,10 +30083,8 @@ kendo-toolbar-renderer {
30024
30083
  font-size: var(--kendo-actionsheet-font-size, var(--kendo-font-size, inherit));
30025
30084
  font-family: var(--kendo-actionsheet-font-family, var(--kendo-font-family, inherit));
30026
30085
  line-height: var(--kendo-actionsheet-line-height, var(--kendo-line-height, inherit));
30027
- overflow-x: hidden;
30028
- overflow-y: auto;
30029
- position: fixed;
30030
- z-index: 10002;
30086
+ overflow: hidden;
30087
+ position: relative;
30031
30088
  }
30032
30089
  .k-actionsheet *,
30033
30090
  .k-actionsheet *::before,
@@ -30036,11 +30093,13 @@ kendo-toolbar-renderer {
30036
30093
  }
30037
30094
 
30038
30095
  .k-actionsheet-fullscreen {
30096
+ width: 100%;
30097
+ max-width: 100%;
30039
30098
  max-height: 100%;
30040
30099
  height: 100%;
30041
30100
  }
30042
30101
 
30043
- .k-actionsheet-header, .k-actionsheet-titlebar {
30102
+ .k-actionsheet-header, .k-actionsheet-titlebar, .k-actionsheet-jq .k-actionsheet-header, .k-actionsheet-jq .k-actionsheet-titlebar {
30044
30103
  padding-inline: var(--kendo-actionsheet-header-padding-x, 1rem);
30045
30104
  padding-block: var(--kendo-actionsheet-header-padding-y, 0.5rem);
30046
30105
  border-width: 0;
@@ -30052,18 +30111,31 @@ kendo-toolbar-renderer {
30052
30111
  font-family: var(--kendo-actionsheet-header-font-family, inherit);
30053
30112
  line-height: var(--kendo-actionsheet-header-line-height, inherit);
30054
30113
  flex: none;
30114
+ gap: var(--kendo-actionsheet-header-gap, 1rem);
30115
+ }
30116
+
30117
+ .k-actionsheet-titlebar, .k-actionsheet-jq .k-actionsheet-header, .k-actionsheet-jq .k-actionsheet-titlebar {
30118
+ display: flex;
30119
+ flex-flow: column nowrap;
30120
+ align-items: center;
30055
30121
  }
30056
30122
 
30057
- .k-actionsheet-titlebar {
30123
+ .k-actionsheet-titlebar-group {
30058
30124
  display: flex;
30059
30125
  flex-flow: row nowrap;
30060
30126
  align-items: center;
30127
+ width: 100%;
30061
30128
  }
30062
30129
 
30063
30130
  .k-actionsheet-title {
30064
30131
  flex: 1;
30065
30132
  }
30066
30133
 
30134
+ .k-actionsheet-subtitle {
30135
+ font-size: var(--kendo-actionsheet-subtitle-font-size, var(--kendo-font-size-sm, inherit));
30136
+ line-height: var(--kendo-actionsheet-subtitle-line-height, var(--kendo-line-height-sm, inherit));
30137
+ }
30138
+
30067
30139
  .k-actionsheet-actions {
30068
30140
  flex: none;
30069
30141
  }
@@ -30071,6 +30143,7 @@ kendo-toolbar-renderer {
30071
30143
  .k-actionsheet-content {
30072
30144
  flex: 1;
30073
30145
  overflow: auto;
30146
+ position: relative;
30074
30147
  }
30075
30148
 
30076
30149
  .k-actionsheet-footer {
@@ -30081,12 +30154,18 @@ kendo-toolbar-renderer {
30081
30154
  margin: 0;
30082
30155
  padding: 0;
30083
30156
  list-style: none;
30157
+ flex: none;
30084
30158
  }
30085
30159
 
30086
30160
  .k-actionsheet-item {
30087
30161
  padding: 0;
30088
30162
  box-sizing: border-box;
30089
30163
  }
30164
+ .k-actionsheet-item:focus, .k-actionsheet-item.k-focus {
30165
+ outline-width: var(--kendo-actionsheet-item-focus-outline-width, 1px);
30166
+ outline-style: solid;
30167
+ outline-offset: calc(var(--kendo-actionsheet-item-focus-outline-width, 1px)*-1);
30168
+ }
30090
30169
 
30091
30170
  .k-actionsheet-action {
30092
30171
  margin: 0;
@@ -30099,14 +30178,9 @@ kendo-toolbar-renderer {
30099
30178
  outline: 0;
30100
30179
  display: flex;
30101
30180
  flex-flow: row nowrap;
30102
- align-items: center;
30181
+ align-items: flex-start;
30103
30182
  gap: var(--kendo-actionsheet-item-spacing, 0.5rem);
30104
30183
  }
30105
- .k-actionsheet-action:focus, .k-actionsheet-action.k-focus {
30106
- outline-width: var(--kendo-actionsheet-item-focus-outline-width, 1px);
30107
- outline-style: solid;
30108
- outline-offset: calc(var(--kendo-actionsheet-item-focus-outline-width, 1px)*-1);
30109
- }
30110
30184
 
30111
30185
  .k-actionsheet-item-icon {
30112
30186
  font-size: var(--kendo-actionsheet-item-icon-size, var(--kendo-icon-size, 1rem));
@@ -30129,6 +30203,7 @@ kendo-toolbar-renderer {
30129
30203
  .k-actionsheet > .k-hr {
30130
30204
  margin: 0;
30131
30205
  border-color: inherit;
30206
+ flex: none;
30132
30207
  }
30133
30208
 
30134
30209
  .k-actionsheet-top {
@@ -30185,6 +30260,27 @@ kendo-toolbar-renderer {
30185
30260
  display: flex;
30186
30261
  flex-flow: column nowrap;
30187
30262
  }
30263
+ .k-adaptive-actionsheet .k-actionsheet-titlebar, .k-adaptive-actionsheet .k-actionsheet-jq .k-actionsheet-header, .k-actionsheet-jq .k-adaptive-actionsheet .k-actionsheet-header {
30264
+ padding-inline: var(--kendo-adaptive-actionsheet-header-padding-x, 1rem);
30265
+ padding-block: var(--kendo-adaptive-actionsheet-header-padding-y, 1rem);
30266
+ border-bottom-width: var(--kendo-adaptive-actionsheet-header-border-width, 1px);
30267
+ }
30268
+ .k-adaptive-actionsheet .k-actionsheet-content {
30269
+ padding-inline: var(--kendo-adaptive-actionsheet-content-padding-x, 1rem);
30270
+ padding-block: var(--kendo-adaptive-actionsheet-content-padding-y, 0.5rem);
30271
+ }
30272
+ .k-adaptive-actionsheet .k-actionsheet-footer {
30273
+ padding-inline: var(--kendo-adaptive-actionsheet-footer-padding-x, 1rem);
30274
+ padding-block: var(--kendo-adaptive-actionsheet-footer-padding-y, 0.5rem);
30275
+ }
30276
+ .k-adaptive-actionsheet .k-list-container,
30277
+ .k-adaptive-actionsheet .k-treeview {
30278
+ height: 100%;
30279
+ }
30280
+ .k-adaptive-actionsheet .k-list-filter {
30281
+ width: 100%;
30282
+ padding-inline: 0;
30283
+ }
30188
30284
  .k-adaptive-actionsheet .k-calendar {
30189
30285
  margin-inline: auto;
30190
30286
  border-width: 0;
@@ -30201,6 +30297,46 @@ kendo-toolbar-renderer {
30201
30297
  .k-adaptive-actionsheet .k-timeselector .k-time-list-wrapper {
30202
30298
  height: 100%;
30203
30299
  }
30300
+ .k-adaptive-actionsheet .k-datetime-wrap {
30301
+ width: 100%;
30302
+ height: 100%;
30303
+ display: flex;
30304
+ flex-flow: column nowrap;
30305
+ }
30306
+ .k-adaptive-actionsheet .k-datetime-selector {
30307
+ flex: 1 1 auto;
30308
+ }
30309
+ .k-adaptive-actionsheet .k-datetime-calendar-wrap {
30310
+ width: 100%;
30311
+ position: absolute;
30312
+ top: 0;
30313
+ left: 0;
30314
+ bottom: 0;
30315
+ flex: 0 0 100%;
30316
+ }
30317
+ .k-adaptive-actionsheet .k-datetime-time-wrap {
30318
+ width: 100%;
30319
+ position: absolute;
30320
+ top: 0;
30321
+ left: 100%;
30322
+ bottom: 0;
30323
+ flex: 0 0 100%;
30324
+ }
30325
+ .k-adaptive-actionsheet .k-scrollable-wrap {
30326
+ height: 100%;
30327
+ overflow-y: auto;
30328
+ }
30329
+
30330
+ .k-actionsheet-jq.k-actionsheet {
30331
+ height: auto;
30332
+ position: relative;
30333
+ }
30334
+ .k-actionsheet-jq .k-actionsheet-header, .k-actionsheet-jq .k-actionsheet-titlebar {
30335
+ align-items: flex-start;
30336
+ }
30337
+ .k-actionsheet-jq .k-actionsheet-action {
30338
+ align-items: center;
30339
+ }
30204
30340
 
30205
30341
  .k-actionsheet {
30206
30342
  color: var(--kendo-actionsheet-text, var(--kendo-component-text, initial));
@@ -30209,13 +30345,17 @@ kendo-toolbar-renderer {
30209
30345
  box-shadow: var(--kendo-actionsheet-shadow, var(--kendo-box-shadow-depth-4, none));
30210
30346
  }
30211
30347
 
30212
- .k-actionsheet-header, .k-actionsheet-titlebar {
30348
+ .k-actionsheet-header, .k-actionsheet-titlebar, .k-actionsheet-jq .k-actionsheet-header, .k-actionsheet-jq .k-actionsheet-titlebar {
30213
30349
  color: var(--kendo-actionsheet-header-text, inherit);
30214
30350
  background-color: var(--kendo-actionsheet-header-bg, inherit);
30215
30351
  border-color: var(--kendo-actionsheet-header-border, inherit);
30216
30352
  box-shadow: var(--kendo-actionsheet-header-shadow, none);
30217
30353
  }
30218
30354
 
30355
+ .k-actionsheet-subtitle-text {
30356
+ color: var(--kendo-actionsheet-subtitle-text, var(--kendo-subtle-text, inherit));
30357
+ }
30358
+
30219
30359
  .k-actionsheet-item-icon {
30220
30360
  color: var(--kendo-actionsheet-item-icon-color, var(--kendo-primary-110, inherit));
30221
30361
  }
@@ -30224,39 +30364,43 @@ kendo-toolbar-renderer {
30224
30364
  color: var(--kendo-actionsheet-item-description-text, var(--kendo-subtle-text, inherit));
30225
30365
  }
30226
30366
 
30227
- .k-actionsheet-action {
30367
+ .k-actionsheet-item {
30228
30368
  color: var(--INTERNAL--kendo-actionsheet-item-text, inherit);
30229
30369
  background-color: var(--INTERNAL--kendo-actionsheet-item-bg, inherit);
30230
30370
  border-color: var(--INTERNAL--kendo-actionsheet-item-border, inherit);
30231
30371
  outline-color: var(--INTERNAL--kendo-actionsheet-item-outline, inherit);
30232
30372
  }
30233
- .k-actionsheet-action:hover, .k-actionsheet-action.k-hover {
30373
+ .k-actionsheet-item:hover, .k-actionsheet-item.k-hover {
30234
30374
  --INTERNAL--kendo-actionsheet-item-text: var( --kendo-actionsheet-item-hover-text, var(--kendo-hover-text, inherit) );
30235
30375
  --INTERNAL--kendo-actionsheet-item-bg: var( --kendo-actionsheet-item-hover-bg, var(--kendo-hover-bg, inherit) );
30236
30376
  --INTERNAL--kendo-actionsheet-item-border: var( --kendo-actionsheet-item-hover-border, inherit );
30237
30377
  }
30238
- .k-actionsheet-action:focus, .k-actionsheet-action.k-focus {
30378
+ .k-actionsheet-item:focus, .k-actionsheet-item.k-focus {
30239
30379
  --INTERNAL--kendo-actionsheet-item-text: var( --kendo-actionsheet-item-focus-text, inherit );
30240
30380
  --INTERNAL--kendo-actionsheet-item-bg: var( --kendo-actionsheet-item-focus-bg, inherit );
30241
30381
  --INTERNAL--kendo-actionsheet-item-border: var( --kendo-actionsheet-item-focus-border, inherit );
30242
30382
  --INTERNAL--kendo-actionsheet-item-outline: var( --kendo-actionsheet-item-focus-outline, var(--kendo-outline-color, inherit) );
30243
30383
  }
30244
- .k-actionsheet-action:focus:hover, .k-actionsheet-action:focus.k-hover, .k-actionsheet-action.k-focus:hover, .k-actionsheet-action.k-focus.k-hover {
30384
+ .k-actionsheet-item:focus:hover, .k-actionsheet-item:focus.k-hover, .k-actionsheet-item.k-focus:hover, .k-actionsheet-item.k-focus.k-hover {
30245
30385
  --INTERNAL--kendo-actionsheet-item-text: var( --kendo-actionsheet-item-focus-hover-text, var(--kendo-hover-text, inherit) );
30246
30386
  --INTERNAL--kendo-actionsheet-item-bg: var( --kendo-actionsheet-item-focus-hover-bg, var(--kendo-hover-bg, inherit) );
30247
30387
  --INTERNAL--kendo-actionsheet-item-border: var( --kendo-actionsheet-item-focus-hover-border, inherit );
30248
30388
  }
30249
- .k-actionsheet-action:disabled, .k-actionsheet-action.k-disabled {
30389
+ .k-actionsheet-item:disabled, .k-actionsheet-item.k-disabled {
30250
30390
  --INTERNAL--kendo-actionsheet-item-text: var( --kendo-actionsheet-item-disabled-text, var(--kendo-disabled-text, inherit) );
30251
30391
  --INTERNAL--kendo-actionsheet-item-bg: var( --kendo-actionsheet-item-disabled-bg, var(--kendo-component-bg, initial) );
30252
30392
  --INTERNAL--kendo-actionsheet-item-border: var( --kendo-actionsheet-item-disabled-border, var(--kendo-disabled-border, inherit) );
30253
30393
  }
30254
- .k-actionsheet-action:disabled .k-actionsheet-item-description,
30255
- .k-actionsheet-action:disabled .k-actionsheet-item-icon, .k-actionsheet-action.k-disabled .k-actionsheet-item-description,
30256
- .k-actionsheet-action.k-disabled .k-actionsheet-item-icon {
30394
+ .k-actionsheet-item:disabled .k-actionsheet-item-description,
30395
+ .k-actionsheet-item:disabled .k-actionsheet-item-icon, .k-actionsheet-item.k-disabled .k-actionsheet-item-description,
30396
+ .k-actionsheet-item.k-disabled .k-actionsheet-item-icon {
30257
30397
  color: inherit;
30258
30398
  }
30259
30399
 
30400
+ .k-adaptive-actionsheet .k-actionsheet-titlebar, .k-adaptive-actionsheet .k-actionsheet-jq .k-actionsheet-header, .k-actionsheet-jq .k-adaptive-actionsheet .k-actionsheet-header {
30401
+ border-color: var(--kendo-adaptive-actionsheet-header-border, var(--kendo-component-border, initial));
30402
+ }
30403
+
30260
30404
  .k-dialog-wrapper {
30261
30405
  display: flex;
30262
30406
  align-items: center;
@@ -34258,26 +34402,26 @@ kendo-card-footer {
34258
34402
  margin-inline-start: calc(var(--kendo-grid-group-indicator-gap, 0.75rem)/2);
34259
34403
  }
34260
34404
 
34261
- .k-grouping-dropclue {
34405
+ .k-grouping-dropclue, .k-reorder-cue {
34262
34406
  width: calc(var(--kendo-grid-group-dropclue-size, 6px)*2);
34263
34407
  height: var(--kendo-grid-group-dropclue-height, calc(var(--kendo-line-height, normal)*1em + 0.875rem + 6px));
34264
34408
  position: absolute;
34265
34409
  top: var(--kendo-grid-group-dropclue-top, 2px);
34266
34410
  box-sizing: content-box;
34267
34411
  }
34268
- .k-grouping-dropclue::before, .k-grouping-dropclue::after {
34412
+ .k-grouping-dropclue::before, .k-reorder-cue::before, .k-grouping-dropclue::after, .k-reorder-cue::after {
34269
34413
  display: inline-block;
34270
34414
  content: "";
34271
34415
  position: absolute;
34272
34416
  }
34273
- .k-grouping-dropclue::before {
34417
+ .k-grouping-dropclue::before, .k-reorder-cue::before {
34274
34418
  width: var(--kendo-grid-group-dropclue-dot-size, 6px);
34275
34419
  height: var(--kendo-grid-group-dropclue-dot-size, 6px);
34276
34420
  border-radius: 50%;
34277
34421
  top: 0;
34278
34422
  left: calc(var(--kendo-grid-group-dropclue-dot-size, 6px)/2);
34279
34423
  }
34280
- .k-grouping-dropclue::after {
34424
+ .k-grouping-dropclue::after, .k-reorder-cue::after {
34281
34425
  width: var(--kendo-grid-group-dropclue-line-size, 1px);
34282
34426
  height: calc(100% - var(--kendo-grid-group-dropclue-size, 6px));
34283
34427
  top: var(--kendo-grid-group-dropclue-size, 6px);
@@ -34433,7 +34577,7 @@ div.k-grid-footer {
34433
34577
  }
34434
34578
 
34435
34579
  .k-grid-filter-popup {
34436
- min-width: 200px;
34580
+ min-width: 230px;
34437
34581
  }
34438
34582
 
34439
34583
  .k-grid-column-menu-standalone a.k-grid-filter {
@@ -34963,7 +35107,7 @@ div.k-grid-norecords {
34963
35107
  .k-filter-menu-container .k-action-buttons,
34964
35108
  .k-filter-menu-container .k-columnmenu-actions, .k-filter-menu-container .k-form-buttons {
34965
35109
  margin: 0;
34966
- padding-block-start: var(--kendo-filter-menu-container-padding-y, 0.75rem);
35110
+ padding-block-start: calc(var(--kendo-filter-menu-container-padding-y, 0.75rem) - var(--kendo-grid-column-menu-spacing, 0.5rem));
34967
35111
  padding-block-end: 0;
34968
35112
  padding-inline: 0;
34969
35113
  }
@@ -35176,7 +35320,7 @@ tbody .k-group-cell {
35176
35320
  background-color: var(--kendo-grid-grouping-row-bg, var(--kendo-component-bg, initial));
35177
35321
  }
35178
35322
 
35179
- .k-grouping-dropclue::before, .k-grouping-dropclue::after {
35323
+ .k-grouping-dropclue::before, .k-reorder-cue::before, .k-grouping-dropclue::after, .k-reorder-cue::after {
35180
35324
  background-color: var(--kendo-grid-group-dropclue-bg, var(--kendo-primary-100, inherit));
35181
35325
  }
35182
35326
 
@@ -35478,6 +35622,13 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
35478
35622
  .k-column-menu .k-check-all-wrap {
35479
35623
  border-color: var(--kendo-component-border, initial);
35480
35624
  }
35625
+ .k-column-menu .k-listgroup-item.k-disabled {
35626
+ outline: none;
35627
+ cursor: default;
35628
+ background-color: var(--kendo-disabled-bg, inherit);
35629
+ pointer-events: none;
35630
+ box-shadow: none;
35631
+ }
35481
35632
 
35482
35633
  .k-grid-norecords-template {
35483
35634
  background-color: var(--kendo-component-bg, initial);
@@ -37521,6 +37672,10 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
37521
37672
  .k-filter .k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after {
37522
37673
  background-color: var(--kendo-filter-line-bg, var(--kendo-component-border, initial));
37523
37674
  }
37675
+ .k-filter .k-toolbar:focus,
37676
+ .k-filter .k-toolbar.k-focus {
37677
+ border-color: var(--kendo-filter-toolbar-focus-border, var(--kendo-neutral-130, inherit));
37678
+ }
37524
37679
 
37525
37680
  .k-filemanager {
37526
37681
  border-width: var(--kendo-filemanager-border-width, 1px);
@@ -38640,6 +38795,14 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
38640
38795
  color: var(---kendo-editor-ct-popup-text, var(--kendo-selected-text, initial));
38641
38796
  background-color: var(--kendo-editor-ct-popup-bg, var(--kendo-selected-bg, initial));
38642
38797
  }
38798
+ .k-ct-popup .k-disabled:not(.k-selected) {
38799
+ outline: none;
38800
+ cursor: default;
38801
+ background-color: var(--kendo-disabled-bg, inherit);
38802
+ border-color: var(--kendo-disabled-border, inherit);
38803
+ pointer-events: none;
38804
+ box-shadow: none;
38805
+ }
38643
38806
 
38644
38807
  .k-editor-content .k-text-selected, .k-editor-content::selection {
38645
38808
  color: var(--kendo-editor-selected-text, #ffffff);
@@ -39604,14 +39767,23 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
39604
39767
  .k-task-single .k-task-complete {
39605
39768
  background-color: var(--kendo-gantt-task-progress-bg, var(--kendo-neutral-160, inherit));
39606
39769
  }
39770
+ .k-task-single:hover .k-task-complete {
39771
+ background-color: var(--kendo-gantt-task-progress-hover-bg, var(--kendo-neutral-190, inherit));
39772
+ }
39607
39773
 
39608
39774
  .k-task-delayed .k-task-complete {
39609
39775
  background-color: var(--kendo-gantt-delayed-bg, var(--kendo-error-160, inherit));
39610
39776
  }
39777
+ .k-task-delayed:hover .k-task-complete {
39778
+ background-color: var(--kendo-gantt-delayed-hover-bg, var(--kendo-error-190, inherit));
39779
+ }
39611
39780
 
39612
39781
  .k-task-advanced .k-task-complete {
39613
39782
  background-color: var(--kendo-gantt-advanced-bg, var(--kendo-success-160, inherit));
39614
39783
  }
39784
+ .k-task-advanced:hover .k-task-complete {
39785
+ background-color: var(--kendo-gantt-advanced-hover-bg, var(--kendo-success-190, inherit));
39786
+ }
39615
39787
 
39616
39788
  .k-task-single.k-selected {
39617
39789
  border-color: var(--kendo-gantt-task-selected-border, transparent);
@@ -41646,7 +41818,7 @@ kendo-scheduler .k-recurrence-editor {
41646
41818
  box-sizing: border-box;
41647
41819
  }
41648
41820
  .k-timeline ul {
41649
- margin: 0;
41821
+ margin: 0 0 1px 0;
41650
41822
  padding: 0;
41651
41823
  }
41652
41824
  .k-timeline ul li {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-theme-fluent",
3
3
  "description": "A css variables based theme for Kendo UI that follows the Fluent design system guidelines.",
4
- "version": "5.8.2-dev.4",
4
+ "version": "5.8.2-dev.6",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -45,10 +45,10 @@
45
45
  },
46
46
  "dependencies": {
47
47
  "@progress/kendo-font-icons": "^0.4.0",
48
- "@progress/kendo-theme-utils": "^5.8.2-dev.4"
48
+ "@progress/kendo-theme-utils": "^5.8.2-dev.6"
49
49
  },
50
50
  "devDependencies": {
51
51
  "sass-build": "^1.0.0"
52
52
  },
53
- "gitHead": "03c192e0d4c7227c7d8f41b7fefee897888e6218"
53
+ "gitHead": "b1b2e33a3ce1b92bcefae87e8c46cbd797d814d1"
54
54
  }