@lifeonlars/prime-yggdrasil 0.1.1 → 0.1.2

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,868 @@
1
+ /**
2
+ * form components
3
+ */
4
+
5
+ .p-inputtext {
6
+ font-family: var(--font-family);
7
+ font-size: 1rem;
8
+ color: var(--text-neutral-default);
9
+ background: var(--surface-neutral-primary);
10
+ padding: 0.75rem 0.75rem;
11
+ border: 1px solid var(--border-neutral-default);
12
+ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
13
+ appearance: none;
14
+ border-radius: var(--radius-md);
15
+ outline-color: transparent;
16
+ }
17
+ .p-inputtext:enabled:hover {
18
+ border-color: var(--border-state-interactive);
19
+ }
20
+ .p-inputtext:enabled:focus {
21
+ outline: 0 none;
22
+ outline-offset: 0;
23
+ box-shadow: 0 0 0 0.2rem var(--surface-brand-overlay);
24
+ border-color: var(--border-state-interactive);
25
+ }
26
+ .p-inputtext.p-invalid.p-component {
27
+ border-color: var(--severity-danger-text);
28
+ }
29
+ .p-inputtext.p-variant-filled {
30
+ background-color: var(--surface-neutral-secondary);
31
+ }
32
+ .p-inputtext.p-variant-filled:enabled:hover {
33
+ background-color: var(--surface-neutral-secondary);
34
+ }
35
+ .p-inputtext.p-variant-filled:enabled:focus {
36
+ background-color: var(--surface-neutral-primary);
37
+ }
38
+ .p-inputtext.p-inputtext-sm {
39
+ font-size: 0.875rem;
40
+ padding: 0.65625rem 0.65625rem;
41
+ }
42
+ .p-inputtext.p-inputtext-lg {
43
+ font-size: 1.25rem;
44
+ padding: 0.9375rem 0.9375rem;
45
+ }
46
+ .p-inputnumber.p-invalid.p-component > .p-inputtext {
47
+ border-color: var(--severity-danger-text);
48
+ }
49
+ .p-inputgroup > .p-component,
50
+ .p-inputgroup > .p-inputwrapper > .p-inputtext,
51
+ .p-inputgroup > .p-float-label > .p-component {
52
+ border-radius: 0;
53
+ margin: 0;
54
+ }
55
+ .p-inputgroup > .p-component + .p-inputgroup-addon,
56
+ .p-inputgroup > .p-inputwrapper > .p-inputtext + .p-inputgroup-addon,
57
+ .p-inputgroup > .p-float-label > .p-component + .p-inputgroup-addon {
58
+ border-left: 0 none;
59
+ }
60
+ .p-inputgroup > .p-component:focus,
61
+ .p-inputgroup > .p-inputwrapper > .p-inputtext:focus,
62
+ .p-inputgroup > .p-float-label > .p-component:focus {
63
+ z-index: 1;
64
+ }
65
+ .p-inputgroup > .p-component:focus ~ label,
66
+ .p-inputgroup > .p-inputwrapper > .p-inputtext:focus ~ label,
67
+ .p-inputgroup > .p-float-label > .p-component:focus ~ label {
68
+ z-index: 1;
69
+ }
70
+ .p-inputgroup button:first-child,
71
+ .p-inputgroup input:first-child,
72
+ .p-inputgroup > .p-inputwrapper:first-child,
73
+ .p-inputgroup > .p-inputwrapper:first-child > .p-inputtext {
74
+ border-top-left-radius: var(--radius-md);
75
+ border-bottom-left-radius: var(--radius-md);
76
+ }
77
+ .p-inputgroup .p-float-label:first-child input {
78
+ border-top-left-radius: var(--radius-md);
79
+ border-bottom-left-radius: var(--radius-md);
80
+ }
81
+ .p-inputgroup button:last-child,
82
+ .p-inputgroup input:last-child,
83
+ .p-inputgroup > .p-inputwrapper:last-child,
84
+ .p-inputgroup > .p-inputwrapper:last-child > .p-inputtext {
85
+ border-top-right-radius: var(--radius-md);
86
+ border-bottom-right-radius: var(--radius-md);
87
+ }
88
+ .p-inputgroup .p-float-label:last-child input {
89
+ border-top-right-radius: var(--radius-md);
90
+ border-bottom-right-radius: var(--radius-md);
91
+ }
92
+ .p-inputswitch {
93
+ position: relative;
94
+ display: inline-block;
95
+ }
96
+ .p-inputswitch {
97
+ width: 3rem;
98
+ height: 1.75rem;
99
+ }
100
+ .p-inputswitch .p-inputswitch-input {
101
+ border-radius: 30px;
102
+ }
103
+ .p-inputswitch .p-inputswitch-slider {
104
+ background: var(--border-neutral-subdued);
105
+ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
106
+ border-radius: 30px;
107
+ outline-color: transparent;
108
+ }
109
+ .p-inputswitch .p-inputswitch-slider:before {
110
+ background: var(--text-onsurface-onbrand);
111
+ width: 1.25rem;
112
+ height: 1.25rem;
113
+ left: 0.25rem;
114
+ margin-top: -0.625rem;
115
+ border-radius: var(--radius-full);
116
+ transition-duration: 0.2s;
117
+ }
118
+ .p-inputswitch.p-highlight .p-inputswitch-slider {
119
+ background: var(--surface-brand-primary);
120
+ }
121
+ .p-inputswitch.p-highlight .p-inputswitch-slider:before {
122
+ background: var(--text-onsurface-onbrand);
123
+ transform: translateX(1.25rem);
124
+ }
125
+ .p-inputswitch:not(.p-disabled):has(.p-inputswitch-input:hover) .p-inputswitch-slider {
126
+ background: #b7bcc5;
127
+ }
128
+ .p-inputswitch:not(.p-disabled):has(.p-inputswitch-input:hover).p-highlight .p-inputswitch-slider {
129
+ background: var(--surface-brand-secondary);
130
+ }
131
+ .p-inputswitch:not(.p-disabled):has(.p-inputswitch-input:focus-visible) .p-inputswitch-slider {
132
+ outline: 0 none;
133
+ outline-offset: 0;
134
+ box-shadow: 0 0 0 0.2rem var(--surface-brand-overlay);
135
+ }
136
+ .p-inputswitch.p-invalid > .p-inputswitch-slider {
137
+ border-color: var(--severity-danger-text);
138
+ }
139
+ .p-checkbox {
140
+ position: relative;
141
+ display: inline-flex;
142
+ user-select: none;
143
+ vertical-align: bottom;
144
+ }
145
+ .p-checkbox {
146
+ width: 22px;
147
+ height: 22px;
148
+ }
149
+ .p-checkbox .p-checkbox-input {
150
+ border: 2px solid var(--border-neutral-default);
151
+ border-radius: var(--radius-md);
152
+ }
153
+ .p-checkbox .p-checkbox-box {
154
+ border: 2px solid var(--border-neutral-default);
155
+ background: var(--surface-neutral-primary);
156
+ width: 22px;
157
+ height: 22px;
158
+ color: var(--text-neutral-default);
159
+ border-radius: var(--radius-md);
160
+ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
161
+ outline-color: transparent;
162
+ }
163
+ .p-checkbox .p-checkbox-box .p-checkbox-icon {
164
+ transition-duration: 0.2s;
165
+ color: var(--text-onsurface-onbrand);
166
+ font-size: 14px;
167
+ }
168
+ .p-checkbox .p-checkbox-box .p-checkbox-icon.p-icon {
169
+ width: 14px;
170
+ height: 14px;
171
+ }
172
+ .p-checkbox .p-checkbox-box {
173
+ border: 2px solid var(--border-neutral-default);
174
+ background: var(--surface-neutral-primary);
175
+ width: 22px;
176
+ height: 22px;
177
+ color: var(--text-neutral-default);
178
+ border-radius: var(--radius-md);
179
+ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
180
+ outline-color: transparent;
181
+ }
182
+ .p-checkbox .p-checkbox-box .p-checkbox-icon {
183
+ transition-duration: 0.2s;
184
+ color: var(--text-onsurface-onbrand);
185
+ font-size: 14px;
186
+ }
187
+ .p-checkbox .p-checkbox-box .p-checkbox-icon.p-icon {
188
+ width: 14px;
189
+ height: 14px;
190
+ }
191
+ .p-checkbox.p-highlight .p-checkbox-box {
192
+ border-color: var(--border-state-interactive);
193
+ background: var(--surface-brand-primary);
194
+ }
195
+ .p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box {
196
+ border-color: var(--border-state-interactive);
197
+ }
198
+ .p-checkbox:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box {
199
+ border-color: var(--border-state-interactive);
200
+ background: var(--surface-brand-secondary);
201
+ color: var(--text-onsurface-onbrand);
202
+ }
203
+ .p-checkbox:not(.p-disabled):has(.p-checkbox-input:focus-visible) .p-checkbox-box {
204
+ outline: 0 none;
205
+ outline-offset: 0;
206
+ box-shadow: 0 0 0 0.2rem var(--surface-brand-overlay);
207
+ border-color: var(--border-state-interactive);
208
+ }
209
+ .p-checkbox.p-invalid > .p-checkbox-box {
210
+ border-color: var(--severity-danger-text);
211
+ }
212
+ .p-checkbox.p-variant-filled .p-checkbox-box {
213
+ background-color: var(--surface-neutral-secondary);
214
+ }
215
+ .p-checkbox.p-variant-filled.p-highlight .p-checkbox-box {
216
+ background: var(--surface-brand-primary);
217
+ }
218
+ .p-checkbox.p-variant-filled:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box {
219
+ background-color: var(--surface-neutral-secondary);
220
+ }
221
+ .p-checkbox.p-variant-filled:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box {
222
+ background: var(--surface-brand-secondary);
223
+ }
224
+ .p-checkbox {
225
+ position: relative;
226
+ display: inline-flex;
227
+ user-select: none;
228
+ vertical-align: bottom;
229
+ }
230
+ .p-radiobutton {
231
+ position: relative;
232
+ display: inline-flex;
233
+ user-select: none;
234
+ vertical-align: bottom;
235
+ }
236
+ .p-radiobutton.p-highlight .p-radiobutton-icon {
237
+ transform: translateZ(0) scale(1, 1);
238
+ visibility: visible;
239
+ }
240
+ .p-radiobutton {
241
+ width: 22px;
242
+ height: 22px;
243
+ }
244
+ .p-radiobutton .p-radiobutton-input {
245
+ appearance: none;
246
+ position: absolute;
247
+ top: 0;
248
+ left: 0;
249
+ width: 100%;
250
+ height: 100%;
251
+ padding: 0;
252
+ margin: 0;
253
+ opacity: 0;
254
+ z-index: 1;
255
+ outline: 0 none;
256
+ border: 2px solid var(--border-neutral-default);
257
+ border-radius: var(--radius-full);
258
+ }
259
+ .p-radiobutton .p-radiobutton-box {
260
+ border: 2px solid var(--border-neutral-default);
261
+ background: var(--surface-neutral-primary);
262
+ width: 22px;
263
+ height: 22px;
264
+ color: var(--text-neutral-default);
265
+ border-radius: var(--radius-full);
266
+ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
267
+ outline-color: transparent;
268
+ }
269
+ .p-radiobutton .p-radiobutton-box .p-radiobutton-icon {
270
+ width: 12px;
271
+ height: 12px;
272
+ transition-duration: 0.2s;
273
+ background-color: var(--surface-neutral-primary);
274
+ }
275
+ .p-radiobutton.p-highlight .p-radiobutton-box {
276
+ border-color: var(--border-state-interactive);
277
+ background: var(--surface-brand-primary);
278
+ }
279
+ .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover) .p-radiobutton-box {
280
+ border-color: var(--border-state-interactive);
281
+ }
282
+ .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover).p-highlight .p-radiobutton-box {
283
+ border-color: var(--border-state-interactive);
284
+ background: var(--surface-brand-secondary);
285
+ }
286
+ .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:hover).p-highlight .p-radiobutton-box .p-radiobutton-icon {
287
+ background-color: var(--surface-neutral-primary);
288
+ }
289
+ .p-radiobutton:not(.p-disabled):has(.p-radiobutton-input:focus-visible) .p-radiobutton-box {
290
+ outline: 0 none;
291
+ outline-offset: 0;
292
+ box-shadow: 0 0 0 0.2rem var(--surface-brand-overlay);
293
+ border-color: var(--border-state-interactive);
294
+ }
295
+ .p-radiobutton.p-invalid > .p-radiobutton-box {
296
+ border-color: var(--severity-danger-text);
297
+ }
298
+ .p-radiobutton.p-variant-filled .p-radiobutton-box {
299
+ background-color: var(--surface-neutral-secondary);
300
+ }
301
+ .p-radiobutton.p-variant-filled.p-highlight .p-radiobutton-box {
302
+ background: var(--surface-brand-primary);
303
+ }
304
+ .p-radiobutton.p-variant-filled:not(.p-disabled):has(.p-radiobutton-input:hover) .p-radiobutton-box {
305
+ background-color: var(--surface-neutral-secondary);
306
+ }
307
+ .p-radiobutton.p-variant-filled:not(.p-disabled):has(.p-radiobutton-input:hover).p-highlight .p-radiobutton-box {
308
+ background: var(--surface-brand-secondary);
309
+ }
310
+ .p-togglebutton {
311
+ position: relative;
312
+ display: inline-flex;
313
+ user-select: none;
314
+ vertical-align: bottom;
315
+ }
316
+ .p-togglebutton .p-button {
317
+ flex: 1 1 auto;
318
+ }
319
+ .p-togglebutton .p-togglebutton-input {
320
+ appearance: none;
321
+ position: absolute;
322
+ top: 0;
323
+ left: 0;
324
+ width: 100%;
325
+ height: 100%;
326
+ padding: 0;
327
+ margin: 0;
328
+ opacity: 0;
329
+ z-index: 1;
330
+ outline: 0 none;
331
+ border: 1px solid var(--border-neutral-subdued);
332
+ border-radius: var(--radius-md);
333
+ }
334
+ .p-togglebutton .p-button {
335
+ background: var(--text-onsurface-onbrand);
336
+ border: 1px solid var(--border-neutral-subdued);
337
+ color: var(--text-neutral-subdued);
338
+ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
339
+ outline-color: transparent;
340
+ }
341
+ .p-togglebutton .p-button .p-button-icon-left,
342
+ .p-togglebutton .p-button .p-button-icon-right {
343
+ color: var(--text-neutral-subdued);
344
+ }
345
+ .p-togglebutton.p-highlight .p-button {
346
+ background: var(--surface-brand-primary);
347
+ border-color: var(--border-state-interactive);
348
+ color: var(--text-onsurface-onbrand);
349
+ }
350
+ .p-togglebutton.p-highlight .p-button .p-button-icon-left,
351
+ .p-togglebutton.p-highlight .p-button .p-button-icon-right {
352
+ color: var(--text-onsurface-onbrand);
353
+ }
354
+ .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:hover):not(.p-highlight) .p-button {
355
+ background: var(--surface-state-hover);
356
+ border-color: var(--border-neutral-subdued);
357
+ color: var(--text-neutral-subdued);
358
+ }
359
+ .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:hover):not(.p-highlight) .p-button .p-button-icon-left,
360
+ .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:hover):not(.p-highlight) .p-button .p-button-icon-right {
361
+ color: var(--text-neutral-default);
362
+ }
363
+ .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:hover).p-highlight .p-button {
364
+ background: var(--surface-brand-secondary);
365
+ border-color: var(--border-state-interactive);
366
+ color: var(--text-onsurface-onbrand);
367
+ }
368
+ .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:hover).p-highlight .p-button .p-button-icon-left,
369
+ .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:hover).p-highlight .p-button .p-button-icon-right {
370
+ color: var(--text-onsurface-onbrand);
371
+ }
372
+ .p-togglebutton:not(.p-disabled):has(.p-togglebutton-input:focus-visible) .p-button {
373
+ outline: 0 none;
374
+ outline-offset: 0;
375
+ box-shadow: 0 0 0 0.2rem var(--surface-brand-overlay);
376
+ border-color: var(--border-state-interactive);
377
+ }
378
+ .p-togglebutton.p-invalid > .p-button {
379
+ border-color: var(--severity-danger-text);
380
+ }
381
+ .p-togglebutton.p-button {
382
+ transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
383
+ }
384
+ .p-selectbutton .p-button {
385
+ background: var(--surface-neutral-primary);
386
+ border: 1px solid var(--border-neutral-default);
387
+ color: var(--text-neutral-default);
388
+ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
389
+ }
390
+ .p-selectbutton .p-button .p-button-icon-left,
391
+ .p-selectbutton .p-button .p-button-icon-right {
392
+ color: var(--text-neutral-subdued);
393
+ }
394
+ .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover {
395
+ background: var(--surface-neutral-secondary);
396
+ border-color: var(--border-neutral-default);
397
+ color: var(--text-neutral-default);
398
+ }
399
+ .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-left,
400
+ .p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover .p-button-icon-right {
401
+ color: var(--text-neutral-loud);
402
+ }
403
+ .p-selectbutton .p-button.p-highlight {
404
+ background: var(--surface-brand-primary);
405
+ border-color: var(--border-state-interactive);
406
+ color: var(--text-onsurface-onbrand);
407
+ }
408
+ .p-selectbutton .p-button.p-highlight .p-button-icon-left,
409
+ .p-selectbutton .p-button.p-highlight .p-button-icon-right {
410
+ color: var(--text-onsurface-onbrand);
411
+ }
412
+ .p-selectbutton .p-button.p-highlight:hover {
413
+ background: var(--surface-brand-secondary);
414
+ border-color: var(--border-state-interactive);
415
+ color: var(--text-onsurface-onbrand);
416
+ }
417
+ .p-selectbutton .p-button.p-highlight:hover .p-button-icon-left,
418
+ .p-selectbutton .p-button.p-highlight:hover .p-button-icon-right {
419
+ color: var(--text-onsurface-onbrand);
420
+ }
421
+ .p-selectbutton.p-invalid > .p-button {
422
+ border-color: var(--severity-danger-text);
423
+ }
424
+ .p-selectbutton > .p-button,
425
+ .p-dropdown {
426
+ display: inline-flex;
427
+ cursor: pointer;
428
+ position: relative;
429
+ user-select: none;
430
+ }
431
+ .p-dropdown .p-dropdown-panel {
432
+ min-width: 100%;
433
+ }
434
+ .p-dropdown {
435
+ background: var(--surface-neutral-primary);
436
+ border: 1px solid var(--border-neutral-default);
437
+ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
438
+ border-radius: var(--radius-md);
439
+ outline-color: transparent;
440
+ }
441
+ .p-dropdown:not(.p-disabled):hover {
442
+ border-color: var(--border-state-interactive);
443
+ }
444
+ .p-dropdown:not(.p-disabled).p-focus {
445
+ outline: 0 none;
446
+ outline-offset: 0;
447
+ box-shadow: 0 0 0 0.2rem var(--surface-brand-overlay);
448
+ border-color: var(--border-state-interactive);
449
+ }
450
+ .p-dropdown.p-variant-filled {
451
+ background: var(--surface-neutral-secondary);
452
+ }
453
+ .p-dropdown.p-variant-filled:not(.p-disabled):hover {
454
+ background-color: var(--surface-neutral-secondary);
455
+ }
456
+ .p-dropdown.p-variant-filled:not(.p-disabled).p-focus {
457
+ background-color: var(--surface-neutral-primary);
458
+ }
459
+ .p-dropdown.p-variant-filled:not(.p-disabled).p-focus .p-inputtext {
460
+ background-color: transparent;
461
+ }
462
+ .p-dropdown.p-dropdown-clearable .p-dropdown-label {
463
+ padding-right: 1.75rem;
464
+ }
465
+ .p-dropdown .p-dropdown-label {
466
+ background: transparent;
467
+ border: 0 none;
468
+ }
469
+ .p-dropdown .p-dropdown-label.p-placeholder {
470
+ color: var(--text-neutral-subdued);
471
+ }
472
+ .p-dropdown .p-dropdown-label:focus, .p-dropdown .p-dropdown-label:enabled:focus {
473
+ outline: 0 none;
474
+ box-shadow: none;
475
+ }
476
+ .p-dropdown .p-dropdown-trigger {
477
+ background: transparent;
478
+ color: var(--text-neutral-subdued);
479
+ width: 3rem;
480
+ border-top-right-radius: var(--radius-md);
481
+ border-bottom-right-radius: var(--radius-md);
482
+ }
483
+ .p-dropdown .p-dropdown-clear-icon {
484
+ color: var(--text-neutral-subdued);
485
+ right: 3rem;
486
+ }
487
+ .p-dropdown.p-invalid.p-component {
488
+ border-color: var(--severity-danger-text);
489
+ }
490
+ .p-multiselect {
491
+ display: inline-flex;
492
+ cursor: pointer;
493
+ user-select: none;
494
+ }
495
+ .p-multiselect .p-multiselect-panel {
496
+ min-width: 100%;
497
+ }
498
+ .p-multiselect {
499
+ background: var(--surface-neutral-primary);
500
+ border: 1px solid var(--border-neutral-default);
501
+ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
502
+ border-radius: var(--radius-md);
503
+ outline-color: transparent;
504
+ }
505
+ .p-multiselect:not(.p-disabled):hover {
506
+ border-color: var(--border-state-interactive);
507
+ }
508
+ .p-multiselect:not(.p-disabled).p-focus {
509
+ outline: 0 none;
510
+ outline-offset: 0;
511
+ box-shadow: 0 0 0 0.2rem var(--surface-brand-overlay);
512
+ border-color: var(--border-state-interactive);
513
+ }
514
+ .p-multiselect.p-variant-filled {
515
+ background: var(--surface-neutral-secondary);
516
+ }
517
+ .p-multiselect.p-variant-filled:not(.p-disabled):hover {
518
+ background-color: var(--surface-neutral-secondary);
519
+ }
520
+ .p-multiselect.p-variant-filled:not(.p-disabled).p-focus {
521
+ background-color: var(--surface-neutral-primary);
522
+ }
523
+ .p-multiselect .p-multiselect-label {
524
+ padding: 0.75rem 0.75rem;
525
+ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
526
+ }
527
+ .p-multiselect .p-multiselect-label.p-placeholder {
528
+ color: var(--text-neutral-subdued);
529
+ }
530
+ .p-multiselect.p-multiselect-chip .p-multiselect-token {
531
+ padding: 0.375rem 0.75rem;
532
+ margin-right: 0.5rem;
533
+ background: var(--surface-neutral-secondary);
534
+ color: var(--text-neutral-default);
535
+ border-radius: 16px;
536
+ }
537
+ .p-multiselect.p-multiselect-chip .p-multiselect-token .p-multiselect-token-icon {
538
+ margin-left: 0.5rem;
539
+ }
540
+ .p-multiselect .p-multiselect-trigger {
541
+ background: transparent;
542
+ color: var(--text-neutral-subdued);
543
+ width: 3rem;
544
+ border-top-right-radius: var(--radius-md);
545
+ border-bottom-right-radius: var(--radius-md);
546
+ }
547
+ .p-multiselect.p-invalid.p-component {
548
+ border-color: var(--severity-danger-text);
549
+ }
550
+ .p-treeselect {
551
+ background: var(--text-onsurface-onbrand);
552
+ border: 1px solid var(--border-neutral-subdued);
553
+ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
554
+ border-radius: var(--radius-md);
555
+ }
556
+ .p-treeselect:not(.p-disabled):hover {
557
+ border-color: var(--border-state-interactive);
558
+ }
559
+ .p-treeselect:not(.p-disabled).p-focus {
560
+ outline: 0 none;
561
+ outline-offset: 0;
562
+ box-shadow: 0 0 0 0.2rem var(--surface-brand-overlay);
563
+ border-color: var(--border-state-interactive);
564
+ }
565
+ .p-treeselect.p-treeselect-clearable .p-treeselect-label {
566
+ padding-right: 1.75rem;
567
+ }
568
+ .p-treeselect.p-variant-filled {
569
+ background: var(--surface-state-hover);
570
+ }
571
+ .p-treeselect.p-variant-filled:not(.p-disabled):hover {
572
+ background-color: var(--surface-state-hover);
573
+ }
574
+ .p-treeselect.p-variant-filled:not(.p-disabled).p-focus {
575
+ background-color: var(--text-onsurface-onbrand);
576
+ }
577
+ .p-treeselect .p-treeselect-label {
578
+ padding: 0.75rem 0.75rem;
579
+ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
580
+ }
581
+ .p-treeselect .p-treeselect-label.p-placeholder {
582
+ color: var(--text-neutral-subdued);
583
+ }
584
+ .p-treeselect.p-treeselect-chip .p-treeselect-token {
585
+ padding: 0.375rem 0.75rem;
586
+ margin-right: 0.5rem;
587
+ background: var(--border-neutral-default);
588
+ color: var(--text-neutral-subdued);
589
+ border-radius: 16px;
590
+ }
591
+ .p-treeselect .p-treeselect-trigger {
592
+ background: transparent;
593
+ color: var(--text-neutral-subdued);
594
+ width: 3rem;
595
+ border-top-right-radius: var(--radius-md);
596
+ border-bottom-right-radius: var(--radius-md);
597
+ }
598
+ .p-treeselect .p-treeselect-clear-icon {
599
+ color: var(--text-neutral-subdued);
600
+ right: 3rem;
601
+ }
602
+ .p-treeselect.p-invalid.p-component {
603
+ border-color: var(--severity-danger-text);
604
+ }
605
+ .p-cascadeselect {
606
+ background: var(--text-onsurface-onbrand);
607
+ border: 1px solid var(--border-neutral-subdued);
608
+ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
609
+ border-radius: var(--radius-md);
610
+ outline-color: transparent;
611
+ }
612
+ .p-cascadeselect:not(.p-disabled):hover {
613
+ border-color: var(--border-state-interactive);
614
+ }
615
+ .p-cascadeselect:not(.p-disabled).p-focus {
616
+ outline: 0 none;
617
+ outline-offset: 0;
618
+ box-shadow: 0 0 0 0.2rem var(--surface-brand-overlay);
619
+ border-color: var(--border-state-interactive);
620
+ }
621
+ .p-cascadeselect.p-variant-filled {
622
+ background-color: var(--surface-state-hover);
623
+ }
624
+ .p-cascadeselect.p-variant-filled:enabled:hover {
625
+ background-color: var(--surface-state-hover);
626
+ }
627
+ .p-cascadeselect.p-variant-filled:enabled:focus {
628
+ background-color: var(--text-onsurface-onbrand);
629
+ }
630
+ .p-cascadeselect .p-cascadeselect-label {
631
+ background: transparent;
632
+ border: 0 none;
633
+ padding: 0.75rem 0.75rem;
634
+ }
635
+ .p-cascadeselect .p-cascadeselect-label.p-placeholder {
636
+ color: var(--text-neutral-subdued);
637
+ }
638
+ .p-cascadeselect .p-cascadeselect-label:enabled:focus {
639
+ outline: 0 none;
640
+ box-shadow: none;
641
+ }
642
+ .p-cascadeselect .p-cascadeselect-trigger {
643
+ background: transparent;
644
+ color: var(--text-neutral-subdued);
645
+ width: 3rem;
646
+ border-top-right-radius: var(--radius-md);
647
+ border-bottom-right-radius: var(--radius-md);
648
+ }
649
+ .p-cascadeselect.p-invalid.p-component {
650
+ border-color: var(--severity-danger-text);
651
+ }
652
+ .p-listbox {
653
+ background: var(--text-onsurface-onbrand);
654
+ color: var(--text-neutral-subdued);
655
+ border: 1px solid var(--border-neutral-subdued);
656
+ border-radius: var(--radius-md);
657
+ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
658
+ outline-color: transparent;
659
+ }
660
+ .p-listbox .p-listbox-header {
661
+ padding: 0.75rem 1.25rem;
662
+ border-bottom: 1px solid var(--border-neutral-subdued);
663
+ color: var(--text-neutral-default);
664
+ background: var(--surface-neutral-secondary);
665
+ margin: 0;
666
+ border-top-right-radius: var(--radius-md);
667
+ border-top-left-radius: var(--radius-md);
668
+ }
669
+ .p-listbox .p-listbox-header .p-listbox-filter {
670
+ padding-right: 1.75rem;
671
+ }
672
+ .p-listbox .p-listbox-header .p-listbox-filter-icon {
673
+ right: 0.75rem;
674
+ color: var(--text-neutral-subdued);
675
+ }
676
+ .p-listbox .p-listbox-list {
677
+ padding: 0.75rem 0;
678
+ outline: 0 none;
679
+ }
680
+ .p-listbox .p-listbox-list .p-listbox-item {
681
+ margin: 0;
682
+ padding: 0.75rem 1.25rem;
683
+ border: 0 none;
684
+ color: var(--text-neutral-subdued);
685
+ transition: box-shadow 0.2s;
686
+ border-radius: 0;
687
+ }
688
+ .p-listbox .p-listbox-list .p-listbox-item:first-child {
689
+ margin-top: 0;
690
+ }
691
+ .p-listbox .p-listbox-list .p-listbox-item:last-child {
692
+ margin-bottom: 0;
693
+ }
694
+ .p-listbox .p-listbox-list .p-listbox-item.p-highlight {
695
+ color: var(--text-state-interactive);
696
+ background: var(--surface-brand-overlay);
697
+ }
698
+ .p-listbox .p-listbox-list .p-listbox-item-group {
699
+ margin: 0;
700
+ padding: 0.75rem 1.25rem;
701
+ color: var(--text-neutral-default);
702
+ background: var(--text-onsurface-onbrand);
703
+ font-weight: 700;
704
+ }
705
+ .p-listbox .p-listbox-list .p-listbox-empty-message {
706
+ padding: 0.75rem 1.25rem;
707
+ color: var(--text-neutral-subdued);
708
+ background: transparent;
709
+ }
710
+ .p-listbox:not(.p-disabled) .p-listbox-item.p-highlight.p-focus {
711
+ background: color-mix(in srgb, var(--surface-brand-primary) 24%, transparent);
712
+ }
713
+ .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled).p-focus {
714
+ color: var(--text-neutral-subdued);
715
+ background: var(--surface-state-hover);
716
+ }
717
+ .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled):hover {
718
+ color: var(--text-neutral-subdued);
719
+ background: var(--surface-state-hover);
720
+ }
721
+ .p-listbox:not(.p-disabled) .p-listbox-item:not(.p-highlight):not(.p-disabled):hover.p-focus {
722
+ color: var(--text-neutral-subdued);
723
+ background: var(--surface-state-hover);
724
+ }
725
+ .p-listbox.p-focus {
726
+ outline: 0 none;
727
+ outline-offset: 0;
728
+ box-shadow: 0 0 0 0.2rem var(--surface-brand-overlay);
729
+ border-color: var(--border-state-interactive);
730
+ }
731
+ .p-listbox.p-invalid {
732
+ border-color: var(--severity-danger-text);
733
+ }
734
+ .p-chips {
735
+ display: inline-flex;
736
+ }
737
+ .p-chips:not(.p-disabled):hover .p-chips-multiple-container {
738
+ border-color: var(--border-state-interactive);
739
+ }
740
+ .p-chips:not(.p-disabled).p-focus .p-chips-multiple-container {
741
+ outline: 0 none;
742
+ outline-offset: 0;
743
+ box-shadow: 0 0 0 0.2rem var(--surface-brand-overlay);
744
+ border-color: var(--border-state-interactive);
745
+ }
746
+ .p-chips .p-chips-multiple-container {
747
+ padding: 0.375rem 0.75rem;
748
+ outline-color: transparent;
749
+ }
750
+ .p-chips .p-chips-multiple-container .p-chips-token {
751
+ padding: 0.375rem 0.75rem;
752
+ margin-right: 0.5rem;
753
+ background: var(--surface-neutral-secondary);
754
+ color: var(--text-neutral-default);
755
+ border-radius: 16px;
756
+ }
757
+ .p-chips .p-chips-multiple-container .p-chips-token.p-focus {
758
+ background: var(--surface-neutral-secondary);
759
+ color: var(--text-neutral-default);
760
+ }
761
+ .p-chips .p-chips-multiple-container .p-chips-token .p-chips-token-icon {
762
+ margin-left: 0.5rem;
763
+ }
764
+ .p-chips .p-chips-multiple-container .p-chips-input-token {
765
+ padding: 0.375rem 0;
766
+ }
767
+ .p-chips .p-chips-multiple-container .p-chips-input-token input {
768
+ font-family: var(--font-family);
769
+ font-size: 1rem;
770
+ color: var(--text-neutral-default);
771
+ padding: 0;
772
+ margin: 0;
773
+ }
774
+ .p-chips.p-invalid.p-component > .p-inputtext {
775
+ border-color: var(--severity-danger-text);
776
+ }
777
+ .p-rating {
778
+ position: relative;
779
+ display: flex;
780
+ align-items: center;
781
+ }
782
+ .p-rating.p-readonly .p-rating-item {
783
+ cursor: default;
784
+ }
785
+ .p-rating {
786
+ gap: 0.5rem;
787
+ }
788
+ .p-rating .p-rating-item {
789
+ outline-color: transparent;
790
+ border-radius: var(--radius-full);
791
+ }
792
+ .p-rating .p-rating-item .p-rating-icon {
793
+ color: var(--text-neutral-subdued);
794
+ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
795
+ font-size: 1.143rem;
796
+ }
797
+ .p-rating .p-rating-item .p-rating-icon.p-icon {
798
+ width: 1.143rem;
799
+ height: 1.143rem;
800
+ }
801
+ .p-rating .p-rating-item .p-rating-icon.p-rating-cancel {
802
+ color: #ea5455;
803
+ }
804
+ .p-rating .p-rating-item.p-focus {
805
+ outline: 0 none;
806
+ outline-offset: 0;
807
+ box-shadow: 0 0 0 0.2rem var(--surface-brand-overlay);
808
+ }
809
+ .p-rating .p-rating-item.p-rating-item-active .p-rating-icon {
810
+ color: var(--text-state-interactive);
811
+ }
812
+ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon {
813
+ color: var(--text-state-interactive);
814
+ }
815
+ .p-rating:not(.p-disabled):not(.p-readonly) .p-rating-item:hover .p-rating-icon.p-rating-cancel {
816
+ color: #e73d3e;
817
+ }
818
+ .p-slider {
819
+ background: var(--border-neutral-default);
820
+ border: 0 none;
821
+ border-radius: var(--radius-md);
822
+ }
823
+ .p-slider.p-slider-horizontal {
824
+ height: 0.286rem;
825
+ }
826
+ .p-slider.p-slider-horizontal .p-slider-handle {
827
+ margin-top: -0.5715rem;
828
+ margin-left: -0.5715rem;
829
+ }
830
+ .p-slider.p-slider-vertical {
831
+ width: 0.286rem;
832
+ }
833
+ .p-slider.p-slider-vertical .p-slider-handle {
834
+ margin-left: -0.5715rem;
835
+ margin-bottom: -0.5715rem;
836
+ }
837
+ .p-slider .p-slider-handle {
838
+ height: 1.143rem;
839
+ width: 1.143rem;
840
+ background: var(--text-onsurface-onbrand);
841
+ border: 2px solid var(--border-state-interactive);
842
+ border-radius: var(--radius-full);
843
+ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
844
+ }
845
+ .p-slider .p-slider-handle:focus {
846
+ outline: 0 none;
847
+ outline-offset: 0;
848
+ box-shadow: 0 0 0 0.2rem var(--surface-brand-overlay);
849
+ }
850
+ .p-slider .p-slider-range {
851
+ background: var(--surface-brand-primary);
852
+ }
853
+ .p-slider:not(.p-disabled) .p-slider-handle:hover {
854
+ background: var(--surface-brand-primary);
855
+ border-color: var(--border-state-interactive);
856
+ }
857
+ .p-tristatecheckbox.p-variant-filled .p-checkbox-box {
858
+ background-color: var(--surface-neutral-secondary);
859
+ }
860
+ .p-tristatecheckbox.p-variant-filled.p-highlight .p-checkbox-box {
861
+ background: var(--surface-brand-primary);
862
+ }
863
+ .p-tristatecheckbox.p-variant-filled:not(.p-disabled):has(.p-checkbox-input:hover) .p-checkbox-box {
864
+ background-color: var(--surface-neutral-secondary);
865
+ }
866
+ .p-tristatecheckbox.p-variant-filled:not(.p-disabled):has(.p-checkbox-input:hover).p-highlight .p-checkbox-box {
867
+ background: var(--surface-brand-secondary);
868
+ }