@progress/kendo-theme-fluent 5.8.2-dev.5 → 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 +153 -25
- package/package.json +3 -3
- package/scss/action-sheet/_layout.scss +150 -15
- package/scss/action-sheet/_theme.scss +10 -2
- package/scss/action-sheet/_variables.scss +48 -1
- package/scss/action-sheet/index.scss +1 -0
- package/scss/gantt/_theme.scss +12 -4
- package/scss/gantt/_variables.scss +3 -0
- package/scss/list/_layout.scss +11 -0
- package/scss/skeleton/_theme.scss +2 -2
- package/scss/timeselector/_layout.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -19627,6 +19627,15 @@ hr.k-separator {
|
|
|
19627
19627
|
background-color: var(--kendo-actions-bg, inherit);
|
|
19628
19628
|
}
|
|
19629
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
|
+
|
|
19630
19639
|
.k-list {
|
|
19631
19640
|
margin: 0;
|
|
19632
19641
|
padding: 0;
|
|
@@ -21977,7 +21986,7 @@ kendo-badge-container {
|
|
|
21977
21986
|
}
|
|
21978
21987
|
|
|
21979
21988
|
.k-skeleton-wave .k-skeleton::after,
|
|
21980
|
-
.k-skeleton-wave
|
|
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
|
|
|
@@ -27116,6 +27125,7 @@ textarea.k-input-inner {
|
|
|
27116
27125
|
display: flex;
|
|
27117
27126
|
position: relative;
|
|
27118
27127
|
flex: 1 1 auto;
|
|
27128
|
+
overflow: hidden;
|
|
27119
27129
|
}
|
|
27120
27130
|
|
|
27121
27131
|
.k-time-highlight,
|
|
@@ -30021,13 +30031,42 @@ kendo-toolbar-renderer {
|
|
|
30021
30031
|
}
|
|
30022
30032
|
|
|
30023
30033
|
.k-actionsheet-container {
|
|
30024
|
-
width:
|
|
30025
|
-
height:
|
|
30034
|
+
width: 100%;
|
|
30035
|
+
height: 100%;
|
|
30036
|
+
max-width: max(100%, 100vw);
|
|
30037
|
+
max-height: max(100%, 100vh);
|
|
30026
30038
|
position: fixed;
|
|
30027
30039
|
top: 0;
|
|
30028
30040
|
left: 0;
|
|
30029
30041
|
z-index: 9999;
|
|
30030
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;
|
|
30031
30070
|
}
|
|
30032
30071
|
|
|
30033
30072
|
.k-actionsheet {
|
|
@@ -30035,7 +30074,8 @@ kendo-toolbar-renderer {
|
|
|
30035
30074
|
padding-block: var(--kendo-actionsheet-padding-y, 0px);
|
|
30036
30075
|
width: var(--kendo-actionsheet-width, 360px);
|
|
30037
30076
|
max-width: var(--kendo-actionsheet-max-width, 100%);
|
|
30038
|
-
|
|
30077
|
+
height: var(--kendo-actionsheet-height, 60vh);
|
|
30078
|
+
max-height: var(--kendo-actionsheet-max-height, 60vh);
|
|
30039
30079
|
border-width: 0;
|
|
30040
30080
|
border-style: solid;
|
|
30041
30081
|
border-color: transparent;
|
|
@@ -30043,10 +30083,8 @@ kendo-toolbar-renderer {
|
|
|
30043
30083
|
font-size: var(--kendo-actionsheet-font-size, var(--kendo-font-size, inherit));
|
|
30044
30084
|
font-family: var(--kendo-actionsheet-font-family, var(--kendo-font-family, inherit));
|
|
30045
30085
|
line-height: var(--kendo-actionsheet-line-height, var(--kendo-line-height, inherit));
|
|
30046
|
-
overflow
|
|
30047
|
-
|
|
30048
|
-
position: fixed;
|
|
30049
|
-
z-index: 10002;
|
|
30086
|
+
overflow: hidden;
|
|
30087
|
+
position: relative;
|
|
30050
30088
|
}
|
|
30051
30089
|
.k-actionsheet *,
|
|
30052
30090
|
.k-actionsheet *::before,
|
|
@@ -30055,11 +30093,13 @@ kendo-toolbar-renderer {
|
|
|
30055
30093
|
}
|
|
30056
30094
|
|
|
30057
30095
|
.k-actionsheet-fullscreen {
|
|
30096
|
+
width: 100%;
|
|
30097
|
+
max-width: 100%;
|
|
30058
30098
|
max-height: 100%;
|
|
30059
30099
|
height: 100%;
|
|
30060
30100
|
}
|
|
30061
30101
|
|
|
30062
|
-
.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 {
|
|
30063
30103
|
padding-inline: var(--kendo-actionsheet-header-padding-x, 1rem);
|
|
30064
30104
|
padding-block: var(--kendo-actionsheet-header-padding-y, 0.5rem);
|
|
30065
30105
|
border-width: 0;
|
|
@@ -30071,18 +30111,31 @@ kendo-toolbar-renderer {
|
|
|
30071
30111
|
font-family: var(--kendo-actionsheet-header-font-family, inherit);
|
|
30072
30112
|
line-height: var(--kendo-actionsheet-header-line-height, inherit);
|
|
30073
30113
|
flex: none;
|
|
30114
|
+
gap: var(--kendo-actionsheet-header-gap, 1rem);
|
|
30074
30115
|
}
|
|
30075
30116
|
|
|
30076
|
-
.k-actionsheet-titlebar {
|
|
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;
|
|
30121
|
+
}
|
|
30122
|
+
|
|
30123
|
+
.k-actionsheet-titlebar-group {
|
|
30077
30124
|
display: flex;
|
|
30078
30125
|
flex-flow: row nowrap;
|
|
30079
30126
|
align-items: center;
|
|
30127
|
+
width: 100%;
|
|
30080
30128
|
}
|
|
30081
30129
|
|
|
30082
30130
|
.k-actionsheet-title {
|
|
30083
30131
|
flex: 1;
|
|
30084
30132
|
}
|
|
30085
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
|
+
|
|
30086
30139
|
.k-actionsheet-actions {
|
|
30087
30140
|
flex: none;
|
|
30088
30141
|
}
|
|
@@ -30090,6 +30143,7 @@ kendo-toolbar-renderer {
|
|
|
30090
30143
|
.k-actionsheet-content {
|
|
30091
30144
|
flex: 1;
|
|
30092
30145
|
overflow: auto;
|
|
30146
|
+
position: relative;
|
|
30093
30147
|
}
|
|
30094
30148
|
|
|
30095
30149
|
.k-actionsheet-footer {
|
|
@@ -30100,12 +30154,18 @@ kendo-toolbar-renderer {
|
|
|
30100
30154
|
margin: 0;
|
|
30101
30155
|
padding: 0;
|
|
30102
30156
|
list-style: none;
|
|
30157
|
+
flex: none;
|
|
30103
30158
|
}
|
|
30104
30159
|
|
|
30105
30160
|
.k-actionsheet-item {
|
|
30106
30161
|
padding: 0;
|
|
30107
30162
|
box-sizing: border-box;
|
|
30108
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
|
+
}
|
|
30109
30169
|
|
|
30110
30170
|
.k-actionsheet-action {
|
|
30111
30171
|
margin: 0;
|
|
@@ -30118,14 +30178,9 @@ kendo-toolbar-renderer {
|
|
|
30118
30178
|
outline: 0;
|
|
30119
30179
|
display: flex;
|
|
30120
30180
|
flex-flow: row nowrap;
|
|
30121
|
-
align-items:
|
|
30181
|
+
align-items: flex-start;
|
|
30122
30182
|
gap: var(--kendo-actionsheet-item-spacing, 0.5rem);
|
|
30123
30183
|
}
|
|
30124
|
-
.k-actionsheet-action:focus, .k-actionsheet-action.k-focus {
|
|
30125
|
-
outline-width: var(--kendo-actionsheet-item-focus-outline-width, 1px);
|
|
30126
|
-
outline-style: solid;
|
|
30127
|
-
outline-offset: calc(var(--kendo-actionsheet-item-focus-outline-width, 1px)*-1);
|
|
30128
|
-
}
|
|
30129
30184
|
|
|
30130
30185
|
.k-actionsheet-item-icon {
|
|
30131
30186
|
font-size: var(--kendo-actionsheet-item-icon-size, var(--kendo-icon-size, 1rem));
|
|
@@ -30148,6 +30203,7 @@ kendo-toolbar-renderer {
|
|
|
30148
30203
|
.k-actionsheet > .k-hr {
|
|
30149
30204
|
margin: 0;
|
|
30150
30205
|
border-color: inherit;
|
|
30206
|
+
flex: none;
|
|
30151
30207
|
}
|
|
30152
30208
|
|
|
30153
30209
|
.k-actionsheet-top {
|
|
@@ -30204,6 +30260,27 @@ kendo-toolbar-renderer {
|
|
|
30204
30260
|
display: flex;
|
|
30205
30261
|
flex-flow: column nowrap;
|
|
30206
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
|
+
}
|
|
30207
30284
|
.k-adaptive-actionsheet .k-calendar {
|
|
30208
30285
|
margin-inline: auto;
|
|
30209
30286
|
border-width: 0;
|
|
@@ -30220,6 +30297,46 @@ kendo-toolbar-renderer {
|
|
|
30220
30297
|
.k-adaptive-actionsheet .k-timeselector .k-time-list-wrapper {
|
|
30221
30298
|
height: 100%;
|
|
30222
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
|
+
}
|
|
30223
30340
|
|
|
30224
30341
|
.k-actionsheet {
|
|
30225
30342
|
color: var(--kendo-actionsheet-text, var(--kendo-component-text, initial));
|
|
@@ -30228,13 +30345,17 @@ kendo-toolbar-renderer {
|
|
|
30228
30345
|
box-shadow: var(--kendo-actionsheet-shadow, var(--kendo-box-shadow-depth-4, none));
|
|
30229
30346
|
}
|
|
30230
30347
|
|
|
30231
|
-
.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 {
|
|
30232
30349
|
color: var(--kendo-actionsheet-header-text, inherit);
|
|
30233
30350
|
background-color: var(--kendo-actionsheet-header-bg, inherit);
|
|
30234
30351
|
border-color: var(--kendo-actionsheet-header-border, inherit);
|
|
30235
30352
|
box-shadow: var(--kendo-actionsheet-header-shadow, none);
|
|
30236
30353
|
}
|
|
30237
30354
|
|
|
30355
|
+
.k-actionsheet-subtitle-text {
|
|
30356
|
+
color: var(--kendo-actionsheet-subtitle-text, var(--kendo-subtle-text, inherit));
|
|
30357
|
+
}
|
|
30358
|
+
|
|
30238
30359
|
.k-actionsheet-item-icon {
|
|
30239
30360
|
color: var(--kendo-actionsheet-item-icon-color, var(--kendo-primary-110, inherit));
|
|
30240
30361
|
}
|
|
@@ -30243,39 +30364,43 @@ kendo-toolbar-renderer {
|
|
|
30243
30364
|
color: var(--kendo-actionsheet-item-description-text, var(--kendo-subtle-text, inherit));
|
|
30244
30365
|
}
|
|
30245
30366
|
|
|
30246
|
-
.k-actionsheet-
|
|
30367
|
+
.k-actionsheet-item {
|
|
30247
30368
|
color: var(--INTERNAL--kendo-actionsheet-item-text, inherit);
|
|
30248
30369
|
background-color: var(--INTERNAL--kendo-actionsheet-item-bg, inherit);
|
|
30249
30370
|
border-color: var(--INTERNAL--kendo-actionsheet-item-border, inherit);
|
|
30250
30371
|
outline-color: var(--INTERNAL--kendo-actionsheet-item-outline, inherit);
|
|
30251
30372
|
}
|
|
30252
|
-
.k-actionsheet-
|
|
30373
|
+
.k-actionsheet-item:hover, .k-actionsheet-item.k-hover {
|
|
30253
30374
|
--INTERNAL--kendo-actionsheet-item-text: var( --kendo-actionsheet-item-hover-text, var(--kendo-hover-text, inherit) );
|
|
30254
30375
|
--INTERNAL--kendo-actionsheet-item-bg: var( --kendo-actionsheet-item-hover-bg, var(--kendo-hover-bg, inherit) );
|
|
30255
30376
|
--INTERNAL--kendo-actionsheet-item-border: var( --kendo-actionsheet-item-hover-border, inherit );
|
|
30256
30377
|
}
|
|
30257
|
-
.k-actionsheet-
|
|
30378
|
+
.k-actionsheet-item:focus, .k-actionsheet-item.k-focus {
|
|
30258
30379
|
--INTERNAL--kendo-actionsheet-item-text: var( --kendo-actionsheet-item-focus-text, inherit );
|
|
30259
30380
|
--INTERNAL--kendo-actionsheet-item-bg: var( --kendo-actionsheet-item-focus-bg, inherit );
|
|
30260
30381
|
--INTERNAL--kendo-actionsheet-item-border: var( --kendo-actionsheet-item-focus-border, inherit );
|
|
30261
30382
|
--INTERNAL--kendo-actionsheet-item-outline: var( --kendo-actionsheet-item-focus-outline, var(--kendo-outline-color, inherit) );
|
|
30262
30383
|
}
|
|
30263
|
-
.k-actionsheet-
|
|
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 {
|
|
30264
30385
|
--INTERNAL--kendo-actionsheet-item-text: var( --kendo-actionsheet-item-focus-hover-text, var(--kendo-hover-text, inherit) );
|
|
30265
30386
|
--INTERNAL--kendo-actionsheet-item-bg: var( --kendo-actionsheet-item-focus-hover-bg, var(--kendo-hover-bg, inherit) );
|
|
30266
30387
|
--INTERNAL--kendo-actionsheet-item-border: var( --kendo-actionsheet-item-focus-hover-border, inherit );
|
|
30267
30388
|
}
|
|
30268
|
-
.k-actionsheet-
|
|
30389
|
+
.k-actionsheet-item:disabled, .k-actionsheet-item.k-disabled {
|
|
30269
30390
|
--INTERNAL--kendo-actionsheet-item-text: var( --kendo-actionsheet-item-disabled-text, var(--kendo-disabled-text, inherit) );
|
|
30270
30391
|
--INTERNAL--kendo-actionsheet-item-bg: var( --kendo-actionsheet-item-disabled-bg, var(--kendo-component-bg, initial) );
|
|
30271
30392
|
--INTERNAL--kendo-actionsheet-item-border: var( --kendo-actionsheet-item-disabled-border, var(--kendo-disabled-border, inherit) );
|
|
30272
30393
|
}
|
|
30273
|
-
.k-actionsheet-
|
|
30274
|
-
.k-actionsheet-
|
|
30275
|
-
.k-actionsheet-
|
|
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 {
|
|
30276
30397
|
color: inherit;
|
|
30277
30398
|
}
|
|
30278
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
|
+
|
|
30279
30404
|
.k-dialog-wrapper {
|
|
30280
30405
|
display: flex;
|
|
30281
30406
|
align-items: center;
|
|
@@ -39649,6 +39774,9 @@ kendo-editor.k-readonly .k-editor-content.k-focus {
|
|
|
39649
39774
|
.k-task-delayed .k-task-complete {
|
|
39650
39775
|
background-color: var(--kendo-gantt-delayed-bg, var(--kendo-error-160, inherit));
|
|
39651
39776
|
}
|
|
39777
|
+
.k-task-delayed:hover .k-task-complete {
|
|
39778
|
+
background-color: var(--kendo-gantt-delayed-hover-bg, var(--kendo-error-190, inherit));
|
|
39779
|
+
}
|
|
39652
39780
|
|
|
39653
39781
|
.k-task-advanced .k-task-complete {
|
|
39654
39782
|
background-color: var(--kendo-gantt-advanced-bg, var(--kendo-success-160, inherit));
|
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
|
+
"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.
|
|
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": "
|
|
53
|
+
"gitHead": "b1b2e33a3ce1b92bcefae87e8c46cbd797d814d1"
|
|
54
54
|
}
|
|
@@ -3,13 +3,54 @@
|
|
|
3
3
|
|
|
4
4
|
@mixin kendo-action-sheet--layout() {
|
|
5
5
|
.k-actionsheet-container {
|
|
6
|
-
width:
|
|
7
|
-
height:
|
|
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
|
|
30
|
-
|
|
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:
|
|
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-
|
|
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:
|
|
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;
|
package/scss/gantt/_theme.scss
CHANGED
|
@@ -165,10 +165,18 @@
|
|
|
165
165
|
}
|
|
166
166
|
}
|
|
167
167
|
|
|
168
|
-
.k-task-delayed
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
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
|
+
}
|
|
172
180
|
}
|
|
173
181
|
|
|
174
182
|
.k-task-advanced {
|
|
@@ -203,6 +203,9 @@ $kendo-gantt-delayed-bg: get-theme-color-var( error-160 ) !default;
|
|
|
203
203
|
/// Complement background color of the gantt delayed task.
|
|
204
204
|
/// @group gantt
|
|
205
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;
|
|
206
209
|
|
|
207
210
|
/// Background color of the gantt advanced task.
|
|
208
211
|
/// @group gantt
|
package/scss/list/_layout.scss
CHANGED
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
// Wave animation
|
|
13
|
-
.k-skeleton-wave
|
|
14
|
-
.k-skeleton-wave
|
|
13
|
+
.k-skeleton-wave .k-skeleton::after,
|
|
14
|
+
.k-skeleton-wave.k-skeleton::after {
|
|
15
15
|
background-image: linear-gradient(
|
|
16
16
|
to right,
|
|
17
17
|
transparent,
|