@omnia/runtime 8.0.87-vnext → 8.0.88-vnext

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.
@@ -48,6 +48,7 @@
48
48
  flex-grow: 1;
49
49
  }
50
50
  .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content > span {
51
+ transition: inherit;
51
52
  opacity: 0;
52
53
  }
53
54
  .v-bottom-navigation--shift .v-bottom-navigation__content .v-btn:not(.v-btn--selected) .v-btn__content {
@@ -146,7 +146,7 @@
146
146
  padding-inline-start: 8px;
147
147
  padding-inline-end: 8px;
148
148
  }
149
- .v-navigation-drawer--rail:not(.v-navigation-drawer--is-hovering) .v-list .v-avatar {
149
+ .v-navigation-drawer--rail:not(.v-navigation-drawer--is-hovering.v-navigation-drawer--expand-on-hover) .v-list .v-avatar {
150
150
  --v-avatar-height: 24px;
151
151
  }
152
152
  .v-list--rounded {
@@ -358,12 +358,13 @@
358
358
  display: flex;
359
359
  grid-area: prepend;
360
360
  }
361
- .v-list-item__prepend > .v-avatar {
362
- margin-inline-end: 16px;
361
+ .v-list-item__prepend > .v-badge ~ .v-list-item__spacer,
362
+ .v-list-item__prepend > .v-icon ~ .v-list-item__spacer,
363
+ .v-list-item__prepend > .v-tooltip ~ .v-list-item__spacer {
364
+ width: 32px;
363
365
  }
364
- .v-list-item__prepend > .v-badge .v-icon,
365
- .v-list-item__prepend > .v-icon {
366
- margin-inline-end: 32px;
366
+ .v-list-item__prepend > .v-avatar ~ .v-list-item__spacer {
367
+ width: 16px;
367
368
  }
368
369
  .v-list-item--three-line .v-list-item__prepend {
369
370
  align-self: start;
@@ -375,12 +376,16 @@
375
376
  align-items: center;
376
377
  grid-area: append;
377
378
  }
378
- .v-list-item__append > .v-avatar {
379
- margin-inline-start: 16px;
379
+ .v-list-item__append .v-list-item__spacer {
380
+ order: -1;
380
381
  }
381
- .v-list-item__append > .v-badge .v-icon,
382
- .v-list-item__append > .v-icon {
383
- margin-inline-start: 32px;
382
+ .v-list-item__append > .v-badge ~ .v-list-item__spacer,
383
+ .v-list-item__append > .v-icon ~ .v-list-item__spacer,
384
+ .v-list-item__append > .v-tooltip ~ .v-list-item__spacer {
385
+ width: 32px;
386
+ }
387
+ .v-list-item__append > .v-avatar ~ .v-list-item__spacer {
388
+ width: 16px;
384
389
  }
385
390
  .v-list-item--three-line .v-list-item__append {
386
391
  align-self: start;
@@ -670,7 +675,6 @@
670
675
  transition-duration: 0.2s;
671
676
  transition-property: box-shadow, transform, visibility, width, height, left, right, top, bottom;
672
677
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
673
- will-change: transform;
674
678
  position: absolute;
675
679
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
676
680
  border-style: solid;
@@ -0,0 +1,284 @@
1
+ .v-date-picker__input {
2
+ padding-top: 16px;
3
+ padding-left: 24px;
4
+ padding-right: 24px;
5
+ }
6
+
7
+ .v-date-picker {
8
+ overflow: hidden;
9
+ }
10
+
11
+ .v-date-picker-month {
12
+ padding: 0 12px 12px;
13
+ }
14
+
15
+ .v-date-picker-month__day {
16
+ height: 48px;
17
+ width: 48px;
18
+ }
19
+ .v-date-picker-month__day .v-btn {
20
+ --v-btn-height: 28px;
21
+ --v-btn-size: 0.85rem;
22
+ }
23
+ .v-date-picker-controls {
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: space-between;
27
+ font-size: 0.875rem;
28
+ padding-inline-start: 24px;
29
+ padding-top: 4px;
30
+ padding-bottom: 4px;
31
+ padding-inline-end: 12px;
32
+ }
33
+ .v-date-picker-controls .v-btn:last-child {
34
+ margin-left: 4px;
35
+ }
36
+
37
+ .v-date-picker-controls__date {
38
+ margin-right: 4px;
39
+ }
40
+
41
+ .v-date-picker-controls__month {
42
+ display: flex;
43
+ }
44
+ .v-date-picker-controls__month.v-locale--is-rtl, .v-locale--is-rtl .v-date-picker-controls__month {
45
+ flex-direction: row-reverse;
46
+ }
47
+ .v-date-picker-month {
48
+ display: flex;
49
+ justify-content: center;
50
+ min-width: 328px;
51
+ --v-date-picker-month-day-diff: 4px;
52
+ }
53
+
54
+ .v-date-picker-month__weeks {
55
+ display: grid;
56
+ grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
57
+ grid-row-gap: 4px;
58
+ }
59
+
60
+ .v-date-picker-month__weekday {
61
+ font-size: 0.875rem;
62
+ }
63
+
64
+ .v-date-picker-month__days {
65
+ display: grid;
66
+ grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
67
+ grid-row-gap: 4px;
68
+ flex: 1 1;
69
+ justify-content: space-around;
70
+ }
71
+
72
+ .v-date-picker-month__day {
73
+ position: relative;
74
+ display: flex;
75
+ align-items: center;
76
+ justify-content: center;
77
+ }
78
+
79
+ .v-date-picker-month__day--adjacent {
80
+ opacity: 0.5;
81
+ }
82
+
83
+ .v-date-picker-month__day--hide-adjacent {
84
+ opacity: 0;
85
+ }
86
+
87
+ .v-date-picker-month__day--range {
88
+ position: absolute;
89
+ width: 100%;
90
+ height: calc(100% - var(--v-date-picker-month-day-diff) * 2);
91
+ opacity: 0.5;
92
+ }
93
+
94
+ .v-date-picker-month__day--hover {
95
+ position: absolute;
96
+ width: 100%;
97
+ height: calc(100% - var(--v-date-picker-month-day-diff) * 2);
98
+ border-style: dashed;
99
+ border-top-width: 1px;
100
+ border-bottom-width: 1px;
101
+ border-left: none;
102
+ border-right: none;
103
+ }
104
+
105
+ .v-date-picker-month__day--start .v-date-picker-month__day--range, .v-date-picker-month__day--week-start .v-date-picker-month__day--range {
106
+ border-bottom-left-radius: 50%;
107
+ border-top-left-radius: 50%;
108
+ left: var(--v-date-picker-month-day-diff);
109
+ width: calc(100% - var(--v-date-picker-month-day-diff));
110
+ }
111
+
112
+ .v-date-picker-month__day--end .v-date-picker-month__day--range, .v-date-picker-month__day--week-end .v-date-picker-month__day--range {
113
+ border-bottom-right-radius: 50%;
114
+ border-top-right-radius: 50%;
115
+ right: var(--v-date-picker-month-day-diff);
116
+ width: calc(100% - var(--v-date-picker-month-day-diff));
117
+ }
118
+
119
+ .v-date-picker-month__day--selected.v-date-picker-month__day--end.v-date-picker-month__day--week-start .v-date-picker-month__day--range,
120
+ .v-date-picker-month__day--selected.v-date-picker-month__day--start.v-date-picker-month__day--week-end .v-date-picker-month__day--range {
121
+ display: none;
122
+ }
123
+ .v-date-picker-years {
124
+ height: 308px;
125
+ overflow-y: scroll;
126
+ }
127
+
128
+ .v-date-picker-years__content {
129
+ display: grid;
130
+ flex: 1 1;
131
+ justify-content: space-around;
132
+ grid-template-columns: repeat(3, 1fr);
133
+ grid-gap: 8px 24px;
134
+ padding-inline-start: 36px;
135
+ padding-inline-end: 36px;
136
+ }
137
+ .v-date-picker-years__content .v-btn {
138
+ padding-inline-start: 8px;
139
+ padding-inline-end: 8px;
140
+ }
141
+ .v-picker.v-sheet {
142
+ box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
143
+ border-radius: 4px;
144
+ display: grid;
145
+ grid-auto-rows: min-content;
146
+ grid-template-areas: "title" "header" "body";
147
+ overflow: hidden;
148
+ }
149
+ .v-picker.v-sheet.v-picker--with-actions {
150
+ grid-template-areas: "title" "header" "body" "actions";
151
+ }
152
+
153
+ .v-picker__body {
154
+ grid-area: body;
155
+ }
156
+
157
+ .v-picker__header {
158
+ grid-area: header;
159
+ }
160
+
161
+ .v-picker__actions {
162
+ grid-area: actions;
163
+ padding: 0 12px 12px 12px;
164
+ display: flex;
165
+ align-items: center;
166
+ justify-content: flex-end;
167
+ }
168
+ .v-picker__actions .v-btn {
169
+ padding-inline-start: 8px;
170
+ padding-inline-end: 8px;
171
+ min-width: 48px;
172
+ }
173
+ .v-picker__actions .v-btn:not(:last-child) {
174
+ margin-inline-end: 8px;
175
+ }
176
+
177
+ .v-picker--landscape {
178
+ grid-template-areas: "title" "header body" "header body";
179
+ }
180
+
181
+ .v-picker--landscape.v-picker--with-actions {
182
+ grid-template-areas: "title" "header body" "header actions";
183
+ }
184
+
185
+ .v-picker-title {
186
+ text-transform: uppercase;
187
+ font-size: 0.75rem;
188
+ grid-area: title;
189
+ color: rgb(var(--v-theme-on-surface), var(--v-disabled-opacity));
190
+ padding-inline-start: 24px;
191
+ padding-inline-end: 12px;
192
+ padding-top: 16px;
193
+ padding-bottom: 16px;
194
+ font-weight: 600;
195
+ letter-spacing: 0.1666666667em;
196
+ }
197
+ .v-date-picker-header {
198
+ display: grid;
199
+ grid-template-areas: "prepend content append";
200
+ grid-template-columns: min-content minmax(0, 1fr) min-content;
201
+ overflow: hidden;
202
+ padding-inline-start: 24px;
203
+ padding-inline-end: 12px;
204
+ padding-bottom: 12px;
205
+ }
206
+
207
+ .v-date-picker-header__append {
208
+ grid-area: append;
209
+ }
210
+
211
+ .v-date-picker-header__prepend {
212
+ grid-area: prepend;
213
+ padding-inline-start: 8px;
214
+ }
215
+
216
+ .v-date-picker-header__content {
217
+ align-items: center;
218
+ display: flex;
219
+ font-size: 32px;
220
+ line-height: 40px;
221
+ grid-area: content;
222
+ justify-content: space-between;
223
+ }
224
+
225
+ .date-picker-header-transition-enter-active,
226
+ .date-picker-header-reverse-transition-enter-active {
227
+ transition-duration: 0.3s;
228
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
229
+ }
230
+ .date-picker-header-transition-leave-active,
231
+ .date-picker-header-reverse-transition-leave-active {
232
+ transition-duration: 0.3s;
233
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
234
+ }
235
+
236
+ .date-picker-header-transition-enter-from {
237
+ transform: translate(0, 100%);
238
+ }
239
+ .date-picker-header-transition-leave-to {
240
+ opacity: 0;
241
+ transform: translate(0, -100%);
242
+ }
243
+
244
+ .date-picker-header-reverse-transition-enter-from {
245
+ transform: translate(0, -100%);
246
+ }
247
+ .date-picker-header-reverse-transition-leave-to {
248
+ opacity: 0;
249
+ transform: translate(0, 100%);
250
+ }
251
+ .v-date-card {
252
+ padding-bottom: 8px;
253
+ }
254
+ .v-date-card .v-card-actions {
255
+ justify-content: flex-end;
256
+ }
257
+
258
+ .v-date-card .v-date-picker-month {
259
+ padding-left: 12px;
260
+ padding-right: 12px;
261
+ }
262
+ .v-date-card .v-date-picker-month .v-date-picker-month__day {
263
+ height: 32px;
264
+ width: 32px;
265
+ }
266
+ .v-date-card .v-date-picker-month .v-date-picker-month__day .v-btn {
267
+ --v-btn-height: 16px;
268
+ --v-btn-size: 0.75rem;
269
+ }
270
+ .v-date-card .v-date-picker-years {
271
+ height: 248px;
272
+ }
273
+ .v-date-card .v-date-picker-years .v-date-picker-years__content {
274
+ grid-template-columns: repeat(4, 56px);
275
+ grid-gap: 0px;
276
+ grid-row-gap: 2px;
277
+ padding-right: 3px;
278
+ }
279
+ .v-date-card .v-date-picker-years .v-date-picker-years__content .v-btn {
280
+ --v-btn-height: 28px;
281
+ --v-btn-size: 0.75rem;
282
+ min-width: unset;
283
+ }
284
+
@@ -2,11 +2,16 @@
2
2
  flex-direction: column;
3
3
  }
4
4
  .v-radio-group > .v-input__control > .v-label {
5
- margin-inline-start: 8px;
5
+ margin-inline-start: 16px;
6
6
  }
7
7
  .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
8
+ padding-inline-start: 6px;
8
9
  margin-top: 8px;
9
10
  }
11
+ .v-radio-group .v-input__details {
12
+ padding-inline-start: 16px;
13
+ padding-inline-end: 16px;
14
+ }
10
15
  .v-checkbox .v-selection-control {
11
16
  min-height: var(--v-input-control-height);
12
17
  }
@@ -1756,6 +1756,9 @@
1756
1756
  .v-btn--rounded {
1757
1757
  border-radius: 24px;
1758
1758
  }
1759
+ .v-btn--rounded.v-btn--icon {
1760
+ border-radius: 4px;
1761
+ }
1759
1762
  .v-btn .v-icon {
1760
1763
  --v-icon-size-multiplier: 0.8571428571;
1761
1764
  }
@@ -3031,6 +3034,7 @@ textarea.v-field__input::placeholder {
3031
3034
  transform-origin: left center;
3032
3035
  transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
3033
3036
  transition-property: opacity, transform;
3037
+ z-index: 1;
3034
3038
  }
3035
3039
  .v-field--variant-underlined .v-label.v-field-label, .v-field--variant-plain .v-label.v-field-label {
3036
3040
  top: calc(var(--v-input-padding-top) + var(--v-field-padding-top));
@@ -0,0 +1,110 @@
1
+ .v-stepper.v-sheet {
2
+ box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
3
+ border-radius: 4px;
4
+ overflow: hidden;
5
+ }
6
+
7
+ .v-stepper-header {
8
+ box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
9
+ align-items: center;
10
+ display: flex;
11
+ position: relative;
12
+ overflow-x: auto;
13
+ justify-content: space-between;
14
+ z-index: 1;
15
+ }
16
+ .v-stepper-header .v-divider {
17
+ margin: 0 -16px;
18
+ }
19
+ .v-stepper--alt-labels .v-stepper-header {
20
+ height: auto;
21
+ }
22
+ .v-stepper--alt-labels .v-stepper-header .v-divider {
23
+ align-self: flex-start;
24
+ margin: 35px -67px 0;
25
+ }
26
+
27
+ .v-stepper-window {
28
+ margin: 1.5rem;
29
+ }
30
+
31
+ .v-stepper-actions {
32
+ display: flex;
33
+ align-items: center;
34
+ justify-content: space-between;
35
+ padding: 1rem;
36
+ }
37
+ .v-stepper .v-stepper-actions {
38
+ padding: 0 1.5rem 1rem;
39
+ }
40
+ .v-stepper-window-item .v-stepper-actions {
41
+ padding: 1.5rem 0 0;
42
+ }
43
+ .v-stepper-item {
44
+ align-items: center;
45
+ align-self: stretch;
46
+ display: inline-flex;
47
+ flex: none;
48
+ opacity: var(--v-medium-emphasis-opacity);
49
+ padding: 1.5rem;
50
+ transition-duration: 0.2s;
51
+ transition-property: opacity;
52
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
53
+ }
54
+ .v-stepper-item--selected {
55
+ opacity: 1;
56
+ }
57
+ .v-stepper-item--error {
58
+ color: rgb(var(--v-theme-error));
59
+ }
60
+ .v-stepper-item--disabled {
61
+ opacity: var(--v-medium-emphasis-opacity);
62
+ pointer-events: none;
63
+ }
64
+ .v-stepper--alt-labels .v-stepper-item {
65
+ flex-direction: column;
66
+ justify-content: flex-start;
67
+ align-items: center;
68
+ flex-basis: 175px;
69
+ }
70
+
71
+ .v-stepper-item__avatar.v-avatar {
72
+ background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
73
+ color: rgb(var(--v-theme-on-surface-variant));
74
+ font-size: 0.75rem;
75
+ margin-inline-end: 8px;
76
+ }
77
+ .v-stepper-item__avatar.v-avatar .v-icon {
78
+ font-size: 0.875rem;
79
+ }
80
+ .v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
81
+ background: rgb(var(--v-theme-surface-variant));
82
+ }
83
+ .v-stepper-item--error .v-stepper-item__avatar.v-avatar {
84
+ background: rgb(var(--v-theme-error));
85
+ }
86
+ .v-stepper--alt-labels .v-stepper-item__avatar.v-avatar {
87
+ margin-bottom: 16px;
88
+ margin-inline-end: 0;
89
+ }
90
+
91
+ .v-stepper-item__title {
92
+ line-height: 1;
93
+ }
94
+ .v-stepper--mobile .v-stepper-item__title {
95
+ display: none;
96
+ }
97
+
98
+ .v-stepper-item__subtitle {
99
+ font-size: 0.75rem;
100
+ text-align: left;
101
+ line-height: 1;
102
+ opacity: var(--v-medium-emphasis-opacity);
103
+ }
104
+ .v-stepper--alt-labels .v-stepper-item__subtitle {
105
+ text-align: center;
106
+ }
107
+ .v-stepper--mobile .v-stepper-item__subtitle {
108
+ display: none;
109
+ }
110
+
@@ -11,52 +11,56 @@
11
11
 
12
12
  .v-switch__track,
13
13
  .v-switch__thumb {
14
- background-color: currentColor;
15
14
  transition: none;
16
15
  }
17
16
  .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__track,
18
17
  .v-selection-control--error:not(.v-selection-control--disabled) .v-switch__thumb {
19
18
  background-color: rgb(var(--v-theme-error));
20
- }
21
-
22
- .v-selection-control--dirty .v-switch__thumb {
23
- color: currentColor;
19
+ color: rgb(var(--v-theme-on-error));
24
20
  }
25
21
 
26
22
  .v-switch__track {
27
- border-radius: 8px;
23
+ background-color: currentColor;
24
+ border-radius: 9999px;
28
25
  height: 14px;
29
26
  opacity: 0.6;
30
27
  width: 36px;
31
28
  cursor: pointer;
29
+ transition: 0.2s color cubic-bezier(0.4, 0, 0.2, 1);
32
30
  }
33
31
  .v-switch--inset .v-switch__track {
34
- border-radius: 14px;
35
- height: 28px;
36
- width: 48px;
32
+ border-radius: 9999px;
33
+ height: 32px;
34
+ width: 52px;
37
35
  }
38
36
 
39
37
  .v-switch__thumb {
40
38
  align-items: center;
41
39
  border-radius: 50%;
42
- color: rgb(var(--v-theme-surface));
40
+ background: rgb(var(--v-theme-surface));
41
+ color: rgb(var(--v-theme-on-surface));
43
42
  display: flex;
44
43
  height: 20px;
45
44
  justify-content: center;
46
45
  width: 20px;
47
46
  pointer-events: none;
48
- transition: 0.15s transform cubic-bezier(0.4, 0, 0.2, 1);
47
+ transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
48
+ position: relative;
49
+ overflow: hidden;
49
50
  box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
50
51
  }
51
52
  .v-switch--inset .v-switch__thumb {
53
+ height: 24px;
54
+ width: 24px;
55
+ transform: scale(0.6666666667);
52
56
  box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
53
57
  }
54
- .v-switch:not(.v-switch--loading) .v-icon ~ .v-switch__thumb {
55
- display: none;
58
+ .v-switch--inset .v-switch__thumb--filled {
59
+ transform: none;
56
60
  }
57
-
58
- .v-switch--loading .v-selection-control__input > .v-icon {
59
- display: none;
61
+ .v-switch--inset .v-selection-control--dirty .v-switch__thumb {
62
+ transform: none;
63
+ transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
60
64
  }
61
65
 
62
66
  .v-switch .v-selection-control {
@@ -64,10 +68,13 @@
64
68
  }
65
69
  .v-switch .v-selection-control__input {
66
70
  border-radius: 50%;
67
- transition: 0.15s transform cubic-bezier(0.4, 0, 0.2, 1);
71
+ transition: 0.2s transform cubic-bezier(0.4, 0, 0.2, 1);
68
72
  transform: translateX(-10px);
69
73
  position: absolute;
70
74
  }
75
+ .v-switch .v-selection-control__input .v-icon {
76
+ position: absolute;
77
+ }
71
78
  .v-switch .v-selection-control--dirty .v-selection-control__input {
72
79
  transform: translateX(10px);
73
80
  }
@@ -5,8 +5,6 @@
5
5
  flex: 1;
6
6
  transition: 0.15s opacity cubic-bezier(0.4, 0, 0.2, 1);
7
7
  min-width: 0;
8
- margin-top: var(--v-input-chips-margin-top);
9
- margin-bottom: var(--v-input-chips-margin-bottom);
10
8
  }
11
9
  .v-text-field input:focus, .v-text-field input:active {
12
10
  outline: none;
@@ -25,6 +23,15 @@
25
23
  --v-field-padding-end: 0;
26
24
  }
27
25
 
26
+ .v-text-field .v-field__input input {
27
+ margin-top: var(--v-input-chips-margin-top);
28
+ margin-bottom: var(--v-input-chips-margin-bottom);
29
+ }
30
+ .v-text-field input.v-field__input {
31
+ min-height: calc(max(var(--v-input-control-height, 56px), 1.5rem + var(--v-field-input-padding-top) + var(--v-field-input-padding-bottom) + var(--v-input-chips-margin-bottom) + 2px) - var(--v-input-chips-margin-top) - var(--v-input-chips-margin-bottom));
32
+ padding-top: calc(var(--v-input-chips-margin-top) + var(--v-field-input-padding-top));
33
+ padding-bottom: calc(var(--v-input-chips-margin-bottom) + var(--v-field-input-padding-bottom));
34
+ }
28
35
  .v-text-field .v-input__details {
29
36
  padding-inline-start: 16px;
30
37
  padding-inline-end: 16px;
@@ -11,7 +11,6 @@
11
11
  position: relative;
12
12
  }
13
13
  .v-timeline--horizontal.v-timeline {
14
- grid-column-gap: 24px;
15
14
  width: 100%;
16
15
  }
17
16
  .v-timeline--horizontal.v-timeline .v-timeline-item:first-child .v-timeline-divider, .v-timeline--horizontal.v-timeline .v-timeline-item:first-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline .v-timeline-item:first-child .v-timeline-item__opposite {
@@ -20,6 +19,12 @@
20
19
  .v-timeline--horizontal.v-timeline .v-timeline-item:last-child .v-timeline-divider, .v-timeline--horizontal.v-timeline .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline .v-timeline-item:last-child .v-timeline-item__opposite {
21
20
  padding-inline-end: 24px;
22
21
  }
22
+ .v-timeline--horizontal.v-timeline .v-timeline-item__body {
23
+ padding-inline-end: 24px;
24
+ }
25
+ .v-timeline--horizontal.v-timeline .v-timeline-item__opposite {
26
+ padding-inline-end: 24px;
27
+ }
23
28
  .v-timeline--horizontal.v-timeline .v-timeline-item:nth-child(2n) .v-timeline-item__body {
24
29
  grid-row: 3;
25
30
  padding-block-start: 24px;
@@ -1 +1 @@
1
- {"target":2,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","resource":[{"manifestType":"resource","resourceId":"738c21ca-805e-4eaa-818d-3b3ab25c27b6","resourceName":"omfx.admin.apis.registration","version":{"js":"55e5893d2f5f0e30173e6a5cc6936d36"},"availableBundleTargetTypes":["js"],"api":["fx.ux.admin.registration.navigationMenuNode","fx.ux.admin.registration.navigationNode","fx.ux.admin.events.initializeNavigationNode"]}],"webcomponent":[{"elementName":"omnia-admin-renderer","manifestType":"webcomponent","resourceId":"253e469e-f68e-4cb5-b526-343736c2ff11","resourceName":"omnia.admin","version":{"js":"254bdaf9b3d0df6f2f8c0a3cdcb638eb"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]}]}
1
+ {"target":2,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","resource":[{"manifestType":"resource","resourceId":"738c21ca-805e-4eaa-818d-3b3ab25c27b6","resourceName":"omfx.admin.apis.registration","version":{"js":"f98d3872ef69a3910a690f319a8d656d"},"availableBundleTargetTypes":["js"],"api":["fx.ux.admin.registration.navigationMenuNode","fx.ux.admin.registration.navigationNode","fx.ux.admin.events.initializeNavigationNode"]}],"webcomponent":[{"elementName":"omnia-admin-renderer","manifestType":"webcomponent","resourceId":"253e469e-f68e-4cb5-b526-343736c2ff11","resourceName":"omnia.admin","version":{"js":"106d39dd55cd38867806f5fb69aaae62"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]}]}
@@ -1 +1 @@
1
- {"target":8,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","resource":[{"manifestType":"resource","resourceId":"1ca62642-45d8-47fd-b6d8-818463a8b348","resourceName":"omnia.fx.docs.api","version":{"js":"710bb8a5edcbd2bd6a88e6fb21b26ed8"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"api":["fx.docs.registrations"]},{"manifestType":"resource","resourceId":"4b44029a-a988-4175-b503-be151c5ccc6e","resourceName":"omnia.fx.docs.components.registraions","version":{"js":"bc84c2a966a7cfd1ed5199073eadc3a7"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"extendApi":["fx.docs.registrations"]}]}
1
+ {"target":8,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","resource":[{"manifestType":"resource","resourceId":"1ca62642-45d8-47fd-b6d8-818463a8b348","resourceName":"omnia.fx.docs.api","version":{"js":"9f55115f13588e9b35e49f081b4f6dae"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"api":["fx.docs.registrations"]},{"manifestType":"resource","resourceId":"4b44029a-a988-4175-b503-be151c5ccc6e","resourceName":"omnia.fx.docs.components.registraions","version":{"js":"fdd85657ba33dc577200a95a83dbce67"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"extendApi":["fx.docs.registrations"]}]}
@@ -1 +1 @@
1
- {"target":4,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","webcomponent":[{"elementName":"omfx-options-block-current","manifestType":"webcomponent","resourceId":"e57d5f3e-25e9-42a0-8ed9-7f69d608ab92","resourceName":"omfx.ux.options.block.current","version":{"js":"905631065817e1eb9e0d77d74660432b"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"9a04acc8-ffcb-437f-8903-a0fa41f65ab1"},{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}],"definition":{"icon":{"faClass":"fas fa-user-astronaut","iconType":"IFontAwesomeIcon"},"title":"Options Block Current","showInOmniaBlock":true}}]}
1
+ {"target":4,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","webcomponent":[{"elementName":"omfx-options-block-current","manifestType":"webcomponent","resourceId":"e57d5f3e-25e9-42a0-8ed9-7f69d608ab92","resourceName":"omfx.ux.options.block.current","version":{"js":"02422474781eba922d86c8b2e2994034"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"9a04acc8-ffcb-437f-8903-a0fa41f65ab1"},{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}],"definition":{"icon":{"faClass":"fas fa-user-astronaut","iconType":"IFontAwesomeIcon"},"title":"Options Block Current","showInOmniaBlock":true}}]}