@agorapulse/ui-theme 20.1.18 → 20.2.0-1

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.
Files changed (50) hide show
  1. package/agorapulse-ui-theme-1.0.0-SNAPSHOT.tgz +0 -0
  2. package/assets/desktop_variables.css +10 -0
  3. package/assets/mobile_variables.css +10 -0
  4. package/assets/style/_table.scss +5 -5
  5. package/assets/style/_tooltip.scss +6 -1
  6. package/assets/style/css-ui/_action-dropdown.scss +163 -0
  7. package/assets/style/css-ui/_avatar.scss +236 -0
  8. package/assets/style/css-ui/_badge.scss +28 -0
  9. package/assets/style/css-ui/_button.scss +261 -0
  10. package/assets/style/css-ui/_checkbox.scss +168 -0
  11. package/assets/style/css-ui/_counter.scss +76 -0
  12. package/assets/style/css-ui/_datepicker.scss +307 -0
  13. package/assets/style/css-ui/_dot-stepper.scss +67 -0
  14. package/assets/style/{_helpers.scss → css-ui/_helpers.scss} +14 -13
  15. package/assets/style/css-ui/_icon-button.scss +162 -0
  16. package/assets/style/css-ui/_infobox.scss +154 -0
  17. package/assets/style/css-ui/_input.scss +133 -0
  18. package/assets/style/css-ui/_label.scss +89 -0
  19. package/assets/style/css-ui/_link.scss +91 -0
  20. package/assets/style/css-ui/_loader.scss +178 -0
  21. package/assets/style/css-ui/_mixins.scss +50 -0
  22. package/assets/style/css-ui/_pagination.scss +177 -0
  23. package/assets/style/css-ui/_radio-card.scss +200 -0
  24. package/assets/style/css-ui/_radio.scss +111 -0
  25. package/assets/style/css-ui/_select.scss +656 -0
  26. package/assets/style/css-ui/_selection-dropdown.scss +183 -0
  27. package/assets/style/css-ui/_snackbar.scss +166 -0
  28. package/assets/style/css-ui/_split-button.scss +79 -0
  29. package/assets/style/css-ui/_status.scss +71 -0
  30. package/assets/style/css-ui/_stepper.scss +127 -0
  31. package/assets/style/css-ui/_table.scss +325 -0
  32. package/assets/style/css-ui/_tabs.scss +182 -0
  33. package/assets/style/css-ui/_tag.scss +169 -0
  34. package/assets/style/css-ui/_textarea.scss +121 -0
  35. package/assets/style/css-ui/_toggle.scss +136 -0
  36. package/assets/style/css-ui/_tooltip.scss +122 -0
  37. package/assets/style/{_mat-typography.scss → css-ui/_typography.scss} +34 -26
  38. package/assets/style/css-ui/index.css +4721 -0
  39. package/assets/style/css-ui/index.scss +34 -0
  40. package/assets/style/theme.css +6173 -0
  41. package/assets/style/theme.css.map +1 -0
  42. package/assets/style/theme.scss +9 -2
  43. package/package.json +25 -22
  44. package/src/tokens/system/icon.json +33 -0
  45. package/agorapulse-ui-theme-20.1.18.tgz +0 -0
  46. package/assets/style/lovable/lovable-button.css +0 -446
  47. package/assets/style/lovable/lovable-input.css +0 -119
  48. package/assets/style/lovable/lovable-radio.css +0 -109
  49. package/assets/style/lovable/lovable-toggle.css +0 -161
  50. package/assets/style/lovable/tailwind.config.ts +0 -431
