@echothink-ui/identity 0.1.0

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 (48) hide show
  1. package/README.md +5 -0
  2. package/dist/components/AccessReviewPanel.d.ts +9 -0
  3. package/dist/components/AccountMenu.d.ts +8 -0
  4. package/dist/components/ApprovalPolicyEditor.d.ts +8 -0
  5. package/dist/components/AuditTrail.d.ts +6 -0
  6. package/dist/components/GroupPicker.d.ts +12 -0
  7. package/dist/components/IdentityCard.d.ts +14 -0
  8. package/dist/components/InviteUserPanel.d.ts +14 -0
  9. package/dist/components/OrganizationSwitcher.d.ts +9 -0
  10. package/dist/components/PermissionMatrix.d.ts +10 -0
  11. package/dist/components/PolicyRuleViewer.d.ts +6 -0
  12. package/dist/components/RoleBadge.d.ts +6 -0
  13. package/dist/components/SessionStatus.d.ts +9 -0
  14. package/dist/components/TeamList.d.ts +13 -0
  15. package/dist/components/UserPicker.d.ts +12 -0
  16. package/dist/components/types.d.ts +77 -0
  17. package/dist/index.cjs +1629 -0
  18. package/dist/index.cjs.map +1 -0
  19. package/dist/index.css +2238 -0
  20. package/dist/index.css.map +1 -0
  21. package/dist/index.d.ts +18 -0
  22. package/dist/index.js +1610 -0
  23. package/dist/index.js.map +1 -0
  24. package/package.json +43 -0
  25. package/src/components/AccessReviewPanel.tsx +169 -0
  26. package/src/components/AccountMenu.tsx +144 -0
  27. package/src/components/ApprovalPolicyEditor.tsx +131 -0
  28. package/src/components/AuditTrail.tsx +105 -0
  29. package/src/components/GroupPicker.tsx +175 -0
  30. package/src/components/IdentityCard.tsx +78 -0
  31. package/src/components/InviteUserPanel.tsx +162 -0
  32. package/src/components/OrganizationSwitcher.test.tsx +59 -0
  33. package/src/components/OrganizationSwitcher.tsx +161 -0
  34. package/src/components/PermissionMatrix.test.tsx +96 -0
  35. package/src/components/PermissionMatrix.tsx +271 -0
  36. package/src/components/PolicyRuleViewer.test.tsx +29 -0
  37. package/src/components/PolicyRuleViewer.tsx +78 -0
  38. package/src/components/RoleBadge.test.tsx +35 -0
  39. package/src/components/RoleBadge.tsx +38 -0
  40. package/src/components/SessionStatus.test.tsx +40 -0
  41. package/src/components/SessionStatus.tsx +194 -0
  42. package/src/components/TeamList.test.tsx +48 -0
  43. package/src/components/TeamList.tsx +98 -0
  44. package/src/components/UserPicker.test.tsx +52 -0
  45. package/src/components/UserPicker.tsx +174 -0
  46. package/src/components/types.ts +89 -0
  47. package/src/index.tsx +35 -0
  48. package/src/styles.css +2578 -0
