@omnia/runtime 8.0.153-dev → 8.0.155-dev

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.
@@ -0,0 +1,380 @@
1
+ .v-calendar-weekly {
2
+ width: 100%;
3
+ height: 100%;
4
+ display: flex;
5
+ flex-direction: column;
6
+ min-height: 0;
7
+ background-color: #fff;
8
+ }
9
+
10
+ .v-calendar__container {
11
+ border-top: thin solid #e0e0e0;
12
+ border-left: thin solid #e0e0e0;
13
+ border-right: thin solid #e0e0e0;
14
+ }
15
+
16
+ .v-calendar-weekly__head {
17
+ display: grid;
18
+ grid-template-columns: 24px repeat(7, 1fr);
19
+ user-select: none;
20
+ }
21
+ .v-calendar-weekly__head.days__0 {
22
+ grid-template-columns: 1fr;
23
+ }
24
+ .v-calendar-weekly__head.days__0.v-calendar-weekly__head-weeknumbers {
25
+ grid-template-columns: 24px 1fr;
26
+ }
27
+ .v-calendar-weekly__head.days__1 {
28
+ grid-template-columns: 1fr;
29
+ }
30
+ .v-calendar-weekly__head.days__1.v-calendar-weekly__head-weeknumbers {
31
+ grid-template-columns: 24px 1fr;
32
+ }
33
+ .v-calendar-weekly__head.days__2 {
34
+ grid-template-columns: repeat(2, 1fr);
35
+ }
36
+ .v-calendar-weekly__head.days__2.v-calendar-weekly__head-weeknumbers {
37
+ grid-template-columns: 24px repeat(2, 1fr);
38
+ }
39
+ .v-calendar-weekly__head.days__3 {
40
+ grid-template-columns: repeat(3, 1fr);
41
+ }
42
+ .v-calendar-weekly__head.days__3.v-calendar-weekly__head-weeknumbers {
43
+ grid-template-columns: 24px repeat(3, 1fr);
44
+ }
45
+ .v-calendar-weekly__head.days__4 {
46
+ grid-template-columns: repeat(4, 1fr);
47
+ }
48
+ .v-calendar-weekly__head.days__4.v-calendar-weekly__head-weeknumbers {
49
+ grid-template-columns: 24px repeat(4, 1fr);
50
+ }
51
+ .v-calendar-weekly__head.days__5 {
52
+ grid-template-columns: repeat(5, 1fr);
53
+ }
54
+ .v-calendar-weekly__head.days__5.v-calendar-weekly__head-weeknumbers {
55
+ grid-template-columns: 24px repeat(5, 1fr);
56
+ }
57
+ .v-calendar-weekly__head.days__6 {
58
+ grid-template-columns: repeat(6, 1fr);
59
+ }
60
+ .v-calendar-weekly__head.days__6.v-calendar-weekly__head-weeknumbers {
61
+ grid-template-columns: 24px repeat(6, 1fr);
62
+ }
63
+ .v-calendar-weekly__head.days__7 {
64
+ grid-template-columns: repeat(7, 1fr);
65
+ }
66
+ .v-calendar-weekly__head.days__7.v-calendar-weekly__head-weeknumbers {
67
+ grid-template-columns: 24px repeat(7, 1fr);
68
+ }
69
+
70
+ .v-calendar-weekly__head-weekday, .v-calendar-weekly__head-weekday-with-weeknumber {
71
+ flex: 1 0 20px;
72
+ user-select: none;
73
+ padding: 8px 4px 0px 4px;
74
+ font-size: 11px;
75
+ overflow: hidden;
76
+ text-align: center;
77
+ text-overflow: ellipsis;
78
+ text-transform: uppercase;
79
+ white-space: nowrap;
80
+ border-right: thin solid #e0e0e0;
81
+ }
82
+ .v-calendar-weekly__head-weekday:last-child, .v-calendar-weekly__head-weekday-with-weeknumber:last-child {
83
+ border-right: none;
84
+ }
85
+ .v-calendar-weekly__head-weekday > div .v-btn, .v-calendar-weekly__head-weekday-with-weeknumber > div .v-btn {
86
+ font-size: 1.5rem;
87
+ }
88
+
89
+ .v-calendar-weekly__head-weeknumber {
90
+ background: rgb(var(--v-theme-surface-light));
91
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
92
+ }
93
+
94
+ .v-calendar-weekly__week {
95
+ display: flex;
96
+ flex: 1;
97
+ height: unset;
98
+ min-height: 0;
99
+ }
100
+
101
+ .v-calendar-month__weeknumber {
102
+ padding-top: 6px;
103
+ background: rgb(var(--v-theme-surface-light));
104
+ border-bottom: thin solid #e0e0e0;
105
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
106
+ text-align: center;
107
+ font-size: 12px;
108
+ font-weight: 500;
109
+ }
110
+
111
+ .v-calendar-month__days {
112
+ display: grid;
113
+ flex: 1 1;
114
+ }
115
+ .v-calendar-month__days > .v-calendar-month__day {
116
+ min-height: 150px;
117
+ }
118
+ .v-calendar-month__days.days__0 {
119
+ grid-template-columns: 1fr;
120
+ }
121
+ .v-calendar-month__days.days__0 > .v-calendar-month__day {
122
+ border-right: none;
123
+ }
124
+ .v-calendar-month__days.days__1 {
125
+ grid-template-columns: 1fr;
126
+ }
127
+ .v-calendar-month__days.days__1 > .v-calendar-month__day {
128
+ border-right: none;
129
+ }
130
+ .v-calendar-month__days.days__2 {
131
+ grid-template-columns: repeat(2, 1fr);
132
+ }
133
+ .v-calendar-month__days.days__2 > .v-calendar-month__day:nth-child(2n) {
134
+ border-right: none;
135
+ }
136
+ .v-calendar-month__days.days__3 {
137
+ grid-template-columns: repeat(3, 1fr);
138
+ }
139
+ .v-calendar-month__days.days__3 > .v-calendar-month__day:nth-child(3n) {
140
+ border-right: none;
141
+ }
142
+ .v-calendar-month__days.days__4 {
143
+ grid-template-columns: repeat(4, 1fr);
144
+ }
145
+ .v-calendar-month__days.days__4 > .v-calendar-month__day:nth-child(4n) {
146
+ border-right: none;
147
+ }
148
+ .v-calendar-month__days.days__5 {
149
+ grid-template-columns: repeat(5, 1fr);
150
+ }
151
+ .v-calendar-month__days.days__5 > .v-calendar-month__day:nth-child(5n) {
152
+ border-right: none;
153
+ }
154
+ .v-calendar-month__days.days__6 {
155
+ grid-template-columns: repeat(6, 1fr);
156
+ }
157
+ .v-calendar-month__days.days__6 > .v-calendar-month__day:nth-child(6n) {
158
+ border-right: none;
159
+ }
160
+ .v-calendar-month__days.days__6.v-calendar-month__weeknumbers {
161
+ grid-template-columns: 24px repeat(6, 1fr);
162
+ }
163
+ .v-calendar-month__days.days__7 {
164
+ grid-template-columns: repeat(7, 1fr);
165
+ }
166
+ .v-calendar-month__days.days__7 > .v-calendar-month__day:nth-child(7n) {
167
+ border-right: none;
168
+ }
169
+ .v-calendar-month__days.days-with-weeknumbers__0 {
170
+ grid-template-columns: 24px 1fr;
171
+ }
172
+ .v-calendar-month__days.days-with-weeknumbers__0 > .v-calendar-month__day {
173
+ border-right: none;
174
+ }
175
+ .v-calendar-month__days.days-with-weeknumbers__1 {
176
+ grid-template-columns: 24px 1fr;
177
+ }
178
+ .v-calendar-month__days.days-with-weeknumbers__1 > .v-calendar-month__day {
179
+ border-right: none;
180
+ }
181
+ .v-calendar-month__days.days-with-weeknumbers__2 {
182
+ grid-template-columns: 24px repeat(2, 1fr);
183
+ }
184
+ .v-calendar-month__days.days-with-weeknumbers__2 > .v-calendar-month__day:nth-child(3n) {
185
+ border-right: none;
186
+ }
187
+ .v-calendar-month__days.days-with-weeknumbers__3 {
188
+ grid-template-columns: 24px repeat(3, 1fr);
189
+ }
190
+ .v-calendar-month__days.days-with-weeknumbers__3 > .v-calendar-month__day:nth-child(4n) {
191
+ border-right: none;
192
+ }
193
+ .v-calendar-month__days.days-with-weeknumbers__4 {
194
+ grid-template-columns: 24px repeat(4, 1fr);
195
+ }
196
+ .v-calendar-month__days.days-with-weeknumbers__4 > .v-calendar-month__day:nth-child(5n) {
197
+ border-right: none;
198
+ }
199
+ .v-calendar-month__days.days-with-weeknumbers__5 {
200
+ grid-template-columns: 24px repeat(5, 1fr);
201
+ }
202
+ .v-calendar-month__days.days-with-weeknumbers__5 > .v-calendar-month__day:nth-child(6n) {
203
+ border-right: none;
204
+ }
205
+ .v-calendar-month__days.days-with-weeknumbers__6 {
206
+ grid-template-columns: 24px repeat(6, 1fr);
207
+ }
208
+ .v-calendar-month__days.days-with-weeknumbers__6 > .v-calendar-month__day:nth-child(7n) {
209
+ border-right: none;
210
+ }
211
+ .v-calendar-month__days.days-with-weeknumbers__7 {
212
+ grid-template-columns: 24px repeat(7, 1fr);
213
+ }
214
+ .v-calendar-month__days.days-with-weeknumbers__7 > .v-calendar-month__day:nth-child(7n) {
215
+ border-right: thin solid thin;
216
+ }
217
+ .v-calendar-month__days.days-with-weeknumbers__7 > .v-calendar-month__day:nth-child(8n) {
218
+ border-right: none;
219
+ }
220
+ .v-calendar-month__days.days-with-weeknumbers__7 > .v-calendar-month__day:nth-child(8n) {
221
+ border-right: none;
222
+ }
223
+ .v-calendar-day {
224
+ position: relative;
225
+ display: flex;
226
+ flex-direction: column;
227
+ }
228
+
229
+ .v-calendar-weekly .v-calendar__container {
230
+ display: grid;
231
+ }
232
+ .v-calendar-weekly .v-calendar__container.days__7 {
233
+ grid-template-columns: repeat(7, 1fr);
234
+ }
235
+ .v-calendar-weekly .v-calendar__container.days__6 {
236
+ grid-template-columns: repeat(6, 1fr);
237
+ }
238
+ .v-calendar-weekly .v-calendar__container.days__5 {
239
+ grid-template-columns: repeat(5, 1fr);
240
+ }
241
+ .v-calendar-weekly .v-calendar__container.days__4 {
242
+ grid-template-columns: repeat(4, 1fr);
243
+ }
244
+ .v-calendar-weekly .v-calendar__container.days__3 {
245
+ grid-template-columns: repeat(3, 1fr);
246
+ }
247
+ .v-calendar-weekly .v-calendar__container.days__2 {
248
+ grid-template-columns: repeat(2, 1fr);
249
+ }
250
+ .v-calendar-weekly .v-calendar__container.days__1 {
251
+ grid-template-columns: repeat(1, 1fr);
252
+ }
253
+ .v-calendar-weekly .v-calendar__container.days__0 {
254
+ grid-template-columns: repeat(1, 1fr);
255
+ }
256
+ .v-calendar-day__row-with-label {
257
+ display: grid;
258
+ grid-template-columns: 48px 8px 1fr;
259
+ border-right: thin solid #e0e0e0;
260
+ }
261
+ .v-calendar-day__row-with-label .v-calendar-day__row-hairline {
262
+ position: relative;
263
+ border-right: thin solid #e0e0e0;
264
+ }
265
+ .v-calendar-day__row-with-label .v-calendar-day__row-hairline:after {
266
+ content: "";
267
+ border-bottom: thin solid #e0e0e0;
268
+ position: absolute;
269
+ width: 100%;
270
+ margin-top: -1px;
271
+ z-index: 3;
272
+ pointer-events: none;
273
+ }
274
+ .v-calendar-day__row-with-label .v-calendar-day__row-label {
275
+ font-size: 10px;
276
+ text-align: center;
277
+ position: relative;
278
+ top: -8px;
279
+ }
280
+ .v-calendar-day__row-with-label .v-calendar-day__row-content {
281
+ border-bottom: thin solid #e0e0e0;
282
+ }
283
+ .v-calendar-day__row-with-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
284
+ border-bottom: none;
285
+ }
286
+
287
+ .v-calendar-day__row-without-label {
288
+ display: grid;
289
+ grid-template-columns: 1fr;
290
+ border-right: thin solid #e0e0e0;
291
+ }
292
+ .v-calendar-day__row-without-label .v-calendar-day__row-content {
293
+ overflow: hidden;
294
+ border-bottom: thin solid #e0e0e0;
295
+ }
296
+ .v-calendar-day__row-without-label .v-calendar-day__row-content.v-calendar-day__row-content-through {
297
+ border-bottom: none;
298
+ }
299
+ .v-calendar-internal-event {
300
+ overflow: hidden;
301
+ padding: 4px;
302
+ text-overflow: ellipsis;
303
+ white-space: nowrap;
304
+ }
305
+ .v-calendar-header {
306
+ align-items: center;
307
+ display: flex;
308
+ min-height: 64px;
309
+ }
310
+
311
+ .v-calendar-header__today {
312
+ margin-inline-end: 24px;
313
+ }
314
+
315
+ .v-calendar-header__title {
316
+ font-size: 1.5rem;
317
+ margin-inline-start: 24px;
318
+ }
319
+ .v-calendar-month__day {
320
+ position: relative;
321
+ display: flex;
322
+ flex-direction: column;
323
+ min-width: 0;
324
+ min-height: 150px;
325
+ border-right: thin solid #e0e0e0;
326
+ border-bottom: thin solid #e0e0e0;
327
+ flex: 1 1 auto;
328
+ border-inline-end: thin solid #e0e0e0;
329
+ }
330
+
331
+ .v-calendar-weekly__day {
332
+ flex: 1;
333
+ width: 0;
334
+ overflow: hidden;
335
+ user-select: none;
336
+ position: relative;
337
+ padding: 0px 0px 0px 0px;
338
+ min-width: 0;
339
+ min-height: 150px;
340
+ border-right: thin solid #e0e0e0;
341
+ border-bottom: thin solid #e0e0e0;
342
+ flex: 1 1 auto;
343
+ border-inline-end: thin solid #e0e0e0;
344
+ text-align: center;
345
+ }
346
+ .v-calendar-weekly__day.v-present .v-calendar-weekly__day-month {
347
+ color: currentColor;
348
+ }
349
+
350
+ .v-calendar-weekly__day-label {
351
+ text-decoration: none;
352
+ user-select: none;
353
+ cursor: pointer;
354
+ box-shadow: none;
355
+ text-align: center;
356
+ }
357
+ .v-calendar-weekly__day-label .v-btn {
358
+ font-size: 12px;
359
+ text-transform: none !important;
360
+ }
361
+ .v-calendar-weekly__day-label .v-btn.v-calendar-weekly__day-label__today {
362
+ background: rgba(var(--v-theme-surface-variant), var(--v-medium-emphasis-opacity));
363
+ color: rgb(var(--v-theme-on-surface-variant));
364
+ }
365
+
366
+ .v-calendar-weekly__day-month {
367
+ position: absolute;
368
+ text-decoration: none;
369
+ user-select: none;
370
+ box-shadow: none;
371
+ top: 0;
372
+ left: 36px;
373
+ height: 32px;
374
+ line-height: 32px;
375
+ }
376
+
377
+ .v-calendar-weekly__day-alldayevents-container {
378
+ min-height: 24px;
379
+ }
380
+
@@ -695,6 +695,10 @@
695
695
  box-shadow: 0px 5px 5px -3px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 8px 10px 1px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 3px 14px 2px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