@@ -0,0 +1,656 @@
1
+ // Agorapulse Select Styles
2
+ @use 'mixins' as m;
3
+
4
+ // ============================================
5
+ // SELECT CONTAINER (using details/summary)
6
+ // ============================================
7
+
8
+ .ap-select {
9
+ position: relative;
10
+ display: inline-block;
11
+ width: 100%;
12
+
13
+ // Remove default details marker
14
+ summary {
15
+ list-style: none;
16
+
17
+ &::-webkit-details-marker {
18
+ display: none;
19
+ }
20
+
21
+ &::marker {
22
+ display: none;
23
+ }
24
+ }
25
+
26
+ // Arrow rotation when open
27
+ &[open] {
28
+ .ap-select-trigger {
29
+ outline: none;
30
+ border-color: var(--ref-color-electric-blue-100);
31
+ }
32
+
33
+ .ap-select-arrow {
34
+ transform: rotate(180deg);
35
+ color: var(--ref-color-electric-blue-100);
36
+ }
37
+ }
38
+ }
39
+
40
+ // ============================================
41
+ // SELECT TRIGGER / INPUT
42
+ // ============================================
43
+
44
+ .ap-select-trigger {
45
+ display: flex;
46
+ align-items: center;
47
+ gap: var(--ref-spacing-xxs);
48
+ width: 100%;
49
+ height: var(--comp-input-height);
50
+ padding: 0 var(--ref-spacing-xs);
51
+ border: 1px solid var(--ref-color-grey-20);
52
+ border-radius: var(--ref-border-radius-sm);
53
+ background-color: var(--ref-color-white);
54
+ @include m.text-style('body');
55
+ color: var(--ref-color-grey-100);
56
+ cursor: pointer;
57
+ box-sizing: border-box;
58
+ transition: border-color 0.15s ease;
59
+
60
+ &:hover:not(.disabled) {
61
+ border-color: var(--ref-color-grey-40);
62
+ }
63
+
64
+ &:focus {
65
+ outline: none;
66
+ border-color: var(--ref-color-electric-blue-100);
67
+ }
68
+
69
+ &.open {
70
+ outline: none;
71
+ border-color: var(--ref-color-electric-blue-100);
72
+
73
+ .ap-select-arrow {
74
+ transform: rotate(180deg);
75
+ color: var(--ref-color-electric-blue-100);
76
+ }
77
+ }
78
+
79
+ &.disabled {
80
+ background-color: var(--ref-color-grey-20);
81
+ border-color: var(--ref-color-grey-20);
82
+ color: var(--ref-color-grey-60);
83
+ cursor: default;
84
+ pointer-events: none;
85
+ }
86
+
87
+ // Validation states
88
+ &.valid {
89
+ border-color: var(--comp-input-border-success-color);
90
+ }
91
+
92
+ &.invalid {
93
+ border-color: var(--comp-input-border-error-color);
94
+ }
95
+
96
+ // Context-specific overrides for labels within select trigger
97
+ .ap-label {
98
+ height: 20px;
99
+ padding: 0 var(--ref-spacing-xxs);
100
+ font-size: var(--ref-font-size-sm);
101
+ line-height: var(--ref-font-line-height-sm);
102
+
103
+ &:has(> button) {
104
+ padding: 0 2px 0 var(--ref-spacing-xxs);
105
+ }
106
+
107
+ > button {
108
+ width: 16px;
109
+ height: 16px;
110
+ min-width: 16px;
111
+ }
112
+ }
113
+
114
+ // Context-specific overrides for tags within select trigger
115
+ .ap-tag {
116
+ height: 20px;
117
+ padding: 0 var(--ref-spacing-xxs);
118
+ font-size: var(--ref-font-size-sm);
119
+ line-height: var(--ref-font-line-height-sm);
120
+
121
+ &:has(> button) {
122
+ padding: 0 2px 0 var(--ref-spacing-xxs);
123
+ }
124
+
125
+ > button {
126
+ width: 16px;
127
+ height: 16px;
128
+ min-width: 16px;
129
+ max-width: 16px;
130
+ max-height: 16px;
131
+ }
132
+ }
133
+ }
134
+
135
+ // Inline label within trigger
136
+ .ap-select-inline-label {
137
+ padding-right: var(--ref-spacing-xxs);
138
+ border-right: 1px solid var(--comp-select-inline-separator-color);
139
+ color: var(--comp-select-inline-label-text-color);
140
+ font-family: var(--comp-select-inline-label-text-font-family);
141
+ font-size: var(--comp-select-inline-label-text-size);
142
+ font-weight: var(--comp-select-inline-label-text-font-weight);
143
+ line-height: var(--comp-select-inline-label-text-line-height);
144
+ white-space: nowrap;
145
+ }
146
+
147
+ // Inline icon
148
+ .ap-select-inline-icon {
149
+ height: var(--comp-input-icon-size);
150
+ width: var(--comp-input-icon-size);
151
+ min-height: var(--comp-input-icon-size);
152
+ min-width: var(--comp-input-icon-size);
153
+ color: var(--comp-input-icon-color);
154
+ flex-shrink: 0;
155
+ }
156
+
157
+ // Selected value display
158
+ .ap-select-value {
159
+ flex: 1;
160
+ @include m.truncate;
161
+ }
162
+
163
+ .ap-select-placeholder {
164
+ color: var(--ref-color-grey-60);
165
+ }
166
+
167
+ // Avatar in trigger
168
+ .ap-select-avatar {
169
+ width: 20px;
170
+ height: 20px;
171
+ min-width: 20px;
172
+ border-radius: 100%;
173
+ object-fit: cover;
174
+ flex-shrink: 0;
175
+ }
176
+
177
+ // Arrow icon
178
+ .ap-select-arrow {
179
+ width: 16px;
180
+ height: 16px;
181
+ min-width: 16px;
182
+ flex-shrink: 0;
183
+ margin-left: auto;
184
+ color: var(--ref-color-grey-60);
185
+ transition: transform 0.15s ease, color 0.15s ease;
186
+ }
187
+
188
+ // Clear button
189
+ .ap-select-clear {
190
+ display: flex;
191
+ align-items: center;
192
+ justify-content: center;
193
+ width: 16px;
194
+ height: 16px;
195
+ border: none;
196
+ background: transparent;
197
+ color: var(--ref-color-grey-60);
198
+ cursor: pointer;
199
+ padding: 0;
200
+ flex-shrink: 0;
201
+
202
+ &:hover {
203
+ color: var(--ref-color-grey-80);
204
+ }
205
+ }
206
+
207
+ // ============================================
208
+ // DROPDOWN PANEL
209
+ // ============================================
210
+
211
+ .ap-select-dropdown {
212
+ position: absolute;
213
+ top: 100%;
214
+ left: 0;
215
+ right: 0;
216
+ z-index: 1000;
217
+ margin-top: var(--ref-spacing-xxxs);
218
+ padding: var(--comp-select-padding-vertical) 0;
219
+ background-color: var(--comp-select-background-color);
220
+ border-radius: var(--ref-border-radius-sm);
221
+ box-shadow: var(--comp-select-shadow);
222
+ overflow: hidden;
223
+ }
224
+
225
+ // Dropdown scrollable area
226
+ .ap-select-options {
227
+ max-height: 280px;
228
+ overflow-y: auto;
229
+ }
230
+
231
+ // ============================================
232
+ // SEARCH BAR
233
+ // ============================================
234
+
235
+ .ap-select-search {
236
+ display: flex;
237
+ align-items: center;
238
+ gap: var(--ref-spacing-xxs);
239
+ padding: 0 var(--comp-select-search-bar-padding-horizontal) var(--comp-select-search-bar-padding-bottom);
240
+ margin-bottom: var(--comp-select-search-bar-margin-bottom);
241
+ border-bottom: 1px solid var(--comp-select-search-bar-border-bottom-color);
242
+ }
243
+
244
+ .ap-select-search-input {
245
+ flex: 1;
246
+ border: none;
247
+ outline: none;
248
+ background: transparent;
249
+ font-family: var(--sys-text-style-body-font-family);
250
+ font-size: var(--sys-text-style-body-size);
251
+ color: var(--ref-color-grey-100);
252
+ padding: var(--ref-spacing-xxs) 0;
253
+
254
+ &::placeholder {
255
+ color: var(--ref-color-grey-60);
256
+ }
257
+ }
258
+
259
+ .ap-select-search-icon {
260
+ width: var(--comp-input-icon-size);
261
+ height: var(--comp-input-icon-size);
262
+ color: var(--comp-input-icon-color);
263
+ flex-shrink: 0;
264
+ }
265
+
266
+ // ============================================
267
+ // SELECT ALL CHECKBOX
268
+ // ============================================
269
+
270
+ .ap-select-all {
271
+ display: flex;
272
+ align-items: center;
273
+ gap: var(--ref-spacing-xxs);
274
+ padding: 0 var(--ref-spacing-sm);
275
+ height: var(--comp-select-one-line-height);
276
+ }
277
+
278
+ // ============================================
279
+ // OPTION - ONE LINE
280
+ // ============================================
281
+
282
+ .ap-select-option {
283
+ display: flex;
284
+ align-items: center;
285
+ gap: var(--ref-spacing-xxs);
286
+ min-height: var(--comp-select-one-line-height);
287
+ padding: var(--ref-spacing-xxs) var(--comp-select-one-line-padding-horizontal);
288
+ background-color: var(--comp-select-one-line-background-color);
289
+ font-family: var(--comp-select-one-line-text-font-family);
290
+ font-size: var(--comp-select-one-line-text-size);
291
+ font-weight: var(--comp-select-one-line-text-font-weight);
292
+ line-height: var(--comp-select-one-line-text-line-height);
293
+ color: var(--comp-select-one-line-text-color);
294
+ cursor: pointer;
295
+ box-sizing: border-box;
296
+ transition: background-color 0.1s ease;
297
+
298
+ &:hover:not(.disabled) {
299
+ background-color: var(--ref-color-electric-blue-10);
300
+ }
301
+
302
+ &:active:not(.disabled) {
303
+ background-color: var(--ref-color-electric-blue-20);
304
+ }
305
+
306
+ // Selected state (single select)
307
+ &.selected {
308
+ background-color: var(--ref-color-electric-blue-10);
309
+ color: var(--ref-color-electric-blue-150);
310
+ font-family: var(--comp-select-one-line-selected-text-font-family);
311
+ font-size: var(--comp-select-one-line-selected-text-size);
312
+ font-weight: var(--comp-select-one-line-selected-text-font-weight);
313
+ line-height: var(--comp-select-one-line-selected-text-line-height);
314
+
315
+ .ap-select-option-icon {
316
+ color: var(--ref-color-electric-blue-150);
317
+ }
318
+ }
319
+
320
+ // Marked/focused state (keyboard navigation)
321
+ &.marked:not(.selected) {
322
+ background-color: var(--ref-color-electric-blue-10);
323
+ }
324
+
325
+ // Disabled state
326
+ &.disabled {
327
+ color: var(--ref-color-grey-40);
328
+ cursor: default;
329
+ position: relative;
330
+
331
+ &::after {
332
+ content: '';
333
+ position: absolute;
334
+ inset: 0;
335
+ background-color: var(--ref-color-white);
336
+ opacity: 0.6;
337
+ pointer-events: none;
338
+ }
339
+ }
340
+
341
+ // Two lines variant
342
+ &.two-lines {
343
+ flex-direction: row;
344
+ align-items: flex-start;
345
+ min-height: var(--comp-select-two-line-height);
346
+ padding: var(--comp-select-two-line-padding-vertical) var(--comp-select-one-line-padding-horizontal);
347
+
348
+ &.selected {
349
+ .ap-select-option-title {
350
+ color: var(--ref-color-electric-blue-150);
351
+ }
352
+
353
+ .ap-select-option-caption {
354
+ color: var(--ref-color-electric-blue-100);
355
+ }
356
+ }
357
+ }
358
+
359
+ // Feature locked option
360
+ &.feature-locked {
361
+ cursor: pointer;
362
+
363
+ &:hover {
364
+ background-color: var(--ref-color-purple-10);
365
+ }
366
+
367
+ &:active {
368
+ background-color: var(--ref-color-purple-20);
369
+ }
370
+ }
371
+ }
372
+
373
+ // Option icon
374
+ .ap-select-option-icon {
375
+ width: 16px;
376
+ height: 16px;
377
+ min-width: 16px;
378
+ flex-shrink: 0;
379
+ color: var(--comp-select-one-line-text-color);
380
+ }
381
+
382
+ // Option avatar
383
+ .ap-select-option-avatar {
384
+ width: 24px;
385
+ height: 24px;
386
+ min-width: 24px;
387
+ border-radius: 100%;
388
+ object-fit: cover;
389
+ flex-shrink: 0;
390
+
391
+ &.square {
392
+ border-radius: var(--ref-border-radius-xs);
393
+ }
394
+ }
395
+
396
+ // Option text
397
+ .ap-select-option-text {
398
+ flex: 1;
399
+ @include m.truncate;
400
+ }
401
+
402
+ // Option badge
403
+ .ap-select-option-badge {
404
+ padding: 2px 6px;
405
+ border-radius: var(--ref-border-radius-xs);
406
+ background-color: var(--ref-color-grey-10);
407
+ font-size: var(--ref-font-size-xs);
408
+ line-height: var(--ref-font-line-height-xs);
409
+ color: var(--ref-color-grey-80);
410
+ flex-shrink: 0;
411
+ }
412
+
413
+ // Checkbox for multiple select
414
+ .ap-select-option-checkbox {
415
+ width: 16px;
416
+ height: 16px;
417
+ min-width: 16px;
418
+ flex-shrink: 0;
419
+ }
420
+
421
+ // Selected checkmark icon
422
+ .ap-select-option-check {
423
+ width: 16px;
424
+ height: 16px;
425
+ min-width: 16px;
426
+ color: var(--ref-color-electric-blue-150);
427
+ flex-shrink: 0;
428
+ margin-left: auto;
429
+ }
430
+
431
+ // ============================================
432
+ // OPTION CONTENT (TWO LINES)
433
+ // ============================================
434
+
435
+ .ap-select-option-content {
436
+ display: flex;
437
+ flex-direction: column;
438
+ flex: 1;
439
+ min-width: 0;
440
+ gap: 2px;
441
+ }
442
+
443
+ .ap-select-option-title {
444
+ font-family: var(--comp-select-two-line-title-text-font-family);
445
+ font-size: var(--comp-select-two-line-title-text-size);
446
+ font-weight: var(--comp-select-two-line-title-text-font-weight);
447
+ line-height: var(--comp-select-two-line-title-text-line-height);
448
+ color: var(--comp-select-two-line-title-text-color);
449
+ @include m.truncate;
450
+ }
451
+
452
+ .ap-select-option-caption {
453
+ font-family: var(--comp-select-two-line-caption-text-font-family);
454
+ font-size: var(--comp-select-two-line-caption-text-size);
455
+ font-weight: var(--comp-select-two-line-caption-text-font-weight);
456
+ line-height: var(--comp-select-two-line-caption-text-line-height);
457
+ color: var(--comp-select-two-line-caption-text-color);
458
+ @include m.truncate;
459
+ }
460
+
461
+ // ============================================
462
+ // OPTION GROUP
463
+ // ============================================
464
+
465
+ .ap-select-group {
466
+ display: flex;
467
+ align-items: center;
468
+ gap: var(--ref-spacing-xxs);
469
+ padding: var(--comp-select-group-padding-vertical) var(--comp-select-group-padding-horizontal);
470
+ background-color: var(--comp-select-group-background-color);
471
+ border-top: 1px solid var(--comp-select-group-border-top-color);
472
+ min-height: 32px;
473
+ box-sizing: border-box;
474
+
475
+ &:first-child {
476
+ border-top: none;
477
+ }
478
+ }
479
+
480
+ .ap-select-group-label {
481
+ font-family: var(--comp-select-group-text-font-family);
482
+ font-size: var(--comp-select-group-text-size);
483
+ font-weight: var(--comp-select-group-text-font-weight);
484
+ line-height: var(--comp-select-group-text-line-height);
485
+ color: var(--comp-select-group-text-color);
486
+ }
487
+
488
+ // ============================================
489
+ // DIVIDER
490
+ // ============================================
491
+
492
+ .ap-select-divider {
493
+ width: 100%;
494
+ height: 1px;
495
+ background-color: var(--comp-select-separator-color);
496
+ margin: var(--ref-spacing-xxs) 0;
497
+ }
498
+
499
+ // ============================================
500
+ // NOT FOUND / EMPTY STATE
501
+ // ============================================
502
+
503
+ .ap-select-not-found {
504
+ display: flex;
505
+ align-items: center;
506
+ padding: var(--ref-spacing-sm);
507
+ color: var(--ref-color-grey-80);
508
+ font-style: italic;
509
+ font-family: var(--sys-text-style-body-font-family);
510
+ font-size: var(--sys-text-style-body-size);
511
+ }
512
+
513
+ // ============================================
514
+ // LOADING STATE
515
+ // ============================================
516
+
517
+ .ap-select-loading {
518
+ display: flex;
519
+ justify-content: center;
520
+ align-items: center;
521
+ flex-direction: column;
522
+ gap: var(--ref-spacing-xxs);
523
+ min-height: 90px;
524
+ padding: var(--ref-spacing-md) var(--ref-spacing-sm) var(--ref-spacing-sm);
525
+ }
526
+
527
+ .ap-select-loading-text {
528
+ font-size: var(--ref-font-size-sm);
529
+ line-height: var(--ref-font-line-height-sm);
530
+ font-style: italic;
531
+ font-weight: var(--ref-font-weight-regular);
532
+ color: var(--ref-color-grey-80);
533
+ }
534
+
535
+ // ============================================
536
+ // FOOTER / CREATE NEW
537
+ // ============================================
538
+
539
+ .ap-select-footer {
540
+ padding: 0;
541
+ margin-top: var(--ref-spacing-xxxs);
542
+ border-top: 1px solid var(--ref-color-grey-10);
543
+ }
544
+
545
+ .ap-select-create {
546
+ display: flex;
547
+ align-items: center;
548
+ gap: var(--ref-spacing-xxxs);
549
+ width: 100%;
550
+ padding: var(--comp-select-search-bar-bottom-link-margin-top) var(--comp-select-search-bar-bottom-link-padding-horizontal)
551
+ var(--comp-select-search-bar-bottom-link-padding-bottom);
552
+ border: none;
553
+ background-color: transparent;
554
+ color: var(--ref-color-electric-blue-150);
555
+ font-weight: var(--ref-font-weight-bold);
556
+ font-family: var(--ref-font-family);
557
+ font-size: var(--ref-font-size-sm);
558
+ line-height: var(--ref-font-line-height-sm);
559
+ cursor: pointer;
560
+ text-align: left;
561
+
562
+ &:hover {
563
+ color: var(--ref-color-electric-blue-100);
564
+ }
565
+
566
+ &:active {
567
+ color: var(--ref-color-electric-blue-150);
568
+ }
569
+ }
570
+
571
+ .ap-select-create-icon {
572
+ width: 16px;
573
+ height: 16px;
574
+ flex-shrink: 0;
575
+ }
576
+
577
+ // ============================================
578
+ // FEATURE LOCKED ICON
579
+ // ============================================
580
+
581
+ .ap-select-locked-icon {
582
+ width: 16px;
583
+ height: 16px;
584
+ color: var(--ref-color-purple-100);
585
+ flex-shrink: 0;
586
+ }
587
+
588
+ // ============================================
589
+ // MULTIPLE SELECT - SELECTED LABELS/TAGS
590
+ // ============================================
591
+
592
+ .ap-select-labels {
593
+ display: flex;
594
+ align-items: center;
595
+ gap: var(--ref-spacing-xxxs);
596
+ flex: 1;
597
+ overflow: hidden;
598
+ }
599
+
600
+ .ap-select-label-count {
601
+ font-size: var(--ref-font-size-sm);
602
+ color: var(--ref-color-grey-80);
603
+ white-space: nowrap;
604
+ }
605
+
606
+ // ============================================
607
+ // NATIVE SELECT (FALLBACK)
608
+ // ============================================
609
+
610
+ .ap-native-select {
611
+ width: 100%;
612
+ height: var(--comp-input-height);
613
+ padding: 0 var(--ref-spacing-lg) 0 var(--ref-spacing-xs);
614
+ border: 1px solid var(--ref-color-grey-20);
615
+ border-radius: var(--ref-border-radius-sm);
616
+ background-color: var(--ref-color-white);
617
+ @include m.text-style('body');
618
+ color: var(--ref-color-grey-100);
619
+ cursor: pointer;
620
+ appearance: none;
621
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%235D6A82' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
622
+ background-repeat: no-repeat;
623
+ background-position: right var(--ref-spacing-xs) center;
624
+
625
+ &:hover:not(:disabled) {
626
+ border-color: var(--ref-color-grey-40);
627
+ }
628
+
629
+ &:focus {
630
+ outline: none;
631
+ border-color: var(--ref-color-electric-blue-100);
632
+ }
633
+
634
+ &:disabled {
635
+ background-color: var(--ref-color-grey-20);
636
+ border-color: var(--ref-color-grey-20);
637
+ color: var(--ref-color-grey-60);
638
+ cursor: default;
639
+ }
640
+
641
+ &.valid {
642
+ border-color: var(--comp-input-border-success-color);
643
+ }
644
+
645
+ &.invalid {
646
+ border-color: var(--comp-input-border-error-color);
647
+ }
648
+
649
+ option {
650
+ padding: var(--ref-spacing-xxs);
651
+ }
652
+
653
+ optgroup {
654
+ font-weight: var(--comp-select-group-text-font-weight);
655
+ }
656
+ }