package/dist/index.css ADDED
@@ -0,0 +1,2238 @@
1
+ @import "@echothink-ui/core/styles.css";
2
+
3
+ /* src/styles.css */
4
+ .eth-id-access-review,
5
+ .eth-identity-access-review,
6
+ .eth-id-identity-card,
7
+ .eth-identity-card,
8
+ .eth-id-invite-user,
9
+ .eth-identity-invite-user,
10
+ .eth-id-approval-policy-editor,
11
+ .eth-identity-approval-policy-editor,
12
+ .eth-identity-session-status.eth-surface {
13
+ background: var(--eth-color-layer-01);
14
+ border: 1px solid var(--eth-color-border-subtle);
15
+ border-radius: 0;
16
+ color: var(--eth-color-text-primary);
17
+ }
18
+ .eth-id-identity-card.eth-surface,
19
+ .eth-identity-card.eth-surface {
20
+ gap: 0;
21
+ inline-size: 100%;
22
+ min-inline-size: 0;
23
+ padding: var(--eth-space-lg);
24
+ }
25
+ .eth-id-identity-card__body,
26
+ .eth-identity-card__body {
27
+ align-items: center;
28
+ display: grid;
29
+ column-gap: var(--eth-space-lg);
30
+ grid-template-columns: max-content minmax(0, 1fr) max-content;
31
+ min-inline-size: 0;
32
+ row-gap: var(--eth-space-md);
33
+ }
34
+ .eth-id-identity-card__avatar,
35
+ .eth-identity-card__avatar {
36
+ align-items: center;
37
+ background: var(--eth-color-layer-02);
38
+ border: 1px solid var(--eth-color-border-subtle);
39
+ border-radius: 0;
40
+ color: var(--eth-color-text-secondary);
41
+ display: inline-flex;
42
+ flex: 0 0 auto;
43
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
44
+ font-weight: 600;
45
+ block-size: 3rem;
46
+ inline-size: 3rem;
47
+ justify-content: center;
48
+ line-height: 1;
49
+ object-fit: cover;
50
+ }
51
+ .eth-identity-card--service-account .eth-identity-card__avatar {
52
+ font-family: var(--eth-font-mono, monospace);
53
+ }
54
+ .eth-id-identity-card__main,
55
+ .eth-identity-card__main {
56
+ min-width: 0;
57
+ }
58
+ .eth-id-identity-card__main h3,
59
+ .eth-identity-card__main h3 {
60
+ font-size: calc(1rem * var(--eth-text-scale, 1));
61
+ font-weight: 600;
62
+ line-height: 1.375;
63
+ margin: 0;
64
+ overflow: hidden;
65
+ text-overflow: ellipsis;
66
+ white-space: nowrap;
67
+ }
68
+ .eth-id-identity-card__main p,
69
+ .eth-identity-card__main p,
70
+ .eth-identity-team-list__item p,
71
+ .eth-id-team-list__item p {
72
+ color: var(--eth-color-text-secondary);
73
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
74
+ line-height: 1.4286;
75
+ margin: var(--eth-space-xs) 0 0;
76
+ overflow-wrap: anywhere;
77
+ }
78
+ .eth-id-identity-card__meta,
79
+ .eth-identity-card__meta {
80
+ align-items: center;
81
+ display: flex;
82
+ flex-wrap: wrap;
83
+ column-gap: var(--eth-space-sm);
84
+ margin-block-start: var(--eth-space-sm);
85
+ row-gap: var(--eth-space-xs);
86
+ }
87
+ .eth-id-identity-card__meta .cds--tag,
88
+ .eth-identity-card__meta .cds--tag,
89
+ .eth-id-identity-card__meta .eth-badge,
90
+ .eth-identity-card__meta .eth-badge {
91
+ margin: 0;
92
+ }
93
+ .eth-id-identity-card__body > .eth-actions,
94
+ .eth-identity-card__body > .eth-actions {
95
+ justify-content: flex-end;
96
+ justify-self: end;
97
+ min-inline-size: max-content;
98
+ }
99
+ .eth-id-account-menu,
100
+ .eth-identity-account-menu,
101
+ .eth-id-organization-switcher,
102
+ .eth-identity-organization-switcher {
103
+ position: relative;
104
+ }
105
+ .eth-id-account-menu .eth-popover summary,
106
+ .eth-identity-account-menu .eth-popover summary,
107
+ .eth-id-organization-switcher .eth-popover summary,
108
+ .eth-identity-organization-switcher .eth-popover summary,
109
+ .eth-id-group-picker .eth-popover summary,
110
+ .eth-identity-group-picker .eth-popover summary,
111
+ .eth-id-user-picker .eth-popover summary,
112
+ .eth-identity-user-picker .eth-popover summary {
113
+ align-items: center;
114
+ background: var(--eth-color-layer-01);
115
+ border: 1px solid var(--eth-color-border-subtle);
116
+ border-radius: 0;
117
+ color: var(--eth-color-text-primary);
118
+ cursor: pointer;
119
+ display: inline-flex;
120
+ min-block-size: var(--eth-space-2xl);
121
+ padding: 0 var(--eth-space-md);
122
+ transition: background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9), border-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
123
+ }
124
+ .eth-id-account-menu .eth-popover summary:hover,
125
+ .eth-identity-account-menu .eth-popover summary:hover,
126
+ .eth-id-organization-switcher .eth-popover summary:hover,
127
+ .eth-identity-organization-switcher .eth-popover summary:hover,
128
+ .eth-id-group-picker .eth-popover summary:hover,
129
+ .eth-identity-group-picker .eth-popover summary:hover,
130
+ .eth-id-user-picker .eth-popover summary:hover,
131
+ .eth-identity-user-picker .eth-popover summary:hover {
132
+ background: var(--eth-color-layer-hover);
133
+ }
134
+ .eth-id-account-menu .eth-popover summary:focus-visible,
135
+ .eth-identity-account-menu .eth-popover summary:focus-visible,
136
+ .eth-id-organization-switcher .eth-popover summary:focus-visible,
137
+ .eth-identity-organization-switcher .eth-popover summary:focus-visible,
138
+ .eth-id-group-picker .eth-popover summary:focus-visible,
139
+ .eth-identity-group-picker .eth-popover summary:focus-visible,
140
+ .eth-id-user-picker .eth-popover summary:focus-visible,
141
+ .eth-identity-user-picker .eth-popover summary:focus-visible {
142
+ outline: 2px solid var(--eth-color-focus);
143
+ outline-offset: -2px;
144
+ }
145
+ .eth-id-account-menu__content,
146
+ .eth-identity-account-menu__content,
147
+ .eth-id-organization-switcher__list,
148
+ .eth-identity-organization-switcher__list,
149
+ .eth-popover__content {
150
+ background: var(--eth-color-layer-01);
151
+ border: 1px solid var(--eth-color-border-subtle);
152
+ border-radius: 0;
153
+ box-shadow: var(--eth-shadow-overlay);
154
+ color: var(--eth-color-text-primary);
155
+ display: grid;
156
+ gap: var(--eth-space-sm);
157
+ margin-block-start: var(--eth-space-xs);
158
+ min-inline-size: 16rem;
159
+ padding: var(--eth-space-sm);
160
+ position: absolute;
161
+ z-index: 600;
162
+ }
163
+ .eth-id-account-menu__content p,
164
+ .eth-identity-account-menu__content p {
165
+ color: var(--eth-color-text-secondary);
166
+ margin: var(--eth-space-xs) 0 var(--eth-space-sm);
167
+ }
168
+ .eth-identity-account-menu .eth-popover summary {
169
+ min-block-size: 3rem;
170
+ padding: 0;
171
+ }
172
+ .eth-identity-account-menu .eth-popover summary::-webkit-details-marker {
173
+ display: none;
174
+ }
175
+ .eth-identity-account-menu .eth-popover summary::marker {
176
+ content: "";
177
+ }
178
+ .eth-identity-account-menu .eth-popover[open] summary {
179
+ border-color: var(--eth-color-interactive-primary);
180
+ box-shadow: inset 0 -2px 0 var(--eth-color-focus);
181
+ }
182
+ .eth-identity-account-menu__trigger {
183
+ align-items: center;
184
+ display: grid;
185
+ gap: var(--eth-space-sm);
186
+ grid-template-columns: auto minmax(0, 1fr) auto;
187
+ inline-size: 100%;
188
+ min-inline-size: 14rem;
189
+ padding: var(--eth-space-sm) var(--eth-space-md);
190
+ }
191
+ .eth-identity-account-menu__avatar {
192
+ align-items: center;
193
+ background: var(--eth-color-layer-02);
194
+ border: 1px solid var(--eth-color-border-subtle);
195
+ border-radius: 0;
196
+ color: var(--eth-color-text-primary);
197
+ display: inline-flex;
198
+ flex: 0 0 auto;
199
+ font-size: calc(0.8125rem * var(--eth-text-scale, 1));
200
+ font-weight: 600;
201
+ block-size: var(--eth-space-3xl);
202
+ inline-size: var(--eth-space-3xl);
203
+ justify-content: center;
204
+ object-fit: cover;
205
+ }
206
+ .eth-identity-account-menu__trigger-copy,
207
+ .eth-identity-account-menu__profile-copy {
208
+ min-width: 0;
209
+ }
210
+ .eth-identity-account-menu__trigger-label,
211
+ .eth-identity-account-menu__profile strong {
212
+ color: var(--eth-color-text-primary);
213
+ display: block;
214
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
215
+ font-weight: 600;
216
+ line-height: 1.2857;
217
+ overflow: hidden;
218
+ text-overflow: ellipsis;
219
+ white-space: nowrap;
220
+ }
221
+ .eth-identity-account-menu__trigger-meta {
222
+ color: var(--eth-color-text-secondary);
223
+ display: block;
224
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
225
+ line-height: 1.333;
226
+ margin-block-start: var(--eth-space-2xs);
227
+ overflow: hidden;
228
+ text-overflow: ellipsis;
229
+ white-space: nowrap;
230
+ }
231
+ .eth-identity-account-menu__chevron {
232
+ border-block-end: 1.5px solid currentcolor;
233
+ border-inline-end: 1.5px solid currentcolor;
234
+ block-size: 0.5rem;
235
+ color: var(--eth-color-text-secondary);
236
+ inline-size: 0.5rem;
237
+ transform: rotate(45deg) translateY(-0.125rem);
238
+ transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
239
+ }
240
+ .eth-identity-account-menu .eth-popover[open] .eth-identity-account-menu__chevron {
241
+ transform: rotate(225deg) translate(-0.125rem, -0.125rem);
242
+ }
243
+ .eth-identity-account-menu__content {
244
+ gap: 0;
245
+ inline-size: min(20rem, calc(100vw - var(--eth-space-xl)));
246
+ overflow: hidden;
247
+ padding: 0;
248
+ }
249
+ .eth-identity-account-menu__profile {
250
+ align-items: start;
251
+ border-block-end: 1px solid var(--eth-color-border-subtle);
252
+ display: grid;
253
+ gap: var(--eth-space-sm);
254
+ grid-template-columns: auto minmax(0, 1fr);
255
+ padding: var(--eth-space-lg);
256
+ }
257
+ .eth-identity-account-menu__profile p {
258
+ color: var(--eth-color-text-secondary);
259
+ font-size: calc(0.8125rem * var(--eth-text-scale, 1));
260
+ line-height: 1.3846;
261
+ margin: var(--eth-space-xs) 0 0;
262
+ overflow-wrap: anywhere;
263
+ }
264
+ .eth-identity-account-menu__meta {
265
+ align-items: center;
266
+ display: flex;
267
+ flex-wrap: wrap;
268
+ gap: var(--eth-space-xs);
269
+ margin-block-start: var(--eth-space-sm);
270
+ }
271
+ .eth-identity-account-menu__actions {
272
+ display: grid;
273
+ padding-block: var(--eth-space-xs);
274
+ }
275
+ .eth-identity-account-menu__action {
276
+ align-items: center;
277
+ background: transparent;
278
+ border: 0;
279
+ color: var(--eth-color-text-primary);
280
+ cursor: pointer;
281
+ display: flex;
282
+ font: inherit;
283
+ inline-size: 100%;
284
+ min-block-size: var(--eth-space-3xl);
285
+ padding: 0 var(--eth-space-lg);
286
+ text-align: start;
287
+ text-decoration: none;
288
+ }
289
+ .eth-identity-account-menu__action:hover {
290
+ background: var(--eth-color-layer-hover);
291
+ color: var(--eth-color-text-primary);
292
+ }
293
+ .eth-identity-account-menu__action:focus-visible {
294
+ outline: 2px solid var(--eth-color-focus);
295
+ outline-offset: -2px;
296
+ }
297
+ .eth-identity-account-menu__action--danger {
298
+ color: var(--eth-color-danger);
299
+ }
300
+ .eth-identity-account-menu__action--danger:hover {
301
+ background: var(--eth-color-layer-hover);
302
+ color: var(--eth-color-danger);
303
+ }
304
+ .eth-identity-account-menu__action:disabled,
305
+ .eth-identity-account-menu__action[aria-disabled=true] {
306
+ color: var(--eth-color-text-helper);
307
+ cursor: not-allowed;
308
+ }
309
+ .eth-identity-account-menu__action:disabled:hover,
310
+ .eth-identity-account-menu__action[aria-disabled=true]:hover {
311
+ background: transparent;
312
+ }
313
+ .eth-identity-organization-switcher {
314
+ inline-size: min(100%, 24rem);
315
+ }
316
+ .eth-identity-organization-switcher .eth-popover {
317
+ position: relative;
318
+ }
319
+ .eth-identity-organization-switcher .eth-popover summary {
320
+ border-color: var(--eth-color-border-strong);
321
+ inline-size: 100%;
322
+ min-block-size: 4rem;
323
+ padding: 0;
324
+ }
325
+ .eth-identity-organization-switcher .eth-popover summary::-webkit-details-marker {
326
+ display: none;
327
+ }
328
+ .eth-identity-organization-switcher .eth-popover summary::marker {
329
+ content: "";
330
+ }
331
+ .eth-identity-organization-switcher .eth-popover[open] summary {
332
+ border-color: var(--eth-color-interactive-primary);
333
+ box-shadow: inset 0 -2px 0 var(--eth-color-focus);
334
+ }
335
+ .eth-identity-organization-switcher__trigger {
336
+ align-items: center;
337
+ column-gap: var(--eth-space-sm);
338
+ display: grid;
339
+ grid-template-columns: auto minmax(0, 1fr) auto auto;
340
+ inline-size: 100%;
341
+ min-inline-size: 18rem;
342
+ padding: var(--eth-space-sm) var(--eth-space-md);
343
+ }
344
+ .eth-identity-organization-switcher__avatar {
345
+ align-items: center;
346
+ background: var(--eth-color-layer-02);
347
+ border: 1px solid var(--eth-color-border-subtle);
348
+ color: var(--eth-color-text-primary);
349
+ display: inline-flex;
350
+ flex: 0 0 auto;
351
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
352
+ font-weight: 600;
353
+ block-size: var(--eth-space-3xl);
354
+ inline-size: var(--eth-space-3xl);
355
+ justify-content: center;
356
+ line-height: 1;
357
+ }
358
+ .eth-identity-organization-switcher__copy {
359
+ display: grid;
360
+ gap: var(--eth-space-2xs);
361
+ min-inline-size: 0;
362
+ }
363
+ .eth-identity-organization-switcher__label,
364
+ .eth-identity-organization-switcher__option-label {
365
+ color: var(--eth-color-text-primary);
366
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
367
+ font-weight: 600;
368
+ line-height: 1.2857;
369
+ overflow: hidden;
370
+ text-overflow: ellipsis;
371
+ white-space: nowrap;
372
+ }
373
+ .eth-identity-organization-switcher__meta,
374
+ .eth-identity-organization-switcher__option-meta {
375
+ color: var(--eth-color-text-secondary);
376
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
377
+ line-height: 1.333;
378
+ overflow: hidden;
379
+ text-overflow: ellipsis;
380
+ white-space: nowrap;
381
+ }
382
+ .eth-identity-organization-switcher__trigger .eth-status-dot {
383
+ justify-self: end;
384
+ max-inline-size: 7rem;
385
+ min-inline-size: max-content;
386
+ }
387
+ .eth-identity-organization-switcher__chevron {
388
+ border-block-end: 1.5px solid currentcolor;
389
+ border-inline-end: 1.5px solid currentcolor;
390
+ block-size: 0.5rem;
391
+ color: var(--eth-color-text-secondary);
392
+ inline-size: 0.5rem;
393
+ transform: rotate(45deg) translateY(-0.125rem);
394
+ transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
395
+ }
396
+ .eth-identity-organization-switcher .eth-popover[open] .eth-identity-organization-switcher__chevron {
397
+ transform: rotate(225deg) translate(-0.125rem, -0.125rem);
398
+ }
399
+ .eth-identity-organization-switcher__list {
400
+ gap: 0;
401
+ inline-size: 100%;
402
+ inset-block-start: calc(100% + var(--eth-space-xs));
403
+ inset-inline-start: 0;
404
+ margin-block-start: 0;
405
+ max-inline-size: calc(100vw - var(--eth-space-xl));
406
+ min-inline-size: 22rem;
407
+ overflow: hidden;
408
+ padding: 0;
409
+ }
410
+ .eth-identity-organization-switcher__option {
411
+ align-items: center;
412
+ background: var(--eth-color-layer-01);
413
+ border: 0;
414
+ border-block-end: 1px solid var(--eth-color-border-subtle);
415
+ color: var(--eth-color-text-primary);
416
+ cursor: pointer;
417
+ display: grid;
418
+ font: inherit;
419
+ gap: var(--eth-space-md);
420
+ grid-template-columns: minmax(0, 1fr) auto;
421
+ inline-size: 100%;
422
+ min-block-size: 4rem;
423
+ padding: var(--eth-space-sm) var(--eth-space-md);
424
+ text-align: start;
425
+ }
426
+ .eth-identity-organization-switcher__option:last-child {
427
+ border-block-end: 0;
428
+ }
429
+ .eth-identity-organization-switcher__option:hover {
430
+ background: var(--eth-color-layer-hover);
431
+ }
432
+ .eth-identity-organization-switcher__option:focus-visible {
433
+ outline: 2px solid var(--eth-color-focus);
434
+ outline-offset: -2px;
435
+ }
436
+ .eth-identity-organization-switcher__option[aria-checked=true] {
437
+ background: var(--eth-color-layer-selected);
438
+ }
439
+ .eth-identity-organization-switcher__option[aria-checked=true]:hover {
440
+ background: var(--eth-color-layer-selected);
441
+ }
442
+ .eth-identity-organization-switcher__option-main {
443
+ display: grid;
444
+ gap: var(--eth-space-2xs);
445
+ min-inline-size: 0;
446
+ }
447
+ .eth-identity-organization-switcher__option-state {
448
+ align-items: center;
449
+ display: inline-flex;
450
+ gap: var(--eth-space-sm);
451
+ justify-self: end;
452
+ min-inline-size: max-content;
453
+ }
454
+ .eth-identity-organization-switcher__option-check {
455
+ block-size: 1rem;
456
+ border: 1px solid transparent;
457
+ display: inline-flex;
458
+ inline-size: 1rem;
459
+ position: relative;
460
+ }
461
+ .eth-identity-organization-switcher__option[aria-checked=true] .eth-identity-organization-switcher__option-check {
462
+ background: var(--eth-color-text-primary);
463
+ border-color: var(--eth-color-text-primary);
464
+ }
465
+ .eth-identity-organization-switcher__option[aria-checked=true] .eth-identity-organization-switcher__option-check::after {
466
+ border-block-end: 2px solid var(--eth-color-background);
467
+ border-inline-end: 2px solid var(--eth-color-background);
468
+ block-size: 0.5625rem;
469
+ content: "";
470
+ inline-size: 0.3125rem;
471
+ inset-block-start: 0.0625rem;
472
+ inset-inline-start: 0.3125rem;
473
+ position: absolute;
474
+ transform: rotate(45deg);
475
+ }
476
+ .eth-identity-organization-switcher__empty {
477
+ color: var(--eth-color-text-secondary);
478
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
479
+ line-height: 1.4286;
480
+ min-block-size: 3rem;
481
+ padding: var(--eth-space-md);
482
+ }
483
+ @media (max-width: 31.25rem) {
484
+ .eth-identity-organization-switcher,
485
+ .eth-identity-organization-switcher__trigger,
486
+ .eth-identity-organization-switcher__list {
487
+ min-inline-size: 0;
488
+ inline-size: 100%;
489
+ }
490
+ .eth-identity-organization-switcher__trigger {
491
+ grid-template-columns: auto minmax(0, 1fr) auto;
492
+ }
493
+ .eth-identity-organization-switcher__trigger .eth-status-dot {
494
+ display: none;
495
+ }
496
+ }
497
+ .eth-id-approval-policy-editor,
498
+ .eth-identity-approval-policy-editor,
499
+ .eth-id-invite-user,
500
+ .eth-identity-invite-user {
501
+ display: grid;
502
+ gap: var(--eth-space-lg);
503
+ }
504
+ .eth-identity-invite-user {
505
+ inline-size: min(100%, 48rem);
506
+ }
507
+ .eth-id-approval-policy-editor__layout,
508
+ .eth-identity-approval-policy-editor__layout {
509
+ align-items: start;
510
+ display: grid;
511
+ gap: var(--eth-space-xl);
512
+ grid-template-columns: minmax(18rem, 32rem) minmax(16rem, 1fr);
513
+ }
514
+ .eth-id-approval-policy-editor__fields,
515
+ .eth-identity-approval-policy-editor__fields,
516
+ .eth-id-invite-user form,
517
+ .eth-identity-invite-user form {
518
+ display: grid;
519
+ gap: var(--eth-space-lg);
520
+ }
521
+ .eth-identity-invite-user form {
522
+ gap: var(--eth-space-xl);
523
+ }
524
+ .eth-identity-invite-user__layout {
525
+ align-items: start;
526
+ display: grid;
527
+ gap: var(--eth-space-xl);
528
+ grid-template-columns: minmax(18rem, 1fr) minmax(14rem, 0.72fr);
529
+ }
530
+ .eth-identity-invite-user__fields {
531
+ display: grid;
532
+ gap: var(--eth-space-lg);
533
+ min-inline-size: 0;
534
+ }
535
+ .eth-id-approval-policy-editor__fields .cds--form-item,
536
+ .eth-identity-approval-policy-editor__fields .cds--form-item,
537
+ .eth-id-approval-policy-editor__fields .cds--text-input-wrapper,
538
+ .eth-identity-approval-policy-editor__fields .cds--text-input-wrapper,
539
+ .eth-id-approval-policy-editor__fields .cds--text-input,
540
+ .eth-identity-approval-policy-editor__fields .cds--text-input,
541
+ .eth-id-approval-policy-editor__fields .cds--text-area,
542
+ .eth-identity-approval-policy-editor__fields .cds--text-area,
543
+ .eth-id-approval-policy-editor__fields .cds--number,
544
+ .eth-identity-approval-policy-editor__fields .cds--number,
545
+ .eth-identity-invite-user__fields .cds--form-item,
546
+ .eth-identity-invite-user__fields .cds--text-input-wrapper,
547
+ .eth-identity-invite-user__fields .cds--text-input,
548
+ .eth-identity-invite-user__fields .cds--select,
549
+ .eth-identity-invite-user__fields .cds--select-input {
550
+ inline-size: 100%;
551
+ }
552
+ .eth-identity-invite-user__summary {
553
+ border-inline-start: 1px solid var(--eth-color-border-subtle);
554
+ color: var(--eth-color-text-primary);
555
+ min-inline-size: 0;
556
+ padding-inline-start: var(--eth-space-lg);
557
+ }
558
+ .eth-identity-invite-user__summary-label {
559
+ color: var(--eth-color-text-secondary);
560
+ display: block;
561
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
562
+ font-weight: 600;
563
+ line-height: 1.333;
564
+ margin-block-end: var(--eth-space-sm);
565
+ text-transform: uppercase;
566
+ }
567
+ .eth-identity-invite-user__summary dl {
568
+ display: grid;
569
+ gap: var(--eth-space-md);
570
+ margin: 0;
571
+ }
572
+ .eth-identity-invite-user__summary div {
573
+ display: grid;
574
+ gap: var(--eth-space-2xs);
575
+ min-inline-size: 0;
576
+ }
577
+ .eth-identity-invite-user__summary dt {
578
+ color: var(--eth-color-text-secondary);
579
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
580
+ line-height: 1.333;
581
+ }
582
+ .eth-identity-invite-user__summary dd {
583
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
584
+ font-weight: 600;
585
+ line-height: 1.4286;
586
+ margin: 0;
587
+ min-inline-size: 0;
588
+ overflow: hidden;
589
+ text-overflow: ellipsis;
590
+ white-space: nowrap;
591
+ }
592
+ .eth-identity-invite-user__actions {
593
+ align-items: center;
594
+ display: flex;
595
+ flex-wrap: wrap;
596
+ gap: var(--eth-space-md);
597
+ }
598
+ .eth-identity-invite-user__actions p {
599
+ color: var(--eth-color-text-secondary);
600
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
601
+ line-height: 1.4286;
602
+ margin: 0;
603
+ max-inline-size: 32rem;
604
+ }
605
+ .eth-id-approval-policy-editor__summary,
606
+ .eth-identity-approval-policy-editor__summary {
607
+ background: var(--eth-color-layer-02);
608
+ border: 1px solid var(--eth-color-border-subtle);
609
+ color: var(--eth-color-text-primary);
610
+ display: grid;
611
+ gap: var(--eth-space-lg);
612
+ padding: var(--eth-space-lg);
613
+ }
614
+ .eth-id-approval-policy-editor__summary-header,
615
+ .eth-identity-approval-policy-editor__summary-header {
616
+ align-items: center;
617
+ display: flex;
618
+ gap: var(--eth-space-sm);
619
+ justify-content: space-between;
620
+ }
621
+ .eth-id-approval-policy-editor__summary-header h3,
622
+ .eth-identity-approval-policy-editor__summary-header h3 {
623
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
624
+ font-weight: 600;
625
+ line-height: 1.2857;
626
+ margin: 0;
627
+ }
628
+ .eth-id-approval-policy-editor__summary-grid,
629
+ .eth-identity-approval-policy-editor__summary-grid {
630
+ border: 1px solid var(--eth-color-border-subtle);
631
+ display: grid;
632
+ grid-template-columns: repeat(3, minmax(0, 1fr));
633
+ margin: 0;
634
+ }
635
+ .eth-id-approval-policy-editor__summary-grid div,
636
+ .eth-identity-approval-policy-editor__summary-grid div {
637
+ border-inline-end: 1px solid var(--eth-color-border-subtle);
638
+ min-inline-size: 0;
639
+ padding: var(--eth-space-md);
640
+ }
641
+ .eth-id-approval-policy-editor__summary-grid div:last-child,
642
+ .eth-identity-approval-policy-editor__summary-grid div:last-child {
643
+ border-inline-end: 0;
644
+ }
645
+ .eth-id-approval-policy-editor__summary-grid dt,
646
+ .eth-identity-approval-policy-editor__summary-grid dt,
647
+ .eth-id-approval-policy-editor__approvers > span,
648
+ .eth-identity-approval-policy-editor__approvers > span {
649
+ color: var(--eth-color-text-secondary);
650
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
651
+ line-height: 1.333;
652
+ }
653
+ .eth-id-approval-policy-editor__summary-grid dd,
654
+ .eth-identity-approval-policy-editor__summary-grid dd {
655
+ font-size: calc(1.25rem * var(--eth-text-scale, 1));
656
+ font-weight: 600;
657
+ line-height: 1.4;
658
+ margin: var(--eth-space-xs) 0 0;
659
+ overflow-wrap: anywhere;
660
+ }
661
+ .eth-id-approval-policy-editor__approvers,
662
+ .eth-identity-approval-policy-editor__approvers {
663
+ display: grid;
664
+ gap: var(--eth-space-sm);
665
+ }
666
+ .eth-id-approval-policy-editor__approvers p,
667
+ .eth-identity-approval-policy-editor__approvers p {
668
+ color: var(--eth-color-text-secondary);
669
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
670
+ line-height: 1.4286;
671
+ margin: 0;
672
+ }
673
+ .eth-id-approval-policy-editor__approver-list,
674
+ .eth-identity-approval-policy-editor__approver-list {
675
+ align-items: center;
676
+ display: flex;
677
+ flex-wrap: wrap;
678
+ gap: var(--eth-space-xs);
679
+ }
680
+ .eth-id-approval-policy-editor__rules,
681
+ .eth-identity-approval-policy-editor__rules {
682
+ border-block-start: 1px solid var(--eth-color-border-subtle);
683
+ padding-block-start: var(--eth-space-lg);
684
+ }
685
+ .eth-id-audit-trail,
686
+ .eth-identity-audit-trail {
687
+ background: var(--eth-color-layer-01);
688
+ border: 1px solid var(--eth-color-border-subtle);
689
+ border-radius: 0;
690
+ color: var(--eth-color-text-primary);
691
+ gap: 0;
692
+ inline-size: 100%;
693
+ overflow: hidden;
694
+ padding: 0;
695
+ }
696
+ .eth-id-audit-trail > .eth-surface__header,
697
+ .eth-identity-audit-trail > .eth-surface__header {
698
+ border-block-end: 1px solid var(--eth-color-border-subtle);
699
+ padding: var(--eth-space-lg);
700
+ }
701
+ .eth-id-audit-trail .eth-meta-grid,
702
+ .eth-identity-audit-trail .eth-meta-grid {
703
+ border-block: 0 1px solid var(--eth-color-border-subtle);
704
+ border-inline: 0;
705
+ grid-template-columns: repeat(3, minmax(0, 1fr));
706
+ }
707
+ .eth-id-audit-trail .eth-meta-grid div,
708
+ .eth-identity-audit-trail .eth-meta-grid div {
709
+ background: var(--eth-color-layer-02);
710
+ padding-block: var(--eth-space-sm);
711
+ }
712
+ .eth-id-audit-trail .eth-data-table-wrap,
713
+ .eth-identity-audit-trail .eth-data-table-wrap {
714
+ inline-size: 100%;
715
+ overflow-x: auto;
716
+ }
717
+ .eth-id-audit-trail .eth-data-table,
718
+ .eth-identity-audit-trail .eth-data-table {
719
+ border-collapse: collapse;
720
+ inline-size: 100%;
721
+ min-inline-size: 42rem;
722
+ table-layout: fixed;
723
+ }
724
+ .eth-id-audit-trail .eth-data-table th,
725
+ .eth-id-audit-trail .eth-data-table td,
726
+ .eth-identity-audit-trail .eth-data-table th,
727
+ .eth-identity-audit-trail .eth-data-table td {
728
+ border-block-end: 1px solid var(--eth-color-border-subtle);
729
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
730
+ line-height: 1.4286;
731
+ padding: var(--eth-space-sm) var(--eth-space-md);
732
+ text-align: start;
733
+ vertical-align: middle;
734
+ }
735
+ .eth-id-audit-trail .eth-data-table thead th,
736
+ .eth-identity-audit-trail .eth-data-table thead th {
737
+ background: var(--eth-color-layer-02);
738
+ color: var(--eth-color-text-secondary);
739
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
740
+ font-weight: 600;
741
+ line-height: 1.3333;
742
+ }
743
+ .eth-id-audit-trail .eth-data-table tbody tr:hover,
744
+ .eth-identity-audit-trail .eth-data-table tbody tr:hover {
745
+ background: var(--eth-color-layer-hover);
746
+ }
747
+ .eth-id-audit-trail .eth-data-table tbody tr:last-child td,
748
+ .eth-identity-audit-trail .eth-data-table tbody tr:last-child td {
749
+ border-block-end: 0;
750
+ }
751
+ .eth-id-audit-trail time,
752
+ .eth-identity-audit-trail time,
753
+ .eth-id-audit-trail td:first-child,
754
+ .eth-identity-audit-trail td:first-child {
755
+ color: var(--eth-color-text-helper);
756
+ }
757
+ .eth-id-audit-trail__time,
758
+ .eth-identity-audit-trail__time {
759
+ display: inline-block;
760
+ font-variant-numeric: tabular-nums;
761
+ white-space: nowrap;
762
+ }
763
+ .eth-id-audit-trail__actor,
764
+ .eth-identity-audit-trail__actor,
765
+ .eth-id-audit-trail__action,
766
+ .eth-identity-audit-trail__action,
767
+ .eth-id-audit-trail__resource,
768
+ .eth-identity-audit-trail__resource {
769
+ display: inline-block;
770
+ max-inline-size: 100%;
771
+ overflow-wrap: anywhere;
772
+ }
773
+ .eth-id-audit-trail__actor,
774
+ .eth-identity-audit-trail__actor,
775
+ .eth-id-audit-trail__action,
776
+ .eth-identity-audit-trail__action {
777
+ color: var(--eth-color-text-primary);
778
+ font-weight: 600;
779
+ }
780
+ .eth-id-audit-trail__resource,
781
+ .eth-identity-audit-trail__resource {
782
+ color: var(--eth-color-text-secondary);
783
+ }
784
+ .eth-id-audit-trail__outcome,
785
+ .eth-identity-audit-trail__outcome {
786
+ align-items: center;
787
+ display: inline-flex;
788
+ min-inline-size: 0;
789
+ }
790
+ .eth-id-audit-trail__outcome .cds--tag,
791
+ .eth-identity-audit-trail__outcome .cds--tag {
792
+ margin: 0;
793
+ }
794
+ .eth-id-audit-trail > .eth-state,
795
+ .eth-identity-audit-trail > .eth-state {
796
+ margin: var(--eth-space-lg);
797
+ }
798
+ .eth-id-group-picker,
799
+ .eth-identity-group-picker,
800
+ .eth-id-user-picker,
801
+ .eth-identity-user-picker {
802
+ display: grid;
803
+ gap: var(--eth-space-sm);
804
+ }
805
+ .eth-identity-group-picker {
806
+ inline-size: min(100%, 42rem);
807
+ }
808
+ .eth-identity-group-picker__control {
809
+ background: var(--eth-color-layer-01);
810
+ border: 1px solid var(--eth-color-border-strong);
811
+ display: grid;
812
+ grid-template-columns: minmax(0, 1fr) auto;
813
+ min-block-size: 3rem;
814
+ position: relative;
815
+ }
816
+ .eth-identity-group-picker[data-open=true] .eth-identity-group-picker__control {
817
+ border-color: var(--eth-color-focus);
818
+ box-shadow: inset 0 -2px 0 var(--eth-color-focus);
819
+ }
820
+ .eth-identity-group-picker__popover {
821
+ position: static;
822
+ }
823
+ .eth-identity-group-picker .eth-popover summary {
824
+ align-items: stretch;
825
+ background: transparent;
826
+ border: 0;
827
+ display: flex;
828
+ block-size: 100%;
829
+ inline-size: 100%;
830
+ min-block-size: 100%;
831
+ padding: 0;
832
+ }
833
+ .eth-identity-group-picker .eth-popover summary::-webkit-details-marker {
834
+ display: none;
835
+ }
836
+ .eth-identity-group-picker .eth-popover summary::marker {
837
+ content: "";
838
+ }
839
+ .eth-identity-group-picker .eth-popover summary:hover {
840
+ background: transparent;
841
+ }
842
+ .eth-identity-group-picker .eth-popover[open] summary {
843
+ border-color: transparent;
844
+ box-shadow: none;
845
+ }
846
+ .eth-id-group-picker__chips,
847
+ .eth-identity-group-picker__chips,
848
+ .eth-id-user-picker__chips,
849
+ .eth-identity-user-picker__chips {
850
+ align-items: center;
851
+ background: var(--eth-color-layer-01);
852
+ border: 1px solid var(--eth-color-border-subtle);
853
+ border-radius: 0;
854
+ display: flex;
855
+ flex-wrap: wrap;
856
+ gap: var(--eth-space-xs);
857
+ min-block-size: var(--eth-space-3xl);
858
+ padding: var(--eth-space-sm);
859
+ }
860
+ .eth-identity-group-picker__chips {
861
+ background: transparent;
862
+ border: 0;
863
+ min-block-size: 3rem;
864
+ min-inline-size: 0;
865
+ padding: var(--eth-space-sm) var(--eth-space-md);
866
+ }
867
+ .eth-identity-group-picker__chips .cds--tag {
868
+ margin: 0;
869
+ max-inline-size: 100%;
870
+ }
871
+ .eth-identity-group-picker__chips .cds--tag__label {
872
+ overflow: hidden;
873
+ text-overflow: ellipsis;
874
+ }
875
+ .eth-identity-group-picker__placeholder {
876
+ color: var(--eth-color-text-helper);
877
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
878
+ line-height: 1.4286;
879
+ }
880
+ .eth-identity-group-picker__trigger {
881
+ align-content: center;
882
+ background: var(--eth-color-layer-02);
883
+ border-inline-start: 1px solid var(--eth-color-border-subtle);
884
+ color: var(--eth-color-text-primary);
885
+ column-gap: var(--eth-space-md);
886
+ display: grid;
887
+ grid-template-columns: minmax(0, 1fr) auto;
888
+ min-block-size: 100%;
889
+ min-inline-size: 10.5rem;
890
+ padding: var(--eth-space-sm) var(--eth-space-md);
891
+ }
892
+ .eth-identity-group-picker .eth-popover summary:hover .eth-identity-group-picker__trigger {
893
+ background: var(--eth-color-layer-hover);
894
+ }
895
+ .eth-identity-group-picker__trigger > span:first-child {
896
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
897
+ font-weight: 600;
898
+ line-height: 1.2857;
899
+ overflow: hidden;
900
+ text-overflow: ellipsis;
901
+ white-space: nowrap;
902
+ }
903
+ .eth-identity-group-picker__count {
904
+ color: var(--eth-color-text-secondary);
905
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
906
+ grid-column: 1;
907
+ line-height: 1.333;
908
+ overflow: hidden;
909
+ text-overflow: ellipsis;
910
+ white-space: nowrap;
911
+ }
912
+ .eth-identity-group-picker__chevron {
913
+ border-block-end: 1.5px solid currentcolor;
914
+ border-inline-end: 1.5px solid currentcolor;
915
+ block-size: 0.5rem;
916
+ color: var(--eth-color-text-secondary);
917
+ grid-column: 2;
918
+ grid-row: 1 / span 2;
919
+ inline-size: 0.5rem;
920
+ justify-self: end;
921
+ transform: rotate(45deg);
922
+ transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
923
+ }
924
+ .eth-identity-group-picker .eth-popover[open] .eth-identity-group-picker__chevron {
925
+ transform: rotate(225deg);
926
+ }
927
+ .eth-identity-group-picker[data-disabled=true] .eth-popover summary {
928
+ color: var(--eth-color-text-helper);
929
+ cursor: not-allowed;
930
+ }
931
+ .eth-identity-group-picker[data-disabled=true] .eth-identity-group-picker__trigger,
932
+ .eth-identity-group-picker[data-disabled=true] .eth-identity-group-picker__count,
933
+ .eth-identity-group-picker[data-disabled=true] .eth-identity-group-picker__placeholder,
934
+ .eth-identity-group-picker[data-disabled=true] .eth-identity-group-picker__chevron {
935
+ color: var(--eth-color-text-helper);
936
+ }
937
+ .eth-identity-group-picker__content {
938
+ gap: var(--eth-space-sm);
939
+ inline-size: 100%;
940
+ inset-block-start: calc(100% + var(--eth-space-xs));
941
+ inset-inline-start: 0;
942
+ margin-block-start: 0;
943
+ max-inline-size: calc(100vw - var(--eth-space-xl));
944
+ }
945
+ .eth-identity-group-picker__content .cds--form-item,
946
+ .eth-identity-group-picker__content .cds--text-input-wrapper,
947
+ .eth-identity-group-picker__content .cds--text-input {
948
+ inline-size: 100%;
949
+ }
950
+ .eth-id-group-picker__suggestions,
951
+ .eth-identity-group-picker__suggestions,
952
+ .eth-id-user-picker__suggestions,
953
+ .eth-identity-user-picker__suggestions {
954
+ display: grid;
955
+ gap: var(--eth-space-xs);
956
+ margin-block-start: var(--eth-space-sm);
957
+ }
958
+ .eth-identity-group-picker__suggestions {
959
+ border: 1px solid var(--eth-color-border-subtle);
960
+ display: grid;
961
+ gap: 0;
962
+ margin-block-start: 0;
963
+ max-block-size: 16rem;
964
+ overflow-y: auto;
965
+ }
966
+ .eth-identity-group-picker__option {
967
+ align-items: center;
968
+ background: var(--eth-color-layer-01);
969
+ border: 0;
970
+ border-block-end: 1px solid var(--eth-color-border-subtle);
971
+ color: var(--eth-color-text-primary);
972
+ cursor: pointer;
973
+ display: grid;
974
+ font: inherit;
975
+ gap: var(--eth-space-md);
976
+ grid-template-columns: minmax(0, 1fr) auto;
977
+ min-block-size: 3rem;
978
+ padding: var(--eth-space-sm) var(--eth-space-md);
979
+ text-align: start;
980
+ }
981
+ .eth-identity-group-picker__option:last-child {
982
+ border-block-end: 0;
983
+ }
984
+ .eth-identity-group-picker__option:hover {
985
+ background: var(--eth-color-layer-hover);
986
+ }
987
+ .eth-identity-group-picker__option:focus-visible {
988
+ outline: 2px solid var(--eth-color-focus);
989
+ outline-offset: -2px;
990
+ }
991
+ .eth-identity-group-picker__option[aria-selected=true] {
992
+ background: var(--eth-color-layer-selected);
993
+ }
994
+ .eth-identity-group-picker__option[aria-selected=true]:hover {
995
+ background: var(--eth-color-layer-selected);
996
+ }
997
+ .eth-identity-group-picker__option-main {
998
+ display: grid;
999
+ gap: var(--eth-space-2xs);
1000
+ min-inline-size: 0;
1001
+ }
1002
+ .eth-identity-group-picker__option-label {
1003
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1004
+ font-weight: 600;
1005
+ line-height: 1.2857;
1006
+ overflow: hidden;
1007
+ text-overflow: ellipsis;
1008
+ white-space: nowrap;
1009
+ }
1010
+ .eth-identity-group-picker__option-meta {
1011
+ color: var(--eth-color-text-secondary);
1012
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1013
+ line-height: 1.333;
1014
+ overflow: hidden;
1015
+ text-overflow: ellipsis;
1016
+ white-space: nowrap;
1017
+ }
1018
+ .eth-identity-group-picker__option-check {
1019
+ block-size: 1rem;
1020
+ border: 1px solid transparent;
1021
+ display: inline-flex;
1022
+ inline-size: 1rem;
1023
+ position: relative;
1024
+ }
1025
+ .eth-identity-group-picker__option[aria-selected=true] .eth-identity-group-picker__option-check {
1026
+ background: var(--eth-color-text-primary);
1027
+ border-color: var(--eth-color-text-primary);
1028
+ }
1029
+ .eth-identity-group-picker__option[aria-selected=true] .eth-identity-group-picker__option-check::after {
1030
+ border-block-end: 2px solid var(--eth-color-background);
1031
+ border-inline-end: 2px solid var(--eth-color-background);
1032
+ block-size: 0.5625rem;
1033
+ content: "";
1034
+ inline-size: 0.3125rem;
1035
+ inset-block-start: 0.0625rem;
1036
+ inset-inline-start: 0.3125rem;
1037
+ position: absolute;
1038
+ transform: rotate(45deg);
1039
+ }
1040
+ .eth-identity-group-picker__empty {
1041
+ color: var(--eth-color-text-secondary);
1042
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1043
+ line-height: 1.4286;
1044
+ min-block-size: 3rem;
1045
+ padding: var(--eth-space-md);
1046
+ }
1047
+ @media (max-width: 31.25rem) {
1048
+ .eth-identity-group-picker__control {
1049
+ grid-template-columns: minmax(0, 1fr);
1050
+ }
1051
+ .eth-identity-group-picker__popover {
1052
+ inline-size: 100%;
1053
+ }
1054
+ .eth-identity-group-picker__trigger {
1055
+ border-block-start: 1px solid var(--eth-color-border-subtle);
1056
+ border-inline-start: 0;
1057
+ inline-size: 100%;
1058
+ }
1059
+ }
1060
+ .eth-identity-user-picker {
1061
+ inline-size: min(100%, 42rem);
1062
+ }
1063
+ .eth-identity-user-picker__control {
1064
+ background: var(--eth-color-layer-01);
1065
+ border: 1px solid var(--eth-color-border-strong);
1066
+ display: grid;
1067
+ grid-template-columns: minmax(0, 1fr) auto;
1068
+ min-block-size: 3rem;
1069
+ position: relative;
1070
+ }
1071
+ .eth-identity-user-picker[data-open=true] .eth-identity-user-picker__control {
1072
+ border-color: var(--eth-color-focus);
1073
+ box-shadow: inset 0 -2px 0 var(--eth-color-focus);
1074
+ }
1075
+ .eth-identity-user-picker__popover {
1076
+ position: static;
1077
+ }
1078
+ .eth-identity-user-picker .eth-popover summary {
1079
+ align-items: stretch;
1080
+ background: transparent;
1081
+ border: 0;
1082
+ display: flex;
1083
+ block-size: 100%;
1084
+ inline-size: 100%;
1085
+ min-block-size: 100%;
1086
+ padding: 0;
1087
+ }
1088
+ .eth-identity-user-picker .eth-popover summary::-webkit-details-marker {
1089
+ display: none;
1090
+ }
1091
+ .eth-identity-user-picker .eth-popover summary::marker {
1092
+ content: "";
1093
+ }
1094
+ .eth-identity-user-picker .eth-popover summary:hover {
1095
+ background: transparent;
1096
+ }
1097
+ .eth-identity-user-picker .eth-popover[open] summary {
1098
+ border-color: transparent;
1099
+ box-shadow: none;
1100
+ }
1101
+ .eth-identity-user-picker__chips {
1102
+ background: transparent;
1103
+ border: 0;
1104
+ min-block-size: 3rem;
1105
+ min-inline-size: 0;
1106
+ padding: var(--eth-space-sm) var(--eth-space-md);
1107
+ }
1108
+ .eth-identity-user-picker__chips .cds--tag {
1109
+ margin: 0;
1110
+ max-inline-size: 100%;
1111
+ }
1112
+ .eth-identity-user-picker__chips .cds--tag__label {
1113
+ overflow: hidden;
1114
+ text-overflow: ellipsis;
1115
+ }
1116
+ .eth-identity-user-picker__placeholder {
1117
+ color: var(--eth-color-text-helper);
1118
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1119
+ line-height: 1.4286;
1120
+ }
1121
+ .eth-identity-user-picker__trigger {
1122
+ align-content: center;
1123
+ background: var(--eth-color-layer-02);
1124
+ border-inline-start: 1px solid var(--eth-color-border-subtle);
1125
+ color: var(--eth-color-text-primary);
1126
+ column-gap: var(--eth-space-md);
1127
+ display: grid;
1128
+ grid-template-columns: minmax(0, 1fr) auto;
1129
+ min-block-size: 100%;
1130
+ min-inline-size: 10.5rem;
1131
+ padding: var(--eth-space-sm) var(--eth-space-md);
1132
+ }
1133
+ .eth-identity-user-picker .eth-popover summary:hover .eth-identity-user-picker__trigger {
1134
+ background: var(--eth-color-layer-hover);
1135
+ }
1136
+ .eth-identity-user-picker__trigger > span:first-child {
1137
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1138
+ font-weight: 600;
1139
+ line-height: 1.2857;
1140
+ overflow: hidden;
1141
+ text-overflow: ellipsis;
1142
+ white-space: nowrap;
1143
+ }
1144
+ .eth-identity-user-picker__count {
1145
+ color: var(--eth-color-text-secondary);
1146
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1147
+ grid-column: 1;
1148
+ line-height: 1.333;
1149
+ overflow: hidden;
1150
+ text-overflow: ellipsis;
1151
+ white-space: nowrap;
1152
+ }
1153
+ .eth-identity-user-picker__chevron {
1154
+ border-block-end: 1.5px solid currentcolor;
1155
+ border-inline-end: 1.5px solid currentcolor;
1156
+ block-size: 0.5rem;
1157
+ color: var(--eth-color-text-secondary);
1158
+ grid-column: 2;
1159
+ grid-row: 1 / span 2;
1160
+ inline-size: 0.5rem;
1161
+ justify-self: end;
1162
+ transform: rotate(45deg);
1163
+ transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
1164
+ }
1165
+ .eth-identity-user-picker .eth-popover[open] .eth-identity-user-picker__chevron {
1166
+ transform: rotate(225deg);
1167
+ }
1168
+ .eth-identity-user-picker[data-disabled=true] .eth-popover summary {
1169
+ color: var(--eth-color-text-helper);
1170
+ cursor: not-allowed;
1171
+ }
1172
+ .eth-identity-user-picker[data-disabled=true] .eth-identity-user-picker__trigger,
1173
+ .eth-identity-user-picker[data-disabled=true] .eth-identity-user-picker__count,
1174
+ .eth-identity-user-picker[data-disabled=true] .eth-identity-user-picker__placeholder,
1175
+ .eth-identity-user-picker[data-disabled=true] .eth-identity-user-picker__chevron {
1176
+ color: var(--eth-color-text-helper);
1177
+ }
1178
+ .eth-identity-user-picker__content {
1179
+ gap: var(--eth-space-sm);
1180
+ inline-size: 100%;
1181
+ inset-block-start: calc(100% + var(--eth-space-xs));
1182
+ inset-inline-start: 0;
1183
+ margin-block-start: 0;
1184
+ max-inline-size: calc(100vw - var(--eth-space-xl));
1185
+ }
1186
+ .eth-identity-user-picker__content .cds--form-item,
1187
+ .eth-identity-user-picker__content .cds--text-input-wrapper,
1188
+ .eth-identity-user-picker__content .cds--text-input {
1189
+ inline-size: 100%;
1190
+ }
1191
+ .eth-identity-user-picker__suggestions {
1192
+ border: 1px solid var(--eth-color-border-subtle);
1193
+ display: grid;
1194
+ gap: 0;
1195
+ margin-block-start: 0;
1196
+ max-block-size: 16rem;
1197
+ overflow-y: auto;
1198
+ }
1199
+ .eth-identity-user-picker__option {
1200
+ align-items: center;
1201
+ background: var(--eth-color-layer-01);
1202
+ border: 0;
1203
+ border-block-end: 1px solid var(--eth-color-border-subtle);
1204
+ color: var(--eth-color-text-primary);
1205
+ cursor: pointer;
1206
+ display: grid;
1207
+ font: inherit;
1208
+ gap: var(--eth-space-md);
1209
+ grid-template-columns: minmax(0, 1fr) auto;
1210
+ min-block-size: 3rem;
1211
+ padding: var(--eth-space-sm) var(--eth-space-md);
1212
+ text-align: start;
1213
+ }
1214
+ .eth-identity-user-picker__option:last-child {
1215
+ border-block-end: 0;
1216
+ }
1217
+ .eth-identity-user-picker__option:hover {
1218
+ background: var(--eth-color-layer-hover);
1219
+ }
1220
+ .eth-identity-user-picker__option:disabled {
1221
+ color: var(--eth-color-text-helper);
1222
+ cursor: not-allowed;
1223
+ }
1224
+ .eth-identity-user-picker__option:focus-visible {
1225
+ outline: 2px solid var(--eth-color-focus);
1226
+ outline-offset: -2px;
1227
+ }
1228
+ .eth-identity-user-picker__option[aria-selected=true] {
1229
+ background: var(--eth-color-layer-selected);
1230
+ }
1231
+ .eth-identity-user-picker__option[aria-selected=true]:hover {
1232
+ background: var(--eth-color-layer-selected);
1233
+ }
1234
+ .eth-identity-user-picker__option-main {
1235
+ display: grid;
1236
+ gap: var(--eth-space-2xs);
1237
+ min-inline-size: 0;
1238
+ }
1239
+ .eth-identity-user-picker__option-label {
1240
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1241
+ font-weight: 600;
1242
+ line-height: 1.2857;
1243
+ overflow: hidden;
1244
+ text-overflow: ellipsis;
1245
+ white-space: nowrap;
1246
+ }
1247
+ .eth-identity-user-picker__option-meta {
1248
+ color: var(--eth-color-text-secondary);
1249
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1250
+ line-height: 1.333;
1251
+ overflow: hidden;
1252
+ text-overflow: ellipsis;
1253
+ white-space: nowrap;
1254
+ }
1255
+ .eth-identity-user-picker__option-check {
1256
+ block-size: 1rem;
1257
+ border: 1px solid transparent;
1258
+ display: inline-flex;
1259
+ inline-size: 1rem;
1260
+ position: relative;
1261
+ }
1262
+ .eth-identity-user-picker__option[aria-selected=true] .eth-identity-user-picker__option-check {
1263
+ background: var(--eth-color-text-primary);
1264
+ border-color: var(--eth-color-text-primary);
1265
+ }
1266
+ .eth-identity-user-picker__option[aria-selected=true] .eth-identity-user-picker__option-check::after {
1267
+ border-block-end: 2px solid var(--eth-color-background);
1268
+ border-inline-end: 2px solid var(--eth-color-background);
1269
+ block-size: 0.5625rem;
1270
+ content: "";
1271
+ inline-size: 0.3125rem;
1272
+ inset-block-start: 0.0625rem;
1273
+ inset-inline-start: 0.3125rem;
1274
+ position: absolute;
1275
+ transform: rotate(45deg);
1276
+ }
1277
+ .eth-identity-user-picker__empty {
1278
+ color: var(--eth-color-text-secondary);
1279
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1280
+ line-height: 1.4286;
1281
+ min-block-size: 3rem;
1282
+ padding: var(--eth-space-md);
1283
+ }
1284
+ @media (max-width: 31.25rem) {
1285
+ .eth-identity-user-picker__control {
1286
+ grid-template-columns: minmax(0, 1fr);
1287
+ }
1288
+ .eth-identity-user-picker__popover {
1289
+ inline-size: 100%;
1290
+ }
1291
+ .eth-identity-user-picker__trigger {
1292
+ border-block-start: 1px solid var(--eth-color-border-subtle);
1293
+ border-inline-start: 0;
1294
+ inline-size: 100%;
1295
+ }
1296
+ }
1297
+ .eth-id-permission-matrix,
1298
+ .eth-identity-permission-matrix {
1299
+ background: var(--eth-color-layer-01);
1300
+ border: 1px solid var(--eth-color-border-subtle);
1301
+ border-radius: 0;
1302
+ color: var(--eth-color-text-primary);
1303
+ inline-size: 100%;
1304
+ min-inline-size: 0;
1305
+ }
1306
+ .eth-id-permission-matrix .eth-meta-grid,
1307
+ .eth-identity-permission-matrix .eth-meta-grid {
1308
+ background: var(--eth-color-layer-02);
1309
+ grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
1310
+ }
1311
+ .eth-id-permission-matrix__summary,
1312
+ .eth-identity-permission-matrix__summary {
1313
+ align-items: stretch;
1314
+ background: var(--eth-color-layer-01);
1315
+ border: 1px solid var(--eth-color-border-subtle);
1316
+ display: flex;
1317
+ flex-wrap: wrap;
1318
+ min-block-size: 3rem;
1319
+ }
1320
+ .eth-id-permission-matrix__summary-item,
1321
+ .eth-identity-permission-matrix__summary-item {
1322
+ align-items: center;
1323
+ border-inline-end: 1px solid var(--eth-color-border-subtle);
1324
+ color: var(--eth-color-text-secondary);
1325
+ display: inline-flex;
1326
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1327
+ gap: var(--eth-space-xs);
1328
+ line-height: 1.4286;
1329
+ min-block-size: 3rem;
1330
+ padding: 0 var(--eth-space-md);
1331
+ }
1332
+ .eth-id-permission-matrix__summary-item::before,
1333
+ .eth-identity-permission-matrix__summary-item::before {
1334
+ block-size: 0.625rem;
1335
+ content: "";
1336
+ flex: 0 0 auto;
1337
+ inline-size: 0.625rem;
1338
+ }
1339
+ .eth-id-permission-matrix__summary-item strong,
1340
+ .eth-identity-permission-matrix__summary-item strong {
1341
+ color: var(--eth-color-text-primary);
1342
+ font-weight: 600;
1343
+ }
1344
+ .eth-id-permission-matrix__summary-item--allow::before,
1345
+ .eth-identity-permission-matrix__summary-item--allow::before {
1346
+ background: var(--eth-color-success);
1347
+ }
1348
+ .eth-id-permission-matrix__summary-item--deny::before,
1349
+ .eth-identity-permission-matrix__summary-item--deny::before {
1350
+ background: var(--eth-color-danger);
1351
+ }
1352
+ .eth-id-permission-matrix__summary-item--inherit::before,
1353
+ .eth-identity-permission-matrix__summary-item--inherit::before {
1354
+ background: transparent;
1355
+ border: 1px solid var(--eth-color-border-strong);
1356
+ }
1357
+ .eth-id-permission-matrix__mode,
1358
+ .eth-identity-permission-matrix__mode {
1359
+ align-items: center;
1360
+ background: var(--eth-color-layer-02);
1361
+ border-inline-start: 1px solid var(--eth-color-border-subtle);
1362
+ color: var(--eth-color-text-secondary);
1363
+ display: inline-flex;
1364
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1365
+ font-weight: 600;
1366
+ line-height: 1.3333;
1367
+ margin-inline-start: auto;
1368
+ padding: 0 var(--eth-space-md);
1369
+ text-transform: uppercase;
1370
+ }
1371
+ .eth-id-permission-matrix__table-wrap,
1372
+ .eth-identity-permission-matrix__table-wrap {
1373
+ background: var(--eth-color-layer-01);
1374
+ border: 1px solid var(--eth-color-border-subtle);
1375
+ inline-size: 100%;
1376
+ min-inline-size: 0;
1377
+ overflow-x: auto;
1378
+ }
1379
+ .eth-id-permission-matrix__table,
1380
+ .eth-identity-permission-matrix__table {
1381
+ border-collapse: collapse;
1382
+ color: var(--eth-color-text-primary);
1383
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1384
+ inline-size: 100%;
1385
+ line-height: 1.4286;
1386
+ min-inline-size: 46rem;
1387
+ table-layout: fixed;
1388
+ }
1389
+ .eth-id-permission-matrix__caption,
1390
+ .eth-identity-permission-matrix__caption {
1391
+ block-size: 1px;
1392
+ clip: rect(0 0 0 0);
1393
+ clip-path: inset(50%);
1394
+ inline-size: 1px;
1395
+ overflow: hidden;
1396
+ position: absolute;
1397
+ white-space: nowrap;
1398
+ }
1399
+ .eth-id-permission-matrix__table th,
1400
+ .eth-id-permission-matrix__table td,
1401
+ .eth-identity-permission-matrix__table th,
1402
+ .eth-identity-permission-matrix__table td {
1403
+ border-block-end: 1px solid var(--eth-color-border-subtle);
1404
+ padding: var(--eth-space-md) var(--eth-space-lg);
1405
+ text-align: start;
1406
+ vertical-align: middle;
1407
+ }
1408
+ .eth-id-permission-matrix__table thead th,
1409
+ .eth-identity-permission-matrix__table thead th {
1410
+ background: var(--eth-color-layer-02);
1411
+ color: var(--eth-color-text-secondary);
1412
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1413
+ font-weight: 600;
1414
+ line-height: 1.3333;
1415
+ }
1416
+ .eth-id-permission-matrix__table thead tr:first-child th,
1417
+ .eth-identity-permission-matrix__table thead tr:first-child th {
1418
+ border-block-end-color: var(--eth-color-border-strong);
1419
+ color: var(--eth-color-text-primary);
1420
+ }
1421
+ .eth-id-permission-matrix__subject-col,
1422
+ .eth-identity-permission-matrix__subject-col,
1423
+ .eth-id-permission-matrix__subject-heading,
1424
+ .eth-identity-permission-matrix__subject-heading,
1425
+ .eth-id-permission-matrix__subject,
1426
+ .eth-identity-permission-matrix__subject {
1427
+ inline-size: 13rem;
1428
+ }
1429
+ .eth-id-permission-matrix__table tbody th,
1430
+ .eth-identity-permission-matrix__table tbody th,
1431
+ .eth-id-permission-matrix__subject-col,
1432
+ .eth-identity-permission-matrix__subject-col {
1433
+ border-inline-end: 1px solid var(--eth-color-border-subtle);
1434
+ position: sticky;
1435
+ inset-inline-start: 0;
1436
+ z-index: 1;
1437
+ }
1438
+ .eth-id-permission-matrix__subject-col,
1439
+ .eth-identity-permission-matrix__subject-col {
1440
+ z-index: 2;
1441
+ }
1442
+ .eth-id-permission-matrix__table tbody th,
1443
+ .eth-identity-permission-matrix__table tbody th {
1444
+ background: var(--eth-color-layer-01);
1445
+ color: var(--eth-color-text-primary);
1446
+ font-weight: 400;
1447
+ }
1448
+ .eth-id-permission-matrix__subject-label,
1449
+ .eth-identity-permission-matrix__subject-label,
1450
+ .eth-id-permission-matrix__action-label,
1451
+ .eth-identity-permission-matrix__action-label {
1452
+ color: var(--eth-color-text-primary);
1453
+ display: block;
1454
+ }
1455
+ .eth-id-permission-matrix__subject-label,
1456
+ .eth-identity-permission-matrix__subject-label {
1457
+ font-weight: 600;
1458
+ max-inline-size: 100%;
1459
+ overflow: hidden;
1460
+ text-overflow: ellipsis;
1461
+ white-space: nowrap;
1462
+ }
1463
+ .eth-id-permission-matrix__table tbody th small,
1464
+ .eth-identity-permission-matrix__table tbody th small {
1465
+ color: var(--eth-color-text-helper);
1466
+ display: block;
1467
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1468
+ font-weight: 400;
1469
+ margin-block-start: var(--eth-space-2xs);
1470
+ overflow: hidden;
1471
+ text-overflow: ellipsis;
1472
+ white-space: nowrap;
1473
+ }
1474
+ .eth-id-permission-matrix__action-meta,
1475
+ .eth-identity-permission-matrix__action-meta {
1476
+ color: var(--eth-color-text-helper);
1477
+ display: flex;
1478
+ flex-wrap: wrap;
1479
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1480
+ font-weight: 400;
1481
+ gap: var(--eth-space-xs);
1482
+ line-height: 1.3333;
1483
+ margin-block-start: var(--eth-space-xs);
1484
+ }
1485
+ .eth-id-permission-matrix__action-meta span,
1486
+ .eth-identity-permission-matrix__action-meta span {
1487
+ background: var(--eth-color-layer-02);
1488
+ padding: 0 var(--eth-space-xs);
1489
+ }
1490
+ .eth-id-permission-matrix__cell,
1491
+ .eth-identity-permission-matrix__cell,
1492
+ .eth-id-permission-matrix td,
1493
+ .eth-identity-permission-matrix td {
1494
+ --eth-permission-accent: transparent;
1495
+ block-size: 3rem;
1496
+ box-shadow: inset 0.1875rem 0 var(--eth-permission-accent);
1497
+ min-inline-size: 8rem;
1498
+ position: relative;
1499
+ text-align: center;
1500
+ transition: background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
1501
+ }
1502
+ .eth-id-permission-matrix__cell[data-permission-value=allow],
1503
+ .eth-identity-permission-matrix__cell[data-permission-value=allow] {
1504
+ --eth-permission-accent: var(--eth-color-success);
1505
+ }
1506
+ .eth-id-permission-matrix__cell[data-permission-value=deny],
1507
+ .eth-identity-permission-matrix__cell[data-permission-value=deny] {
1508
+ --eth-permission-accent: var(--eth-color-danger);
1509
+ }
1510
+ .eth-id-permission-matrix__cell[data-permission-value=inherit],
1511
+ .eth-identity-permission-matrix__cell[data-permission-value=inherit] {
1512
+ --eth-permission-accent: var(--eth-color-border-subtle);
1513
+ }
1514
+ .eth-id-permission-matrix__select.cds--form-item,
1515
+ .eth-identity-permission-matrix__select.cds--form-item,
1516
+ .eth-id-permission-matrix__select .cds--select,
1517
+ .eth-identity-permission-matrix__select .cds--select,
1518
+ .eth-id-permission-matrix__select .cds--select-input,
1519
+ .eth-identity-permission-matrix__select .cds--select-input {
1520
+ inline-size: min(100%, 9.5rem);
1521
+ max-inline-size: 9.5rem;
1522
+ }
1523
+ .eth-id-permission-matrix__select.cds--form-item,
1524
+ .eth-identity-permission-matrix__select.cds--form-item {
1525
+ inline-size: 100%;
1526
+ margin-block-end: 0;
1527
+ min-inline-size: 8rem;
1528
+ }
1529
+ .eth-id-permission-matrix__select .cds--select-input,
1530
+ .eth-identity-permission-matrix__select .cds--select-input {
1531
+ background: var(--eth-color-layer-01);
1532
+ color: var(--eth-color-text-primary);
1533
+ }
1534
+ .eth-id-permission-matrix__select .cds--select-input:disabled,
1535
+ .eth-identity-permission-matrix__select .cds--select-input:disabled {
1536
+ border-block-end-color: var(--eth-color-border-subtle);
1537
+ }
1538
+ .eth-id-permission-matrix__table tbody tr:hover th,
1539
+ .eth-identity-permission-matrix__table tbody tr:hover th,
1540
+ .eth-id-permission-matrix__table tbody tr:hover td,
1541
+ .eth-identity-permission-matrix__table tbody tr:hover td {
1542
+ background: var(--eth-color-layer-hover);
1543
+ }
1544
+ .eth-id-permission-matrix__table tbody tr:last-child th,
1545
+ .eth-identity-permission-matrix__table tbody tr:last-child th,
1546
+ .eth-id-permission-matrix__table tbody tr:last-child td,
1547
+ .eth-identity-permission-matrix__table tbody tr:last-child td {
1548
+ border-block-end: 0;
1549
+ }
1550
+ .eth-id-permission-matrix__badge,
1551
+ .eth-identity-permission-matrix__badge {
1552
+ justify-content: center;
1553
+ margin: 0;
1554
+ min-inline-size: 6.75rem;
1555
+ }
1556
+ .eth-id-permission-matrix__badge .cds--tag__label,
1557
+ .eth-identity-permission-matrix__badge .cds--tag__label {
1558
+ align-items: center;
1559
+ display: inline-flex;
1560
+ gap: var(--eth-space-xs);
1561
+ }
1562
+ .eth-id-permission-matrix__status-mark,
1563
+ .eth-identity-permission-matrix__status-mark {
1564
+ block-size: 0.5rem;
1565
+ flex: 0 0 auto;
1566
+ inline-size: 0.5rem;
1567
+ }
1568
+ .eth-id-permission-matrix__badge--allow .eth-id-permission-matrix__status-mark,
1569
+ .eth-identity-permission-matrix__badge--allow .eth-identity-permission-matrix__status-mark {
1570
+ background: var(--eth-color-success);
1571
+ }
1572
+ .eth-id-permission-matrix__badge--deny .eth-id-permission-matrix__status-mark,
1573
+ .eth-identity-permission-matrix__badge--deny .eth-identity-permission-matrix__status-mark {
1574
+ background: var(--eth-color-danger);
1575
+ }
1576
+ .eth-id-permission-matrix__badge--inherit .eth-id-permission-matrix__status-mark,
1577
+ .eth-identity-permission-matrix__badge--inherit .eth-identity-permission-matrix__status-mark {
1578
+ background: transparent;
1579
+ border: 1px solid var(--eth-color-border-strong);
1580
+ }
1581
+ .eth-id-permission-matrix__select,
1582
+ .eth-identity-permission-matrix__select {
1583
+ inline-size: 100%;
1584
+ min-inline-size: 8rem;
1585
+ }
1586
+ @media (max-width: 48rem) {
1587
+ .eth-id-permission-matrix__summary,
1588
+ .eth-identity-permission-matrix__summary {
1589
+ display: grid;
1590
+ grid-template-columns: repeat(2, minmax(0, 1fr));
1591
+ }
1592
+ .eth-id-permission-matrix__summary-item,
1593
+ .eth-identity-permission-matrix__summary-item,
1594
+ .eth-id-permission-matrix__mode,
1595
+ .eth-identity-permission-matrix__mode {
1596
+ border-block-end: 1px solid var(--eth-color-border-subtle);
1597
+ border-inline-end: 0;
1598
+ border-inline-start: 0;
1599
+ margin-inline-start: 0;
1600
+ }
1601
+ }
1602
+ .eth-id-policy-rule-viewer,
1603
+ .eth-identity-policy-rule-viewer {
1604
+ background: var(--eth-color-layer-01);
1605
+ border: 1px solid var(--eth-color-border-subtle);
1606
+ border-radius: 0;
1607
+ color: var(--eth-color-text-primary);
1608
+ gap: var(--eth-space-lg);
1609
+ inline-size: 100%;
1610
+ min-inline-size: 0;
1611
+ padding: var(--eth-space-lg);
1612
+ }
1613
+ .eth-id-policy-rule-viewer .eth-surface__header,
1614
+ .eth-identity-policy-rule-viewer .eth-surface__header,
1615
+ .eth-id-session-status .eth-surface__header,
1616
+ .eth-identity-session-status .eth-surface__header {
1617
+ border-block-end: 1px solid var(--eth-color-border-subtle);
1618
+ padding-block-end: var(--eth-space-lg);
1619
+ }
1620
+ .eth-id-policy-rule-viewer .eth-surface__heading h2,
1621
+ .eth-identity-policy-rule-viewer .eth-surface__heading h2,
1622
+ .eth-id-session-status .eth-surface__heading h2,
1623
+ .eth-identity-session-status .eth-surface__heading h2 {
1624
+ font-size: calc(1rem * var(--eth-text-scale, 1));
1625
+ font-weight: 600;
1626
+ line-height: 1.375;
1627
+ overflow-wrap: anywhere;
1628
+ }
1629
+ .eth-id-session-status__summary,
1630
+ .eth-identity-session-status__summary {
1631
+ align-items: flex-start;
1632
+ background: var(--eth-color-layer-02);
1633
+ border: 1px solid var(--eth-color-border-subtle);
1634
+ border-inline-start: 4px solid var(--eth-color-border-strong);
1635
+ display: flex;
1636
+ gap: var(--eth-space-sm);
1637
+ min-inline-size: 0;
1638
+ padding: var(--eth-space-md);
1639
+ }
1640
+ .eth-id-session-status__summary--success,
1641
+ .eth-identity-session-status__summary--success {
1642
+ border-inline-start-color: var(--eth-color-success);
1643
+ }
1644
+ .eth-id-session-status__summary--warning,
1645
+ .eth-identity-session-status__summary--warning {
1646
+ border-inline-start-color: var(--eth-color-warning);
1647
+ }
1648
+ .eth-id-session-status__summary--danger,
1649
+ .eth-identity-session-status__summary--danger {
1650
+ border-inline-start-color: var(--eth-color-danger);
1651
+ }
1652
+ .eth-id-session-status__summary-mark,
1653
+ .eth-identity-session-status__summary-mark {
1654
+ background: var(--eth-color-text-secondary);
1655
+ border-radius: 50%;
1656
+ flex: 0 0 auto;
1657
+ block-size: 0.5rem;
1658
+ inline-size: 0.5rem;
1659
+ margin-block-start: 0.375rem;
1660
+ }
1661
+ .eth-id-session-status__summary--success .eth-id-session-status__summary-mark,
1662
+ .eth-identity-session-status__summary--success .eth-identity-session-status__summary-mark {
1663
+ background: var(--eth-color-success);
1664
+ }
1665
+ .eth-id-session-status__summary--warning .eth-id-session-status__summary-mark,
1666
+ .eth-identity-session-status__summary--warning .eth-identity-session-status__summary-mark {
1667
+ background: var(--eth-color-warning);
1668
+ }
1669
+ .eth-id-session-status__summary--danger .eth-id-session-status__summary-mark,
1670
+ .eth-identity-session-status__summary--danger .eth-identity-session-status__summary-mark {
1671
+ background: var(--eth-color-danger);
1672
+ }
1673
+ .eth-id-session-status__summary-copy,
1674
+ .eth-identity-session-status__summary-copy {
1675
+ display: grid;
1676
+ gap: var(--eth-space-2xs);
1677
+ min-inline-size: 0;
1678
+ }
1679
+ .eth-id-session-status__summary-copy strong,
1680
+ .eth-identity-session-status__summary-copy strong {
1681
+ color: var(--eth-color-text-primary);
1682
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1683
+ font-weight: 600;
1684
+ line-height: 1.4286;
1685
+ }
1686
+ .eth-id-session-status__summary-copy span,
1687
+ .eth-identity-session-status__summary-copy span,
1688
+ .eth-id-session-status__detail,
1689
+ .eth-identity-session-status__detail,
1690
+ .eth-id-session-status__muted,
1691
+ .eth-identity-session-status__muted {
1692
+ color: var(--eth-color-text-secondary);
1693
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1694
+ line-height: 1.333;
1695
+ }
1696
+ .eth-id-policy-rule-viewer__facet-list,
1697
+ .eth-identity-policy-rule-viewer__facet-list,
1698
+ .eth-id-session-status dl,
1699
+ .eth-identity-session-status dl {
1700
+ display: grid;
1701
+ gap: 0;
1702
+ margin: 0;
1703
+ min-inline-size: 0;
1704
+ }
1705
+ .eth-id-policy-rule-viewer__facet-list > div,
1706
+ .eth-identity-policy-rule-viewer__facet-list > div,
1707
+ .eth-id-session-status dl > div,
1708
+ .eth-identity-session-status dl > div {
1709
+ border-bottom: 1px solid var(--eth-color-border-subtle);
1710
+ display: grid;
1711
+ gap: var(--eth-space-md);
1712
+ grid-template-columns: minmax(8rem, 10rem) minmax(0, 1fr);
1713
+ padding: var(--eth-space-md) 0;
1714
+ }
1715
+ .eth-id-policy-rule-viewer__facet-list > div:last-child,
1716
+ .eth-identity-policy-rule-viewer__facet-list > div:last-child,
1717
+ .eth-id-session-status dl > div:last-child,
1718
+ .eth-identity-session-status dl > div:last-child {
1719
+ border-block-end: 0;
1720
+ }
1721
+ .eth-id-policy-rule-viewer__facet-list dt,
1722
+ .eth-identity-policy-rule-viewer__facet-list dt,
1723
+ .eth-id-session-status dt,
1724
+ .eth-identity-session-status dt {
1725
+ color: var(--eth-color-text-secondary);
1726
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1727
+ font-weight: 600;
1728
+ line-height: 1.4286;
1729
+ }
1730
+ .eth-id-policy-rule-viewer__facet-list dd,
1731
+ .eth-identity-policy-rule-viewer__facet-list dd,
1732
+ .eth-id-session-status dd,
1733
+ .eth-identity-session-status dd {
1734
+ margin: 0;
1735
+ min-width: 0;
1736
+ }
1737
+ .eth-id-policy-rule-viewer__facet-list dd,
1738
+ .eth-identity-policy-rule-viewer__facet-list dd {
1739
+ align-items: flex-start;
1740
+ display: flex;
1741
+ flex-wrap: wrap;
1742
+ gap: var(--eth-space-sm);
1743
+ }
1744
+ .eth-id-session-status__value,
1745
+ .eth-identity-session-status__value {
1746
+ display: grid;
1747
+ gap: var(--eth-space-xs);
1748
+ min-inline-size: 0;
1749
+ }
1750
+ .eth-id-session-status__value-main,
1751
+ .eth-identity-session-status__value-main {
1752
+ align-items: center;
1753
+ color: var(--eth-color-text-primary);
1754
+ display: flex;
1755
+ flex-wrap: wrap;
1756
+ gap: var(--eth-space-sm);
1757
+ min-inline-size: 0;
1758
+ }
1759
+ .eth-id-session-status__value-main time,
1760
+ .eth-identity-session-status__value-main time {
1761
+ overflow-wrap: anywhere;
1762
+ }
1763
+ .eth-id-session-status__code,
1764
+ .eth-identity-session-status__code {
1765
+ background: var(--eth-color-layer-02);
1766
+ border: 1px solid var(--eth-color-border-subtle);
1767
+ color: var(--eth-color-text-primary);
1768
+ font-family: var(--eth-font-mono, monospace);
1769
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1770
+ line-height: 1.333;
1771
+ max-inline-size: 100%;
1772
+ overflow-wrap: anywhere;
1773
+ padding: var(--eth-space-2xs) var(--eth-space-xs);
1774
+ }
1775
+ .eth-id-policy-rule-viewer__effect,
1776
+ .eth-identity-policy-rule-viewer__effect {
1777
+ justify-self: start;
1778
+ }
1779
+ .eth-id-policy-rule-viewer__values,
1780
+ .eth-identity-policy-rule-viewer__values {
1781
+ display: flex;
1782
+ flex-wrap: wrap;
1783
+ gap: var(--eth-space-xs);
1784
+ list-style: none;
1785
+ margin: 0;
1786
+ min-inline-size: 0;
1787
+ padding: 0;
1788
+ }
1789
+ .eth-id-policy-rule-viewer__values li,
1790
+ .eth-identity-policy-rule-viewer__values li {
1791
+ display: flex;
1792
+ max-inline-size: 100%;
1793
+ min-inline-size: 0;
1794
+ }
1795
+ .eth-id-policy-rule-viewer__values code,
1796
+ .eth-identity-policy-rule-viewer__values code,
1797
+ .eth-id-policy-rule-viewer__condition,
1798
+ .eth-identity-policy-rule-viewer__condition {
1799
+ background: var(--eth-color-layer-02);
1800
+ border: 1px solid var(--eth-color-border-subtle);
1801
+ color: var(--eth-color-text-primary);
1802
+ display: inline-block;
1803
+ font-family: var(--eth-font-mono, monospace);
1804
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1805
+ line-height: 1.333;
1806
+ max-inline-size: 100%;
1807
+ min-block-size: 1.5rem;
1808
+ overflow-wrap: anywhere;
1809
+ padding: var(--eth-space-xs) var(--eth-space-sm);
1810
+ white-space: normal;
1811
+ }
1812
+ .eth-id-policy-rule-viewer__condition,
1813
+ .eth-identity-policy-rule-viewer__condition {
1814
+ display: block;
1815
+ }
1816
+ .eth-id-policy-rule-viewer__empty,
1817
+ .eth-identity-policy-rule-viewer__empty {
1818
+ color: var(--eth-color-text-secondary);
1819
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1820
+ line-height: 1.4286;
1821
+ }
1822
+ .eth-id-role-badge,
1823
+ .eth-identity-role-badge {
1824
+ align-items: center;
1825
+ display: inline-flex;
1826
+ max-inline-size: 100%;
1827
+ min-inline-size: 0;
1828
+ vertical-align: middle;
1829
+ }
1830
+ .eth-id-role-badge .eth-badge,
1831
+ .eth-identity-role-badge .eth-badge {
1832
+ max-inline-size: 100%;
1833
+ min-inline-size: 0;
1834
+ }
1835
+ .eth-id-role-badge .cds--tag,
1836
+ .eth-identity-role-badge .cds--tag {
1837
+ margin: 0;
1838
+ }
1839
+ .eth-id-session-status:not(.eth-surface) {
1840
+ align-items: center;
1841
+ background: var(--eth-color-layer-02);
1842
+ color: var(--eth-color-text-primary);
1843
+ display: inline-flex;
1844
+ min-block-size: var(--eth-space-xl);
1845
+ padding: 0 var(--eth-space-sm);
1846
+ }
1847
+ .eth-id-team-list,
1848
+ .eth-identity-team-list {
1849
+ display: grid;
1850
+ gap: var(--eth-space-lg);
1851
+ }
1852
+ .eth-id-team-list__summary,
1853
+ .eth-identity-team-list__summary {
1854
+ background: var(--eth-color-layer-02);
1855
+ border: 1px solid var(--eth-color-border-subtle);
1856
+ display: grid;
1857
+ grid-template-columns: repeat(2, minmax(0, 1fr));
1858
+ margin: 0;
1859
+ }
1860
+ .eth-id-team-list__summary > div,
1861
+ .eth-identity-team-list__summary > div {
1862
+ display: grid;
1863
+ gap: var(--eth-space-2xs);
1864
+ min-inline-size: 0;
1865
+ padding: var(--eth-space-md);
1866
+ }
1867
+ .eth-id-team-list__summary > div + div,
1868
+ .eth-identity-team-list__summary > div + div {
1869
+ border-inline-start: 1px solid var(--eth-color-border-subtle);
1870
+ }
1871
+ .eth-id-team-list__summary dt,
1872
+ .eth-identity-team-list__summary dt {
1873
+ color: var(--eth-color-text-secondary);
1874
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1875
+ line-height: 1rem;
1876
+ }
1877
+ .eth-id-team-list__summary dd,
1878
+ .eth-identity-team-list__summary dd {
1879
+ color: var(--eth-color-text-primary);
1880
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1881
+ font-weight: 600;
1882
+ line-height: 1.125rem;
1883
+ margin: 0;
1884
+ }
1885
+ .eth-id-team-list__items,
1886
+ .eth-identity-team-list__items {
1887
+ background: var(--eth-color-layer-01);
1888
+ border: 1px solid var(--eth-color-border-subtle);
1889
+ display: grid;
1890
+ gap: 0;
1891
+ }
1892
+ .eth-id-team-list__item,
1893
+ .eth-identity-team-list__item {
1894
+ align-items: center;
1895
+ background: var(--eth-color-layer-01);
1896
+ border-block-start: 1px solid var(--eth-color-border-subtle);
1897
+ display: grid;
1898
+ gap: var(--eth-space-md);
1899
+ grid-template-columns: var(--eth-space-3xl) minmax(0, 1fr) max-content;
1900
+ min-inline-size: 0;
1901
+ padding: var(--eth-space-lg);
1902
+ transition: background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
1903
+ }
1904
+ .eth-id-team-list__item:first-child,
1905
+ .eth-identity-team-list__item:first-child {
1906
+ border-block-start: 0;
1907
+ }
1908
+ .eth-id-team-list__item:hover,
1909
+ .eth-identity-team-list__item:hover {
1910
+ background: var(--eth-color-layer-hover);
1911
+ }
1912
+ .eth-id-team-list__avatar,
1913
+ .eth-identity-team-list__avatar {
1914
+ align-items: center;
1915
+ background: var(--eth-color-layer-02);
1916
+ border: 1px solid var(--eth-color-border-subtle);
1917
+ color: var(--eth-color-text-secondary);
1918
+ display: inline-flex;
1919
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
1920
+ font-weight: 600;
1921
+ block-size: var(--eth-space-3xl);
1922
+ inline-size: var(--eth-space-3xl);
1923
+ justify-content: center;
1924
+ line-height: 1;
1925
+ }
1926
+ .eth-id-team-list__main,
1927
+ .eth-identity-team-list__main {
1928
+ display: grid;
1929
+ gap: var(--eth-space-sm);
1930
+ min-inline-size: 0;
1931
+ }
1932
+ .eth-id-team-list__heading,
1933
+ .eth-identity-team-list__heading {
1934
+ align-items: center;
1935
+ display: flex;
1936
+ flex-wrap: wrap;
1937
+ gap: var(--eth-space-sm);
1938
+ min-inline-size: 0;
1939
+ }
1940
+ .eth-id-team-list__heading h3,
1941
+ .eth-identity-team-list__heading h3 {
1942
+ color: var(--eth-color-text-primary);
1943
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1944
+ font-weight: 600;
1945
+ line-height: 1.125rem;
1946
+ margin: 0;
1947
+ min-inline-size: 0;
1948
+ overflow: hidden;
1949
+ text-overflow: ellipsis;
1950
+ white-space: nowrap;
1951
+ }
1952
+ .eth-id-team-list__meta,
1953
+ .eth-identity-team-list__meta {
1954
+ color: var(--eth-color-text-secondary);
1955
+ display: flex;
1956
+ flex-wrap: wrap;
1957
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1958
+ gap: var(--eth-space-sm);
1959
+ line-height: 1.125rem;
1960
+ margin: 0;
1961
+ min-inline-size: 0;
1962
+ }
1963
+ .eth-id-team-list__meta > div,
1964
+ .eth-identity-team-list__meta > div {
1965
+ display: inline-flex;
1966
+ gap: var(--eth-space-xs);
1967
+ min-inline-size: 0;
1968
+ }
1969
+ .eth-id-team-list__meta dt,
1970
+ .eth-identity-team-list__meta dt {
1971
+ color: var(--eth-color-text-secondary);
1972
+ }
1973
+ .eth-id-team-list__meta dd,
1974
+ .eth-identity-team-list__meta dd {
1975
+ color: var(--eth-color-text-primary);
1976
+ font-weight: 500;
1977
+ margin: 0;
1978
+ min-inline-size: 0;
1979
+ overflow: hidden;
1980
+ text-overflow: ellipsis;
1981
+ white-space: nowrap;
1982
+ }
1983
+ .eth-id-team-list__item .eth-button,
1984
+ .eth-identity-team-list__item .eth-button {
1985
+ justify-self: end;
1986
+ }
1987
+ .eth-id-team-list__empty,
1988
+ .eth-identity-team-list__empty {
1989
+ background: var(--eth-color-layer-01);
1990
+ border: 1px solid var(--eth-color-border-subtle);
1991
+ display: grid;
1992
+ gap: var(--eth-space-xs);
1993
+ padding: var(--eth-space-lg);
1994
+ }
1995
+ .eth-id-team-list__empty h3,
1996
+ .eth-identity-team-list__empty h3 {
1997
+ color: var(--eth-color-text-primary);
1998
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
1999
+ font-weight: 600;
2000
+ line-height: 1.125rem;
2001
+ margin: 0;
2002
+ }
2003
+ .eth-id-team-list__empty p,
2004
+ .eth-identity-team-list__empty p {
2005
+ color: var(--eth-color-text-secondary);
2006
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
2007
+ line-height: 1.125rem;
2008
+ margin: 0;
2009
+ }
2010
+ .eth-id-access-review__subject,
2011
+ .eth-identity-access-review__subject {
2012
+ background: var(--eth-color-layer-01);
2013
+ border: 1px solid var(--eth-color-border-subtle);
2014
+ border-radius: 0;
2015
+ display: grid;
2016
+ gap: 0;
2017
+ overflow: hidden;
2018
+ }
2019
+ .eth-id-access-review__subject-header,
2020
+ .eth-identity-access-review__subject-header {
2021
+ align-items: center;
2022
+ border-bottom: 1px solid var(--eth-color-border-subtle);
2023
+ display: flex;
2024
+ flex-wrap: wrap;
2025
+ gap: var(--eth-space-md);
2026
+ justify-content: space-between;
2027
+ padding: var(--eth-space-lg);
2028
+ }
2029
+ .eth-id-access-review__identity,
2030
+ .eth-identity-access-review__identity {
2031
+ align-items: center;
2032
+ display: flex;
2033
+ gap: var(--eth-space-md);
2034
+ min-width: 0;
2035
+ }
2036
+ .eth-id-access-review__avatar,
2037
+ .eth-identity-access-review__avatar {
2038
+ align-items: center;
2039
+ background: var(--eth-color-layer-02);
2040
+ border: 1px solid var(--eth-color-border-subtle);
2041
+ color: var(--eth-color-text-secondary);
2042
+ display: inline-flex;
2043
+ flex: 0 0 auto;
2044
+ font-size: calc(0.875rem * var(--eth-text-scale, 1));
2045
+ font-weight: 600;
2046
+ block-size: var(--eth-space-3xl);
2047
+ inline-size: var(--eth-space-3xl);
2048
+ justify-content: center;
2049
+ line-height: 1;
2050
+ }
2051
+ .eth-id-access-review__identity-main,
2052
+ .eth-identity-access-review__identity-main {
2053
+ min-width: 0;
2054
+ }
2055
+ .eth-id-access-review__identity-main h3,
2056
+ .eth-identity-access-review__identity-main h3 {
2057
+ font-size: calc(1rem * var(--eth-text-scale, 1));
2058
+ font-weight: 600;
2059
+ line-height: 1.375;
2060
+ margin: 0;
2061
+ }
2062
+ .eth-id-access-review__identity-main p,
2063
+ .eth-identity-access-review__identity-main p,
2064
+ .eth-id-access-review__identity-main small,
2065
+ .eth-identity-access-review__identity-main small,
2066
+ .eth-id-access-review__muted,
2067
+ .eth-identity-access-review__muted,
2068
+ .eth-id-access-review__empty-cell,
2069
+ .eth-identity-access-review__empty-cell {
2070
+ color: var(--eth-color-text-secondary);
2071
+ }
2072
+ .eth-id-access-review__identity-main p,
2073
+ .eth-identity-access-review__identity-main p {
2074
+ margin: var(--eth-space-2xs) 0 0;
2075
+ }
2076
+ .eth-id-access-review__identity-main small,
2077
+ .eth-identity-access-review__identity-main small {
2078
+ display: block;
2079
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
2080
+ line-height: 1.333;
2081
+ margin-block-start: var(--eth-space-2xs);
2082
+ text-transform: capitalize;
2083
+ }
2084
+ .eth-id-access-review__findings,
2085
+ .eth-identity-access-review__findings,
2086
+ .eth-id-access-review__permissions,
2087
+ .eth-identity-access-review__permissions,
2088
+ .eth-id-access-review__decision-actions,
2089
+ .eth-identity-access-review__decision-actions {
2090
+ align-items: center;
2091
+ display: flex;
2092
+ flex-wrap: wrap;
2093
+ gap: var(--eth-space-xs);
2094
+ }
2095
+ .eth-id-access-review__findings,
2096
+ .eth-identity-access-review__findings {
2097
+ justify-content: flex-end;
2098
+ }
2099
+ .eth-id-access-review__table-wrap,
2100
+ .eth-identity-access-review__table-wrap {
2101
+ overflow-x: auto;
2102
+ }
2103
+ .eth-id-access-review__table,
2104
+ .eth-identity-access-review__table,
2105
+ .eth-id-access-review__subject table,
2106
+ .eth-identity-access-review__subject table {
2107
+ border-collapse: collapse;
2108
+ inline-size: 100%;
2109
+ min-inline-size: 44rem;
2110
+ }
2111
+ .eth-id-access-review__table th,
2112
+ .eth-id-access-review__table td,
2113
+ .eth-identity-access-review__table th,
2114
+ .eth-identity-access-review__table td,
2115
+ .eth-id-access-review__subject th,
2116
+ .eth-id-access-review__subject td,
2117
+ .eth-identity-access-review__subject th,
2118
+ .eth-identity-access-review__subject td {
2119
+ border-bottom: 1px solid var(--eth-color-border-subtle);
2120
+ padding: var(--eth-space-sm) var(--eth-space-md);
2121
+ text-align: start;
2122
+ vertical-align: middle;
2123
+ }
2124
+ .eth-id-access-review__table thead th,
2125
+ .eth-identity-access-review__table thead th,
2126
+ .eth-id-access-review__subject thead th,
2127
+ .eth-identity-access-review__subject thead th {
2128
+ background: var(--eth-color-layer-02);
2129
+ color: var(--eth-color-text-secondary);
2130
+ font-size: calc(0.75rem * var(--eth-text-scale, 1));
2131
+ font-weight: 600;
2132
+ line-height: 1.333;
2133
+ }
2134
+ .eth-id-access-review__table tbody th,
2135
+ .eth-identity-access-review__table tbody th,
2136
+ .eth-id-access-review__subject tbody th,
2137
+ .eth-identity-access-review__subject tbody th {
2138
+ font-weight: 600;
2139
+ }
2140
+ .eth-id-access-review__table tbody tr,
2141
+ .eth-identity-access-review__table tbody tr {
2142
+ transition: background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
2143
+ }
2144
+ .eth-id-access-review__table tbody tr:hover,
2145
+ .eth-identity-access-review__table tbody tr:hover {
2146
+ background: var(--eth-color-layer-hover);
2147
+ }
2148
+ .eth-id-access-review__table th:last-child,
2149
+ .eth-id-access-review__table td:last-child,
2150
+ .eth-identity-access-review__table th:last-child,
2151
+ .eth-identity-access-review__table td:last-child {
2152
+ inline-size: 13rem;
2153
+ }
2154
+ .eth-id-access-review__decision-actions .eth-button,
2155
+ .eth-identity-access-review__decision-actions .eth-button {
2156
+ min-inline-size: 5.5rem;
2157
+ }
2158
+ .eth-id-access-review__empty-cell,
2159
+ .eth-identity-access-review__empty-cell {
2160
+ font-style: italic;
2161
+ }
2162
+ @media (width <= 42rem) {
2163
+ .eth-id-approval-policy-editor__layout,
2164
+ .eth-identity-approval-policy-editor__layout,
2165
+ .eth-id-approval-policy-editor__summary-grid,
2166
+ .eth-identity-approval-policy-editor__summary-grid {
2167
+ grid-template-columns: 1fr;
2168
+ }
2169
+ .eth-identity-invite-user__layout {
2170
+ grid-template-columns: 1fr;
2171
+ }
2172
+ .eth-identity-invite-user__summary {
2173
+ border-block-start: 1px solid var(--eth-color-border-subtle);
2174
+ border-inline-start: 0;
2175
+ padding-block-start: var(--eth-space-lg);
2176
+ padding-inline-start: 0;
2177
+ }
2178
+ .eth-identity-invite-user__actions {
2179
+ align-items: flex-start;
2180
+ }
2181
+ .eth-id-approval-policy-editor__summary-grid div,
2182
+ .eth-identity-approval-policy-editor__summary-grid div {
2183
+ border-block-end: 1px solid var(--eth-color-border-subtle);
2184
+ border-inline-end: 0;
2185
+ }
2186
+ .eth-id-approval-policy-editor__summary-grid div:last-child,
2187
+ .eth-identity-approval-policy-editor__summary-grid div:last-child {
2188
+ border-block-end: 0;
2189
+ }
2190
+ .eth-id-policy-rule-viewer__facet-list > div,
2191
+ .eth-identity-policy-rule-viewer__facet-list > div,
2192
+ .eth-id-session-status dl > div,
2193
+ .eth-identity-session-status dl > div {
2194
+ grid-template-columns: 1fr;
2195
+ }
2196
+ .eth-id-identity-card__body,
2197
+ .eth-identity-card__body {
2198
+ align-items: start;
2199
+ grid-template-columns: max-content minmax(0, 1fr);
2200
+ }
2201
+ .eth-id-identity-card__body > .eth-actions,
2202
+ .eth-identity-card__body > .eth-actions {
2203
+ grid-column: 1 / -1;
2204
+ justify-content: flex-start;
2205
+ justify-self: stretch;
2206
+ min-inline-size: 0;
2207
+ }
2208
+ .eth-id-team-list__item,
2209
+ .eth-identity-team-list__item {
2210
+ align-items: start;
2211
+ grid-template-columns: var(--eth-space-3xl) minmax(0, 1fr);
2212
+ }
2213
+ .eth-id-team-list__item .eth-button,
2214
+ .eth-identity-team-list__item .eth-button {
2215
+ grid-column: 1 / -1;
2216
+ justify-self: stretch;
2217
+ }
2218
+ .eth-id-team-list__summary,
2219
+ .eth-identity-team-list__summary {
2220
+ grid-template-columns: 1fr;
2221
+ }
2222
+ .eth-id-team-list__summary > div + div,
2223
+ .eth-identity-team-list__summary > div + div {
2224
+ border-block-start: 1px solid var(--eth-color-border-subtle);
2225
+ border-inline-start: 0;
2226
+ }
2227
+ .eth-id-access-review__subject-header,
2228
+ .eth-identity-access-review__subject-header,
2229
+ .eth-id-access-review__identity,
2230
+ .eth-identity-access-review__identity {
2231
+ align-items: flex-start;
2232
+ }
2233
+ .eth-id-access-review__findings,
2234
+ .eth-identity-access-review__findings {
2235
+ justify-content: flex-start;
2236
+ }
2237
+ }
2238
+ /*# sourceMappingURL=index.css.map */