696
696
  }
697
697
 
698
+ .v-speed-dial__content {
699
+ gap: 8px;
700
+ }
701
+
698
702
  .v-navigation-drawer {
699
703
  -webkit-overflow-scrolling: touch;
700
704
  background: rgb(var(--v-theme-surface));
@@ -0,0 +1,243 @@
1
+ .v-time-picker.v-picker {
2
+ padding: 24px;
3
+ width: 328px;
4
+ }
5
+ .v-time-picker.v-picker .v-picker-title {
6
+ padding: 0;
7
+ margin-bottom: 20px;
8
+ }
9
+ .v-time-picker-controls {
10
+ display: flex;
11
+ align-items: center;
12
+ justify-content: center;
13
+ font-size: 0.875rem;
14
+ padding-top: 4px;
15
+ padding-bottom: 4px;
16
+ margin-bottom: 36px;
17
+ }
18
+ .v-time-picker-controls__text {
19
+ padding-bottom: 12px;
20
+ }
21
+ .v-time-picker-controls__time {
22
+ display: flex;
23
+ white-space: nowrap;
24
+ direction: ltr;
25
+ justify-content: center;
26
+ }
27
+ .v-time-picker-controls__time__btn.v-btn--density-default.v-btn {
28
+ width: 96px;
29
+ height: 80px;
30
+ font-size: 56px;
31
+ }
32
+ .v-time-picker-controls__time__btn.v-btn--density-default.v-btn__active {
33
+ background: rgb(var(--v-theme-primary));
34
+ }
35
+ .v-time-picker-controls__time__btn.v-btn--density-default.v-btn.v-time-picker-controls__time--with-ampm__btn {
36
+ width: 96px;
37
+ height: 80px;
38
+ }
39
+ .v-time-picker-controls__time__btn.v-btn--density-default.v-btn.v-time-picker-controls__time--with-seconds__btn {
40
+ width: 64px;
41
+ height: 80px;
42
+ font-size: 40px;
43
+ }
44
+ .v-time-picker-controls__time__separator {
45
+ font-size: 56px;
46
+ height: 80px;
47
+ width: 24px;
48
+ text-align: center;
49
+ }
50
+ .v-time-picker-controls__time__separator.v-time-picker-controls--with-seconds__time__separator {
51
+ height: 80px;
52
+ font-size: 56px;
53
+ }
54
+
55
+ .v-time-picker-controls__ampm {
56
+ margin-left: 12px;
57
+ align-self: flex-end;
58
+ display: flex;
59
+ flex-direction: column;
60
+ font-size: 18px;
61
+ text-transform: uppercase;
62
+ }
63
+ .v-time-picker-controls__ampm--readonly {
64
+ pointer-events: none;
65
+ }
66
+ .v-time-picker-controls__ampm--readonly .v-picker__title__btn.v-picker__title__btn--active {
67
+ opacity: 0.6;
68
+ }
69
+ .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default {
70
+ font-size: 18px;
71
+ padding: 0 8px;
72
+ min-width: 52px;
73
+ height: 40px;
74
+ }
75
+ .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default.v-time-picker-controls__ampm__am {
76
+ border-radius: 4px 4px 0 0;
77
+ border: 1px solid;
78
+ }
79
+ .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default.v-time-picker-controls__ampm__pm {
80
+ border-radius: 0 0 4px 4px;
81
+ border: 1px solid;
82
+ border-top: none;
83
+ }
84
+ .v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default__active {
85
+ background: rgb(var(--v-theme-primary));
86
+ }
87
+
88
+ .v-picker__title--landscape .v-time-picker-controls {
89
+ flex-direction: column;
90
+ justify-content: center;
91
+ height: 100%;
92
+ }
93
+ .v-picker__title--landscape .v-time-picker-controls__time {
94
+ text-align: right;
95
+ }
96
+ .v-picker__title--landscape .v-time-picker-controls__time .v-picker__title__btn,
97
+ .v-picker__title--landscape .v-time-picker-controls__time span {
98
+ height: 55px;
99
+ font-size: 55px;
100
+ }
101
+ .v-picker__title--landscape .v-time-picker-controls__ampm {
102
+ margin: 16px 0 0;
103
+ align-self: initial;
104
+ text-align: center;
105
+ }
106
+
107
+ .v-picker--time .v-picker__title--landscape {
108
+ padding: 0;
109
+ }
110
+ .v-picker--time .v-picker__title--landscape .v-time-picker-controls__time {
111
+ text-align: center;
112
+ }
113
+ .v-time-picker-clock {
114
+ background: rgb(var(--v-theme-background));
115
+ color: rgb(var(--v-theme-on-background));
116
+ }
117
+ .v-time-picker-clock:after {
118
+ color: rgb(var(--v-theme-primary));
119
+ }
120
+ .v-time-picker-clock .v-time-picker-clock__item--active {
121
+ background-color: rgb(var(--v-theme-surface-variant));
122
+ color: rgb(var(--v-theme-on-surface-variant));
123
+ }
124
+
125
+ .v-time-picker-clock {
126
+ margin: 0 auto;
127
+ background: rgb(var(--v-theme-surface-light));
128
+ border-radius: 50%;
129
+ position: relative;
130
+ transition: none;
131
+ user-select: none;
132
+ height: 256px;
133
+ width: 256px;
134
+ flex: 1 0 auto;
135
+ }
136
+ .v-time-picker-clock__container {
137
+ display: flex;
138
+ flex-direction: column;
139
+ flex-basis: 290px;
140
+ justify-content: center;
141
+ padding: 10px;
142
+ }
143
+ .v-time-picker-clock__hand {
144
+ background-color: currentColor;
145
+ height: calc(50% - 4px);
146
+ width: 2px;
147
+ bottom: 50%;
148
+ left: calc(50% - 1px);
149
+ transform-origin: center bottom;
150
+ position: absolute;
151
+ will-change: transform;
152
+ z-index: 1;
153
+ }
154
+ .v-time-picker-clock__hand:before {
155
+ background: transparent;
156
+ border-width: 2px;
157
+ border-style: solid;
158
+ border-color: currentColor;
159
+ border-radius: 100%;
160
+ width: 10px;
161
+ height: 10px;
162
+ content: "";
163
+ position: absolute;
164
+ top: -4px;
165
+ left: 50%;
166
+ transform: translate(-50%, -50%);
167
+ }
168
+ .v-time-picker-clock__hand:after {
169
+ content: "";
170
+ position: absolute;
171
+ height: 8px;
172
+ width: 8px;
173
+ top: 100%;
174
+ left: 50%;
175
+ border-radius: 100%;
176
+ background-color: currentColor;
177
+ transform: translate(-50%, -50%);
178
+ }
179
+ .v-time-picker-clock__hand--inner:after {
180
+ height: 14px;
181
+ }
182
+ .v-time-picker-clock--readonly {
183
+ pointer-events: none;
184
+ }
185
+ .v-time-picker-clock .v-time-picker-clock__item--disabled {
186
+ opacity: var(--v-disabled-opacity);
187
+ }
188
+
189
+ .v-picker--full-width .v-time-picker-clock__container {
190
+ max-width: 290px;
191
+ }
192
+
193
+ .v-time-picker-clock__inner {
194
+ position: absolute;
195
+ bottom: 27px;
196
+ left: 27px;
197
+ right: 27px;
198
+ top: 27px;
199
+ }
200
+
201
+ .v-time-picker-clock__item {
202
+ align-items: center;
203
+ border-radius: 100%;
204
+ cursor: default;
205
+ display: flex;
206
+ font-size: 16px;
207
+ justify-content: center;
208
+ height: 40px;
209
+ position: absolute;
210
+ text-align: center;
211
+ width: 40px;
212
+ user-select: none;
213
+ transform: translate(-50%, -50%);
214
+ }
215
+ .v-time-picker-clock__item > span {
216
+ z-index: 1;
217
+ }
218
+ .v-time-picker-clock__item:before, .v-time-picker-clock__item:after {
219
+ content: "";
220
+ border-radius: 100%;
221
+ position: absolute;
222
+ top: 50%;
223
+ left: 50%;
224
+ height: 14px;
225
+ width: 14px;
226
+ transform: translate(-50%, -50%);
227
+ }
228
+ .v-time-picker-clock__item:after, .v-time-picker-clock__item:before {
229
+ height: 40px;
230
+ width: 40px;
231
+ }
232
+ .v-time-picker-clock__item--active {
233
+ cursor: default;
234
+ z-index: 2;
235
+ }
236
+ .v-time-picker-clock__item--disabled {
237
+ pointer-events: none;
238
+ }
239
+
240
+ .v-picker--landscape .v-time-picker-clock__container {
241
+ flex-direction: row;
242
+ }
243
+
@@ -1 +1 @@
1
- {"Omnia":{"Features":{"Status":"Status","Version":"Version","Features":"Features","Activate":"Activate","RequestConsent":"Request consent","CancelRequestConsent":"Cancel request","Remove":"Deactivate","Upgrade":"Upgrade","Reactivate":"Reactivate","View":"View","Properties":"Properties","ShowLog":"Show log","ErrorMessage":"Error occurred. Please refer to transaction Id: ","UnhandledErrorMessage":"An error occured: ","ViewInfo":"more info","AdminConsent":"Consent","ConsentMessage":"This feature required admin consent for the following permissions:","Approved":"Approved","Type":"Type","WaitingConsentMessage":"Waiting for consent...","NeedUpgrade":"A new version exists: ","UpgradeAll":"Upgrade required","ConsentPermissions":"Consent pending","ConsentDialogTitle":"Consent pending permission","ConsentUrl":"URL to the consent","CopyToClip":"Copy to clipboard","CopyToClipSuccessMessage":"Copied to Clipboard","DeactiveFeature":"Deactive Feature","DeactiveFeatureMessage":"Are you sure you want to deactivate this feature?","ConsentInformationLabel":"Consent information","DescriptionLabel":"Description","ActivatedVersion":"Activated version","NotActivated":"Not activated","Activating":"Activating","Deactivating":"Deactivating","Deactivate":"Deactivate","ConsentCompletedWaitingActivation":"Consent successfully. Waiting for activation"}}}
1
+ {"Omnia":{"Features":{"Status":"Status","Version":"Version","Features":"Features","Activate":"Activate","RequestConsent":"Request consent","CancelRequestConsent":"Cancel request","Remove":"Deactivate","Upgrade":"Upgrade","Reactivate":"Reactivate","View":"View","Properties":"Properties","ShowLog":"Show log","ErrorMessage":"Error occurred. Please refer to transaction Id: ","UnhandledErrorMessage":"An error occured: ","ViewInfo":"more info","AdminConsent":"Consent","ConsentMessage":"This feature required admin consent for the following permissions:","Approved":"Approved","Type":"Type","WaitingConsentMessage":"Waiting for consent...","NeedUpgrade":"A new version exists: ","UpgradeAll":"Upgrade required","ConsentPermissions":"Consent pending","ConsentDialogTitle":"Consent pending permission","ConsentUrl":"URL to the consent","CopyToClip":"Copy to clipboard","CopyToClipSuccessMessage":"Copied to Clipboard","DeactiveFeature":"Deactive Feature","DeactiveFeatureMessage":"Are you sure you want to deactivate this feature?","ConsentInformationLabel":"Consent information","DescriptionLabel":"Description","ActivatedVersion":"Activated version","NotActivated":"Not activated","Activating":"Activating","Deactivating":"Deactivating","Deactivate":"Deactivate","ConsentLinkWaitingMessage":"Please wait for consent link to be ready...","ConsentCompletedWaitingActivation":"Consent successfully. Waiting for activation","InstructingRevisitAzureAdPermissionsSettings":"Please return to the Azure Ad Permission Settings and consent once more to completely remove the requested permission."}}}
@@ -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":"f4616ea90e374f12877392044b415f70"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"api":["fx.ux.admin.navigations.rootNodes.registrations","fx.ux.admin.navigations.subNodes.registrations","fx.ux.admin.registration.navigationMenuNode","fx.ux.admin.registration.navigationNode","fx.ux.admin.events.initializeNavigationNode"],"registerApiConfiguration":{"fx.ux.admin.navigations.rootNodes.registrations":{"disableAutoLoadingManifests":true},"fx.ux.admin.navigations.subNodes.registrations":{"disableAutoLoadingManifests":true}}},{"manifestType":"resource","resourceId":"8a56151b-5f71-4f0d-823a-1ab34fbfd580","resourceName":"omnia.workplace.adminregistrations","version":{"js":"6c6178f849a7a91db16ba21af16493e9"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}],"combinedLoadRules":[{"logicalOperator":"&&","rule":{"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","resourceId":"253e469e-f68e-4cb5-b526-343736c2ff11"}}]}],"webcomponent":[{"elementName":"omnia-admin-renderer","manifestType":"webcomponent","resourceId":"253e469e-f68e-4cb5-b526-343736c2ff11","resourceName":"omnia.admin","version":{"js":"c1c2758f699419d91ee633efe7041e59"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-workplace-admin-tenant-design-journey","manifestType":"webcomponent","resourceId":"97cad1f2-5469-4fb2-ab76-b333cf8fe84c","resourceName":"omnia.workplace.design.journey","version":{"js":"9f7a093001970a14f1713a8c45245bd2"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-versioned-layout-blade-builder","manifestType":"webcomponent","resourceId":"35ec8e8c-3b6e-4585-8afd-0b1832eef250","resourceName":"omnia.fx.ux.versionedlayout.blade","version":{"js":"cfb457b6f3ad02123fe184c95062a293"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-versioned-layout-creation-blade","manifestType":"webcomponent","resourceId":"e40dc8c1-d503-4296-96ce-fd8cccadc744","resourceName":"omnia.fx.ux.versionedlayout.blade.creation","version":{"js":"e074b8ddc7377aed6fa2ffd9e1dee026"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-versioned-layout-list-blade-builder","manifestType":"webcomponent","resourceId":"cd42d83e-ed23-4ada-aea7-498795c701ee","resourceName":"omnia.fx.ux.versionedlayout.blade.list","version":{"js":"d7d90cc5669c75a91d0a9c638d3afbb4"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-color-schema-definition-picker","manifestType":"webcomponent","resourceId":"9ed2b61f-ad8a-43f3-84ef-ef4a5dcbd184","resourceName":"omnia.fx.ux.velcron.colorschemadefinitionpicker","version":{"js":"62b4c6ae9a23c26032b844e50afea3f7"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-color-schema-editor","manifestType":"webcomponent","resourceId":"7abfeece-9562-45f3-ba63-c231d3c31c26","resourceName":"omnia.fx.ux.velcron.colorschemaeditor","version":{"js":"a9e8736fda24521d488276191ad27c6b"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-workplace-themes-journey","manifestType":"webcomponent","resourceId":"bed95d1e-c67f-4a15-986f-c72adebdb78f","resourceName":"omnia.workplace.design.journey","version":{"js":"a2c6a5f0d047837ec07eaa70bd43463e"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-workplace-spacing-journey","manifestType":"webcomponent","resourceId":"891de93e-73cc-47b0-a552-d24fdf34c9cf","resourceName":"omnia.workplace.spacing.journey","version":{"js":"215a09ce5c7753a4249cd3329a9cbbe4"},"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":"f4616ea90e374f12877392044b415f70"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"api":["fx.ux.admin.navigations.rootNodes.registrations","fx.ux.admin.navigations.subNodes.registrations","fx.ux.admin.registration.navigationMenuNode","fx.ux.admin.registration.navigationNode","fx.ux.admin.events.initializeNavigationNode"],"registerApiConfiguration":{"fx.ux.admin.navigations.rootNodes.registrations":{"disableAutoLoadingManifests":true},"fx.ux.admin.navigations.subNodes.registrations":{"disableAutoLoadingManifests":true}}},{"manifestType":"resource","resourceId":"8a56151b-5f71-4f0d-823a-1ab34fbfd580","resourceName":"omnia.workplace.adminregistrations","version":{"js":"6c6178f849a7a91db16ba21af16493e9"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}],"combinedLoadRules":[{"logicalOperator":"&&","rule":{"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","resourceId":"253e469e-f68e-4cb5-b526-343736c2ff11"}}]}],"webcomponent":[{"elementName":"omnia-admin-renderer","manifestType":"webcomponent","resourceId":"253e469e-f68e-4cb5-b526-343736c2ff11","resourceName":"omnia.admin","version":{"js":"c1c2758f699419d91ee633efe7041e59"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-workplace-admin-tenant-design-journey","manifestType":"webcomponent","resourceId":"97cad1f2-5469-4fb2-ab76-b333cf8fe84c","resourceName":"omnia.workplace.design.journey","version":{"js":"9f7a093001970a14f1713a8c45245bd2"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-versioned-layout-blade-builder","manifestType":"webcomponent","resourceId":"35ec8e8c-3b6e-4585-8afd-0b1832eef250","resourceName":"omnia.fx.ux.versionedlayout.blade","version":{"js":"cfb457b6f3ad02123fe184c95062a293"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-versioned-layout-creation-blade","manifestType":"webcomponent","resourceId":"e40dc8c1-d503-4296-96ce-fd8cccadc744","resourceName":"omnia.fx.ux.versionedlayout.blade.creation","version":{"js":"e074b8ddc7377aed6fa2ffd9e1dee026"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-versioned-layout-list-blade-builder","manifestType":"webcomponent","resourceId":"cd42d83e-ed23-4ada-aea7-498795c701ee","resourceName":"omnia.fx.ux.versionedlayout.blade.list","version":{"js":"4e0c0aca36053245484132c7b66627a3"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-color-schema-definition-picker","manifestType":"webcomponent","resourceId":"9ed2b61f-ad8a-43f3-84ef-ef4a5dcbd184","resourceName":"omnia.fx.ux.velcron.colorschemadefinitionpicker","version":{"js":"62b4c6ae9a23c26032b844e50afea3f7"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-color-schema-editor","manifestType":"webcomponent","resourceId":"7abfeece-9562-45f3-ba63-c231d3c31c26","resourceName":"omnia.fx.ux.velcron.colorschemaeditor","version":{"js":"a9e8736fda24521d488276191ad27c6b"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-workplace-themes-journey","manifestType":"webcomponent","resourceId":"bed95d1e-c67f-4a15-986f-c72adebdb78f","resourceName":"omnia.workplace.design.journey","version":{"js":"a40ad5636d0f20f20e1778252928dcda"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-workplace-spacing-journey","manifestType":"webcomponent","resourceId":"891de93e-73cc-47b0-a552-d24fdf34c9cf","resourceName":"omnia.workplace.spacing.journey","version":{"js":"215a09ce5c7753a4249cd3329a9cbbe4"},"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":"7ec438b6f21114181ebb39052ec81d40"},"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":"9a3173e17d81a0d5ad6df1662ac48f90"},"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":"7ec438b6f21114181ebb39052ec81d40"},"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":"c1cb1378b16d22e58af72189703d28b4"},"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-sp-term-item","manifestType":"webcomponent","resourceId":"dae567bb-2f18-46ab-ad5c-0adaa64945cf","resourceName":"omfx.sp.term.item","version":{"js":"09970272b28069bd7ffcc268f3ef979d"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"fa502cf2-bcf9-4dc0-b4f9-13dc63c04bfc"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-hub-feed-settings","manifestType":"webcomponent","resourceId":"baecc575-9107-4830-a5ae-2dda9f6b5ed5","resourceName":"HubFeed.settings","version":{"js":"8ad9490f7fd1fb8e48814b0d27fa0d05"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]}]}
1
+ {"target":4,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","webcomponent":[{"elementName":"omfx-sp-term-item","manifestType":"webcomponent","resourceId":"dae567bb-2f18-46ab-ad5c-0adaa64945cf","resourceName":"omfx.sp.term.item","version":{"js":"809496053f95ac8d8e464ab95c852ebf"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"fa502cf2-bcf9-4dc0-b4f9-13dc63c04bfc"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-hub-feed-settings","manifestType":"webcomponent","resourceId":"baecc575-9107-4830-a5ae-2dda9f6b5ed5","resourceName":"HubFeed.settings","version":{"js":"8ad9490f7fd1fb8e48814b0d27fa0d05"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]}]}