@vsn-ux/gaia-styles 0.6.2 → 0.6.4

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.
@@ -147,6 +147,288 @@
147
147
  }
148
148
  }
149
149
  }
150
+ .ga-breadcrumb {
151
+ display: flex;
152
+ flex-wrap: wrap;
153
+ align-content: flex-start;
154
+ align-items: flex-start;
155
+ gap: calc(0.25rem * 6);
156
+ }
157
+ .ga-breadcrumb-item {
158
+ position: relative;
159
+ display: inline-flex;
160
+ align-items: center;
161
+ gap: calc(0.25rem * 6);
162
+ .ga-breadcrumb-item__explorer {
163
+ cursor: pointer;
164
+ border-radius: var(--ga-radius);
165
+ font-size: calc(
166
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
167
+ );
168
+ line-height: var(--tw-leading, calc(
169
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
170
+ ));
171
+ letter-spacing: var(--tw-tracking, calc(
172
+ var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
173
+ ));
174
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
175
+ transition-timing-function: var(--tw-ease, ease);
176
+ transition-duration: var(--tw-duration, 0s);
177
+ transition-duration: var(--ga-duration-instant);
178
+ transition-timing-function: var(--ga-easing-standard);
179
+ --tw-outline-style: none;
180
+ outline-style: none;
181
+ .ga-icon {
182
+ color: var(--ga-color-icon-action);
183
+ }
184
+ &:hover .ga-icon {
185
+ color: var(--ga-color-icon-action-hover);
186
+ }
187
+ }
188
+ &.ga-breadcrumb-item--overflow {
189
+ align-items: center;
190
+ gap: calc(0.25rem * 3);
191
+ .ga-breadcrumb-item__menu {
192
+ left: calc(var(--ga-size-spacing-02) * -1);
193
+ }
194
+ .ga-breadcrumb-item__trigger {
195
+ display: flex;
196
+ cursor: pointer;
197
+ align-items: center;
198
+ justify-content: center;
199
+ gap: calc(0.25rem * 2);
200
+ border-radius: var(--ga-radius);
201
+ font-size: calc(
202
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
203
+ );
204
+ line-height: var(--tw-leading, calc(
205
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
206
+ ));
207
+ letter-spacing: var(--tw-tracking, calc(
208
+ var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
209
+ ));
210
+ --tw-font-weight: 400;
211
+ font-weight: 400;
212
+ color: var(--ga-color-text-action);
213
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
214
+ transition-timing-function: var(--tw-ease, ease);
215
+ transition-duration: var(--tw-duration, 0s);
216
+ transition-duration: var(--ga-duration-instant);
217
+ transition-timing-function: var(--ga-easing-standard);
218
+ .ga-breadcrumb-item__label {
219
+ max-width: calc(0.25rem * 80);
220
+ overflow: hidden;
221
+ text-overflow: ellipsis;
222
+ white-space: nowrap;
223
+ color: var(--ga-color-text-action);
224
+ }
225
+ .ga-icon {
226
+ color: var(--ga-color-icon-action);
227
+ }
228
+ &:hover {
229
+ .ga-breadcrumb-item__label {
230
+ text-decoration-line: underline;
231
+ }
232
+ }
233
+ &:focus-visible {
234
+ --tw-outline-style: none;
235
+ outline-style: none;
236
+ .ga-breadcrumb-item__label {
237
+ border-radius: 2px;
238
+ text-decoration-line: none;
239
+ outline-style: var(--tw-outline-style);
240
+ outline-width: 2px;
241
+ outline-offset: 2px;
242
+ outline-color: var(--ga-color-border-focus);
243
+ }
244
+ }
245
+ &[aria-expanded='true'] {
246
+ --tw-outline-style: none;
247
+ outline-style: none;
248
+ .ga-breadcrumb-item__label {
249
+ border-radius: 2px;
250
+ text-decoration-line: none;
251
+ outline-style: var(--tw-outline-style);
252
+ outline-width: 2px;
253
+ outline-offset: 2px;
254
+ outline-color: var(--ga-color-border-focus);
255
+ }
256
+ }
257
+ }
258
+ .ga-breadcrumb-item__separator {
259
+ font-size: calc(
260
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
261
+ );
262
+ line-height: var(--tw-leading, calc(
263
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
264
+ ));
265
+ letter-spacing: var(--tw-tracking, calc(
266
+ var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
267
+ ));
268
+ color: var(--ga-color-text-body);
269
+ }
270
+ }
271
+ &.ga-breadcrumb-item--current-page {
272
+ gap: calc(0.25rem * 3);
273
+ .ga-breadcrumb-item__trigger {
274
+ padding-right: calc(0.25rem * 1);
275
+ font-size: calc(
276
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
277
+ );
278
+ line-height: var(--tw-leading, calc(
279
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
280
+ ));
281
+ letter-spacing: var(--tw-tracking, calc(
282
+ var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
283
+ ));
284
+ --tw-font-weight: 600;
285
+ font-weight: 600;
286
+ color: var(--ga-color-text-body);
287
+ .ga-breadcrumb-item__label {
288
+ max-width: calc(0.25rem * 80);
289
+ overflow: hidden;
290
+ text-overflow: ellipsis;
291
+ white-space: nowrap;
292
+ }
293
+ }
294
+ }
295
+ &.ga-breadcrumb-item--back {
296
+ align-items: center;
297
+ gap: calc(0.25rem * 2);
298
+ .ga-breadcrumb-item__trigger {
299
+ display: inline-flex;
300
+ cursor: pointer;
301
+ align-items: center;
302
+ border-radius: var(--ga-radius);
303
+ font-size: calc(
304
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
305
+ );
306
+ line-height: var(--tw-leading, calc(
307
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
308
+ ));
309
+ letter-spacing: var(--tw-tracking, calc(
310
+ var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
311
+ ));
312
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
313
+ transition-timing-function: var(--tw-ease, ease);
314
+ transition-duration: var(--tw-duration, 0s);
315
+ transition-duration: var(--ga-duration-instant);
316
+ transition-timing-function: var(--ga-easing-standard);
317
+ .ga-icon {
318
+ color: var(--ga-color-icon-action);
319
+ }
320
+ &:hover {
321
+ .ga-icon {
322
+ color: var(--ga-color-icon-action-hover);
323
+ }
324
+ }
325
+ &:focus-visible {
326
+ outline-style: var(--tw-outline-style);
327
+ outline-width: 2px;
328
+ outline-offset: 2px;
329
+ outline-color: var(--ga-color-border-focus);
330
+ }
331
+ }
332
+ .ga-breadcrumb-item__label {
333
+ font-size: calc(
334
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
335
+ );
336
+ line-height: var(--tw-leading, calc(
337
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
338
+ ));
339
+ letter-spacing: var(--tw-tracking, calc(
340
+ var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
341
+ ));
342
+ --tw-font-weight: 600;
343
+ font-weight: 600;
344
+ color: var(--ga-color-text-body);
345
+ }
346
+ }
347
+ &.ga-breadcrumb-item--link {
348
+ gap: calc(0.25rem * 3);
349
+ .ga-breadcrumb-item__trigger {
350
+ display: inline-flex;
351
+ cursor: pointer;
352
+ align-items: center;
353
+ border-radius: var(--ga-radius);
354
+ padding-right: calc(0.25rem * 1);
355
+ font-size: calc(
356
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
357
+ );
358
+ line-height: var(--tw-leading, calc(
359
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
360
+ ));
361
+ letter-spacing: var(--tw-tracking, calc(
362
+ var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
363
+ ));
364
+ --tw-font-weight: 400;
365
+ font-weight: 400;
366
+ color: var(--ga-color-text-action);
367
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
368
+ transition-timing-function: var(--tw-ease, ease);
369
+ transition-duration: var(--tw-duration, 0s);
370
+ transition-duration: var(--ga-duration-instant);
371
+ transition-timing-function: var(--ga-easing-standard);
372
+ .ga-breadcrumb-item__label {
373
+ max-width: calc(0.25rem * 80);
374
+ overflow: hidden;
375
+ text-overflow: ellipsis;
376
+ white-space: nowrap;
377
+ color: var(--ga-color-text-action);
378
+ }
379
+ &:hover {
380
+ color: var(--ga-color-text-action-hover);
381
+ text-decoration-line: underline;
382
+ .ga-breadcrumb-item__label {
383
+ color: var(--ga-color-text-action-hover);
384
+ text-decoration-line: underline;
385
+ }
386
+ }
387
+ &:active {
388
+ color: var(--ga-color-text-action-hover);
389
+ .ga-breadcrumb-item__label {
390
+ color: var(--ga-color-text-action-hover);
391
+ }
392
+ }
393
+ &:focus-visible {
394
+ outline-style: var(--tw-outline-style);
395
+ outline-width: 2px;
396
+ outline-offset: 2px;
397
+ outline-color: var(--ga-color-border-focus);
398
+ }
399
+ }
400
+ .ga-breadcrumb-item__explorer {
401
+ padding-right: calc(0.25rem * 1);
402
+ }
403
+ .ga-breadcrumb-item__separator {
404
+ font-size: calc(
405
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
406
+ );
407
+ line-height: var(--tw-leading, calc(
408
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
409
+ ));
410
+ letter-spacing: var(--tw-tracking, calc(
411
+ var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
412
+ ));
413
+ color: var(--ga-color-text-body);
414
+ }
415
+ }
416
+ .ga-breadcrumb-item__group {
417
+ display: inline-flex;
418
+ align-items: center;
419
+ border-radius: var(--ga-radius);
420
+ &:focus-within {
421
+ outline-style: var(--tw-outline-style);
422
+ outline-width: 2px;
423
+ outline-offset: 2px;
424
+ outline-color: var(--ga-color-border-focus);
425
+ }
426
+ .ga-breadcrumb-item__trigger:focus-visible {
427
+ --tw-outline-style: none;
428
+ outline-style: none;
429
+ }
430
+ }
431
+ }
150
432
  .ga-button {
151
433
  display: inline-flex;
152
434
  height: calc(0.25rem * 10);
@@ -3081,6 +3363,721 @@ textarea.ga-text-area {
3081
3363
  }
3082
3364
  }
3083
3365
  }
3366
+ .ga-side-navigation {
3367
+ display: flex;
3368
+ height: 100%;
3369
+ width: calc(0.25rem * 80);
3370
+ flex-direction: column;
3371
+ border-radius: var(--ga-radius);
3372
+ background-color: var(--ga-color-surface-primary);
3373
+ padding: calc(0.25rem * 1);
3374
+ --tw-shadow: var(--ga-shadow-north);
3375
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
3376
+ .ga-side-navigation__header {
3377
+ position: relative;
3378
+ z-index: 10;
3379
+ display: flex;
3380
+ flex-shrink: 0;
3381
+ flex-direction: column;
3382
+ }
3383
+ .ga-side-navigation__switcher {
3384
+ position: relative;
3385
+ display: flex;
3386
+ cursor: pointer;
3387
+ align-items: center;
3388
+ justify-content: space-between;
3389
+ gap: calc(0.25rem * 2);
3390
+ border-radius: var(--ga-radius);
3391
+ padding: calc(0.25rem * 3);
3392
+ --tw-outline-style: none;
3393
+ outline-style: none;
3394
+ &:hover {
3395
+ background-color: var(--ga-color-surface-action-hover-2);
3396
+ }
3397
+ &:focus-visible {
3398
+ &::after {
3399
+ position: absolute;
3400
+ inset: 3px;
3401
+ border-radius: var(--ga-radius);
3402
+ border-style: var(--tw-border-style);
3403
+ border-width: 2px;
3404
+ border-color: var(--ga-color-border-focus);
3405
+ --tw-content: '';
3406
+ content: var(--tw-content);
3407
+ }
3408
+ }
3409
+ &:active {
3410
+ .ga-side-navigation__switcher-title {
3411
+ --tw-font-weight: 600;
3412
+ font-weight: 600;
3413
+ }
3414
+ }
3415
+ &.ga-side-navigation__switcher--active {
3416
+ background-color: var(--ga-color-surface-selected);
3417
+ .ga-side-navigation__switcher-title {
3418
+ --tw-font-weight: 600;
3419
+ font-weight: 600;
3420
+ }
3421
+ }
3422
+ }
3423
+ .ga-side-navigation__switcher-title {
3424
+ min-width: calc(0.25rem * 0);
3425
+ flex: 1;
3426
+ overflow: hidden;
3427
+ text-overflow: ellipsis;
3428
+ white-space: nowrap;
3429
+ text-align: left;
3430
+ font-size: calc(
3431
+ var(--ga-text-lg-font-size) * var(--ga-base-scaling-factor, 1)
3432
+ );
3433
+ line-height: var(--tw-leading, calc(
3434
+ var(--ga-text-lg-line-height) * var(--ga-base-scaling-factor, 1)
3435
+ ));
3436
+ letter-spacing: var(--tw-tracking, calc(
3437
+ var(--ga-text-lg-letter-spacing) * var(--ga-base-scaling-factor, 1)
3438
+ ));
3439
+ --tw-font-weight: 500;
3440
+ font-weight: 500;
3441
+ color: var(--ga-color-text-action);
3442
+ }
3443
+ .ga-side-navigation__switcher-action {
3444
+ display: flex;
3445
+ flex-shrink: 0;
3446
+ cursor: pointer;
3447
+ align-items: center;
3448
+ padding-block: calc(0.25rem * 2);
3449
+ color: var(--ga-color-icon-secondary);
3450
+ &:hover {
3451
+ color: var(--ga-color-icon-action);
3452
+ }
3453
+ }
3454
+ .ga-side-navigation__switcher-dropdown {
3455
+ position: absolute;
3456
+ top: 100%;
3457
+ right: calc(0.25rem * 0);
3458
+ left: calc(0.25rem * 0);
3459
+ z-index: 10;
3460
+ display: flex;
3461
+ max-height: calc(0.25rem * 80);
3462
+ flex-direction: column;
3463
+ overflow-y: auto;
3464
+ border-radius: var(--ga-radius);
3465
+ background-color: var(--ga-color-surface-primary);
3466
+ padding-inline: calc(0.25rem * 2);
3467
+ padding-top: calc(0.25rem * 4);
3468
+ padding-bottom: calc(0.25rem * 2);
3469
+ --tw-shadow: var(--ga-shadow-north);
3470
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
3471
+ }
3472
+ .ga-side-navigation__switcher-dropdown-header {
3473
+ padding-inline: calc(0.25rem * 4);
3474
+ padding-top: calc(0.25rem * 1);
3475
+ padding-bottom: calc(0.25rem * 1);
3476
+ font-size: calc(
3477
+ var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)
3478
+ );
3479
+ line-height: var(--tw-leading, calc(
3480
+ var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)
3481
+ ));
3482
+ letter-spacing: var(--tw-tracking, 0);
3483
+ --tw-font-weight: 600;
3484
+ font-weight: 600;
3485
+ color: var(--ga-color-text-disable-selected);
3486
+ text-transform: uppercase;
3487
+ }
3488
+ .ga-side-navigation__switcher-dropdown-item {
3489
+ position: relative;
3490
+ display: flex;
3491
+ cursor: pointer;
3492
+ align-items: center;
3493
+ gap: calc(0.25rem * 2);
3494
+ border-radius: var(--ga-radius);
3495
+ padding: calc(0.25rem * 4);
3496
+ text-align: left;
3497
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
3498
+ transition-timing-function: var(--tw-ease, ease);
3499
+ transition-duration: var(--tw-duration, 0s);
3500
+ transition-duration: var(--ga-duration-instant);
3501
+ transition-timing-function: var(--ga-easing-standard);
3502
+ &:hover {
3503
+ background-color: var(--ga-color-surface-action-hover-2);
3504
+ }
3505
+ &:focus-visible {
3506
+ --tw-outline-style: none;
3507
+ outline-style: none;
3508
+ &::after {
3509
+ position: absolute;
3510
+ inset: 3px;
3511
+ border-radius: var(--ga-radius);
3512
+ border-style: var(--tw-border-style);
3513
+ border-width: 2px;
3514
+ border-color: var(--ga-color-border-focus);
3515
+ --tw-content: '';
3516
+ content: var(--tw-content);
3517
+ }
3518
+ }
3519
+ &:active {
3520
+ .ga-side-navigation__switcher-dropdown-title {
3521
+ --tw-font-weight: 600;
3522
+ font-weight: 600;
3523
+ }
3524
+ }
3525
+ }
3526
+ .ga-side-navigation__switcher-dropdown-title {
3527
+ min-width: calc(0.25rem * 0);
3528
+ flex: 1;
3529
+ overflow: hidden;
3530
+ text-overflow: ellipsis;
3531
+ white-space: nowrap;
3532
+ text-align: left;
3533
+ font-size: calc(
3534
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
3535
+ );
3536
+ line-height: var(--tw-leading, calc(
3537
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
3538
+ ));
3539
+ letter-spacing: var(--tw-tracking, calc(
3540
+ var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
3541
+ ));
3542
+ --tw-font-weight: 500;
3543
+ font-weight: 500;
3544
+ color: var(--ga-color-text-action);
3545
+ }
3546
+ .ga-side-navigation__switcher-dropdown-external {
3547
+ height: calc(0.25rem * 4);
3548
+ width: calc(0.25rem * 4);
3549
+ flex-shrink: 0;
3550
+ align-self: center;
3551
+ color: var(--ga-color-icon-secondary);
3552
+ }
3553
+ .ga-side-navigation__search {
3554
+ margin-inline: calc(0.25rem * 3);
3555
+ margin-block: calc(0.25rem * 2);
3556
+ &.ga-input {
3557
+ width: auto;
3558
+ &:not(:hover) {
3559
+ border-color: var(--ga-color-surface-page);
3560
+ background-color: var(--ga-color-surface-page);
3561
+ }
3562
+ input::-webkit-search-cancel-button {
3563
+ display: none;
3564
+ }
3565
+ }
3566
+ }
3567
+ .ga-side-navigation__search-shortcut {
3568
+ flex-shrink: 0;
3569
+ cursor: default;
3570
+ border-radius: var(--ga-radius);
3571
+ border-style: var(--tw-border-style);
3572
+ border-width: 1px;
3573
+ border-color: var(--ga-color-border-disabled);
3574
+ background-color: #fff;
3575
+ padding-inline: calc(0.25rem * 1);
3576
+ padding-block: 1px;
3577
+ font-family: Inter, ui-sans-serif, system-ui, sans-serif;
3578
+ font-feature-settings: 'liga' 1, 'calt' 1;
3579
+ font-size: calc(
3580
+ var(--ga-text-xs-font-size) * var(--ga-base-scaling-factor, 1)
3581
+ );
3582
+ line-height: var(--tw-leading, calc(
3583
+ var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
3584
+ ));
3585
+ letter-spacing: var(--tw-tracking, calc(
3586
+ var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
3587
+ ));
3588
+ color: var(--ga-color-icon-on-disabled);
3589
+ }
3590
+ .ga-side-navigation__body {
3591
+ display: flex;
3592
+ flex: 1;
3593
+ flex-direction: column;
3594
+ overflow-y: auto;
3595
+ padding-inline: calc(0.25rem * 3);
3596
+ padding-block: calc(0.25rem * 2);
3597
+ }
3598
+ .ga-side-navigation__item {
3599
+ position: relative;
3600
+ display: flex;
3601
+ cursor: pointer;
3602
+ flex-direction: row;
3603
+ align-items: center;
3604
+ gap: calc(0.25rem * 3);
3605
+ border-radius: var(--ga-radius);
3606
+ padding-inline: calc(0.25rem * 4);
3607
+ padding-block: calc(0.25rem * 3);
3608
+ text-align: left;
3609
+ font-size: calc(
3610
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
3611
+ );
3612
+ line-height: var(--tw-leading, calc(
3613
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
3614
+ ));
3615
+ letter-spacing: var(--tw-tracking, calc(
3616
+ var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
3617
+ ));
3618
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
3619
+ transition-timing-function: var(--tw-ease, ease);
3620
+ transition-duration: var(--tw-duration, 0s);
3621
+ transition-duration: var(--ga-duration-instant);
3622
+ transition-timing-function: var(--ga-easing-standard);
3623
+ &:hover {
3624
+ background-color: var(--ga-color-surface-action-hover-2);
3625
+ }
3626
+ &:focus, &:focus-visible {
3627
+ --tw-outline-style: none;
3628
+ outline-style: none;
3629
+ }
3630
+ &:active:not(.ga-side-navigation__item--disabled) {
3631
+ .ga-side-navigation__item-label {
3632
+ --tw-font-weight: 500;
3633
+ font-weight: 500;
3634
+ }
3635
+ }
3636
+ &.ga-side-navigation__item--active {
3637
+ background-color: var(--ga-color-surface-selected);
3638
+ &::before {
3639
+ position: absolute;
3640
+ top: calc(1 / 2 * 100%);
3641
+ left: calc(0.25rem * 0);
3642
+ height: calc(0.25rem * 8);
3643
+ width: calc(0.25rem * 1);
3644
+ --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
3645
+ translate: var(--tw-translate-x) var(--tw-translate-y);
3646
+ border-top-right-radius: var(--ga-radius);
3647
+ border-bottom-right-radius: var(--ga-radius);
3648
+ background-color: var(--ga-color-surface-action);
3649
+ --tw-content: '';
3650
+ content: var(--tw-content);
3651
+ }
3652
+ .ga-side-navigation__item-label {
3653
+ --tw-font-weight: 600;
3654
+ font-weight: 600;
3655
+ }
3656
+ }
3657
+ &.ga-side-navigation__item--expanded {
3658
+ .ga-side-navigation__item-label {
3659
+ --tw-font-weight: 600;
3660
+ font-weight: 600;
3661
+ }
3662
+ }
3663
+ &.ga-side-navigation__item--disabled {
3664
+ cursor: not-allowed;
3665
+ &:hover {
3666
+ background-color: transparent;
3667
+ }
3668
+ .ga-side-navigation__item-icon {
3669
+ color: var(--ga-color-icon-disabled);
3670
+ }
3671
+ .ga-side-navigation__item-label {
3672
+ color: var(--ga-color-text-disabled);
3673
+ }
3674
+ }
3675
+ }
3676
+ .ga-side-navigation__item--level-2 {
3677
+ padding-left: calc(0.25rem * 8);
3678
+ }
3679
+ .ga-side-navigation__item--level-3 {
3680
+ padding-left: calc(0.25rem * 14);
3681
+ }
3682
+ .ga-side-navigation__item--level-4 {
3683
+ padding-left: calc(0.25rem * 20);
3684
+ }
3685
+ .ga-side-navigation__item-icon {
3686
+ height: calc(0.25rem * 4);
3687
+ width: calc(0.25rem * 4);
3688
+ flex-shrink: 0;
3689
+ color: var(--ga-color-icon-primary);
3690
+ }
3691
+ .ga-side-navigation__item-content {
3692
+ display: flex;
3693
+ min-width: calc(0.25rem * 0);
3694
+ flex: 1;
3695
+ flex-direction: column;
3696
+ }
3697
+ .ga-side-navigation__item-label {
3698
+ overflow: hidden;
3699
+ text-overflow: ellipsis;
3700
+ white-space: nowrap;
3701
+ font-size: calc(
3702
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
3703
+ );
3704
+ line-height: var(--tw-leading, calc(
3705
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
3706
+ ));
3707
+ letter-spacing: var(--tw-tracking, calc(
3708
+ var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
3709
+ ));
3710
+ color: var(--ga-color-text-action);
3711
+ }
3712
+ .ga-side-navigation__item-description {
3713
+ overflow: hidden;
3714
+ text-overflow: ellipsis;
3715
+ white-space: nowrap;
3716
+ font-size: calc(
3717
+ var(--ga-text-xs-font-size) * var(--ga-base-scaling-factor, 1)
3718
+ );
3719
+ line-height: var(--tw-leading, calc(
3720
+ var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
3721
+ ));
3722
+ letter-spacing: var(--tw-tracking, calc(
3723
+ var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
3724
+ ));
3725
+ color: var(--ga-color-text-secondary);
3726
+ }
3727
+ .ga-side-navigation__item-external {
3728
+ height: calc(0.25rem * 4);
3729
+ width: calc(0.25rem * 4);
3730
+ flex-shrink: 0;
3731
+ align-self: center;
3732
+ color: var(--ga-color-icon-secondary);
3733
+ }
3734
+ .ga-side-navigation__recent-title {
3735
+ padding-inline: calc(0.25rem * 4);
3736
+ padding-block: calc(0.25rem * 3);
3737
+ font-size: calc(
3738
+ var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)
3739
+ );
3740
+ line-height: var(--tw-leading, calc(
3741
+ var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)
3742
+ ));
3743
+ letter-spacing: var(--tw-tracking, 0);
3744
+ --tw-font-weight: 500;
3745
+ font-weight: 500;
3746
+ color: var(--ga-color-text-disable-selected);
3747
+ text-transform: uppercase;
3748
+ }
3749
+ .ga-side-navigation__recent-item {
3750
+ position: relative;
3751
+ display: flex;
3752
+ cursor: pointer;
3753
+ flex-direction: row;
3754
+ align-items: center;
3755
+ gap: calc(0.25rem * 3);
3756
+ border-radius: var(--ga-radius);
3757
+ padding-block: calc(0.25rem * 2);
3758
+ padding-left: calc(0.25rem * 4);
3759
+ text-align: left;
3760
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
3761
+ transition-timing-function: var(--tw-ease, ease);
3762
+ transition-duration: var(--tw-duration, 0s);
3763
+ transition-duration: var(--ga-duration-instant);
3764
+ transition-timing-function: var(--ga-easing-standard);
3765
+ &:hover {
3766
+ background-color: var(--ga-color-surface-action-hover-2);
3767
+ }
3768
+ &:focus, &:focus-visible {
3769
+ --tw-outline-style: none;
3770
+ outline-style: none;
3771
+ }
3772
+ }
3773
+ .ga-side-navigation__recent-item-icon {
3774
+ flex-shrink: 0;
3775
+ color: var(--ga-color-icon-primary);
3776
+ }
3777
+ .ga-side-navigation__recent-item-content {
3778
+ display: flex;
3779
+ min-width: calc(0.25rem * 0);
3780
+ flex-direction: column;
3781
+ }
3782
+ .ga-side-navigation__recent-item-label {
3783
+ overflow: hidden;
3784
+ text-overflow: ellipsis;
3785
+ white-space: nowrap;
3786
+ font-size: calc(
3787
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
3788
+ );
3789
+ line-height: var(--tw-leading, calc(
3790
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
3791
+ ));
3792
+ letter-spacing: var(--tw-tracking, calc(
3793
+ var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
3794
+ ));
3795
+ --tw-leading: calc(0.25rem * 6);
3796
+ line-height: calc(0.25rem * 6);
3797
+ --tw-font-weight: 500;
3798
+ font-weight: 500;
3799
+ color: var(--ga-color-text-action);
3800
+ }
3801
+ .ga-side-navigation__recent-item-description {
3802
+ overflow: hidden;
3803
+ text-overflow: ellipsis;
3804
+ white-space: nowrap;
3805
+ font-size: calc(
3806
+ var(--ga-text-xs-font-size) * var(--ga-base-scaling-factor, 1)
3807
+ );
3808
+ line-height: var(--tw-leading, calc(
3809
+ var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
3810
+ ));
3811
+ letter-spacing: var(--tw-tracking, calc(
3812
+ var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
3813
+ ));
3814
+ color: var(--ga-color-text-on-disabled);
3815
+ }
3816
+ .ga-side-navigation__search-results-title {
3817
+ padding-inline: calc(0.25rem * 6);
3818
+ font-size: calc(
3819
+ var(--ga-text-sm-font-size) * var(--ga-base-scaling-factor, 1)
3820
+ );
3821
+ line-height: var(--tw-leading, calc(
3822
+ var(--ga-text-sm-line-height) * var(--ga-base-scaling-factor, 1)
3823
+ ));
3824
+ letter-spacing: var(--tw-tracking, 0);
3825
+ --tw-leading: calc(0.25rem * 6);
3826
+ line-height: calc(0.25rem * 6);
3827
+ --tw-font-weight: 500;
3828
+ font-weight: 500;
3829
+ color: var(--ga-color-text-disable-selected);
3830
+ }
3831
+ .ga-side-navigation__search-results-item {
3832
+ position: relative;
3833
+ margin-inline: calc(0.25rem * 3);
3834
+ display: flex;
3835
+ cursor: pointer;
3836
+ flex-direction: row;
3837
+ align-items: center;
3838
+ gap: calc(0.25rem * 3);
3839
+ border-radius: var(--ga-radius);
3840
+ padding-inline: calc(0.25rem * 3);
3841
+ padding-block: calc(0.25rem * 2);
3842
+ text-align: left;
3843
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
3844
+ transition-timing-function: var(--tw-ease, ease);
3845
+ transition-duration: var(--tw-duration, 0s);
3846
+ transition-duration: var(--ga-duration-instant);
3847
+ transition-timing-function: var(--ga-easing-standard);
3848
+ &:hover {
3849
+ background-color: var(--ga-color-surface-action-hover-2);
3850
+ }
3851
+ &:focus-visible {
3852
+ --tw-outline-style: none;
3853
+ outline-style: none;
3854
+ &::after {
3855
+ position: absolute;
3856
+ inset: 3px;
3857
+ border-radius: var(--ga-radius);
3858
+ border-style: var(--tw-border-style);
3859
+ border-width: 2px;
3860
+ border-color: var(--ga-color-border-focus);
3861
+ --tw-content: '';
3862
+ content: var(--tw-content);
3863
+ }
3864
+ }
3865
+ }
3866
+ .ga-side-navigation__search-results-item-content {
3867
+ display: flex;
3868
+ min-width: calc(0.25rem * 0);
3869
+ flex: 1;
3870
+ flex-direction: column;
3871
+ }
3872
+ .ga-side-navigation__search-results-item-label {
3873
+ overflow: hidden;
3874
+ text-overflow: ellipsis;
3875
+ white-space: nowrap;
3876
+ font-size: calc(
3877
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
3878
+ );
3879
+ line-height: var(--tw-leading, calc(
3880
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
3881
+ ));
3882
+ letter-spacing: var(--tw-tracking, calc(
3883
+ var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
3884
+ ));
3885
+ --tw-leading: calc(0.25rem * 6);
3886
+ line-height: calc(0.25rem * 6);
3887
+ --tw-font-weight: 500;
3888
+ font-weight: 500;
3889
+ color: var(--ga-color-text-action);
3890
+ }
3891
+ .ga-side-navigation__search-results-item-description {
3892
+ overflow: hidden;
3893
+ text-overflow: ellipsis;
3894
+ white-space: nowrap;
3895
+ font-size: calc(
3896
+ var(--ga-text-xs-font-size) * var(--ga-base-scaling-factor, 1)
3897
+ );
3898
+ line-height: var(--tw-leading, calc(
3899
+ var(--ga-text-xs-line-height) * var(--ga-base-scaling-factor, 1)
3900
+ ));
3901
+ letter-spacing: var(--tw-tracking, calc(
3902
+ var(--ga-text-xs-letter-spacing) * var(--ga-base-scaling-factor, 1)
3903
+ ));
3904
+ color: var(--ga-color-text-on-disabled);
3905
+ }
3906
+ .ga-side-navigation__search-results-item-external {
3907
+ height: calc(0.25rem * 4);
3908
+ width: calc(0.25rem * 4);
3909
+ flex-shrink: 0;
3910
+ align-self: center;
3911
+ color: var(--ga-color-icon-secondary);
3912
+ }
3913
+ .ga-side-navigation__footer {
3914
+ position: relative;
3915
+ z-index: 10;
3916
+ flex-shrink: 0;
3917
+ border-top-style: var(--tw-border-style);
3918
+ border-top-width: 1px;
3919
+ border-color: var(--ga-color-border-tertiary);
3920
+ padding-top: calc(0.25rem * 1);
3921
+ }
3922
+ .ga-side-navigation__user {
3923
+ position: relative;
3924
+ display: flex;
3925
+ cursor: pointer;
3926
+ align-items: center;
3927
+ gap: calc(0.25rem * 3);
3928
+ border-radius: var(--ga-radius);
3929
+ padding-inline: calc(0.25rem * 4);
3930
+ padding-block: calc(0.25rem * 3);
3931
+ --tw-outline-style: none;
3932
+ outline-style: none;
3933
+ &:hover {
3934
+ background-color: var(--ga-color-surface-action-hover-2);
3935
+ }
3936
+ &:focus-visible {
3937
+ &::after {
3938
+ position: absolute;
3939
+ inset: 3px;
3940
+ border-radius: var(--ga-radius);
3941
+ border-style: var(--tw-border-style);
3942
+ border-width: 2px;
3943
+ border-color: var(--ga-color-border-focus);
3944
+ --tw-content: '';
3945
+ content: var(--tw-content);
3946
+ }
3947
+ }
3948
+ &.ga-side-navigation__user--active {
3949
+ background-color: var(--ga-color-surface-selected);
3950
+ }
3951
+ }
3952
+ .ga-side-navigation__user-avatar {
3953
+ height: calc(0.25rem * 10);
3954
+ width: calc(0.25rem * 10);
3955
+ flex-shrink: 0;
3956
+ border-radius: calc(infinity * 1px);
3957
+ }
3958
+ .ga-side-navigation__user-name {
3959
+ flex: 1;
3960
+ overflow: hidden;
3961
+ text-overflow: ellipsis;
3962
+ white-space: nowrap;
3963
+ font-size: calc(
3964
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
3965
+ );
3966
+ line-height: var(--tw-leading, calc(
3967
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
3968
+ ));
3969
+ letter-spacing: var(--tw-tracking, calc(
3970
+ var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
3971
+ ));
3972
+ --tw-font-weight: 500;
3973
+ font-weight: 500;
3974
+ color: var(--ga-color-text-body);
3975
+ }
3976
+ .ga-side-navigation__user-action {
3977
+ display: flex;
3978
+ flex-shrink: 0;
3979
+ cursor: pointer;
3980
+ align-items: center;
3981
+ color: var(--ga-color-icon-secondary);
3982
+ &:hover {
3983
+ color: var(--ga-color-icon-action);
3984
+ }
3985
+ }
3986
+ .ga-side-navigation__footer-dropdown {
3987
+ position: absolute;
3988
+ right: calc(0.25rem * 0);
3989
+ bottom: 100%;
3990
+ left: calc(0.25rem * 0);
3991
+ z-index: 10;
3992
+ display: flex;
3993
+ max-height: calc(0.25rem * 80);
3994
+ flex-direction: column;
3995
+ overflow-y: auto;
3996
+ border-radius: var(--ga-radius);
3997
+ background-color: var(--ga-color-surface-primary);
3998
+ padding: calc(0.25rem * 3);
3999
+ --tw-shadow: var(--ga-shadow-south);
4000
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
4001
+ }
4002
+ .ga-side-navigation__footer-dropdown-item {
4003
+ position: relative;
4004
+ display: flex;
4005
+ cursor: pointer;
4006
+ align-items: center;
4007
+ gap: calc(0.25rem * 3);
4008
+ border-radius: var(--ga-radius);
4009
+ padding-block: calc(0.25rem * 3);
4010
+ padding-right: calc(0.25rem * 2);
4011
+ padding-left: calc(0.25rem * 4);
4012
+ text-align: left;
4013
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
4014
+ transition-timing-function: var(--tw-ease, ease);
4015
+ transition-duration: var(--tw-duration, 0s);
4016
+ transition-duration: var(--ga-duration-instant);
4017
+ transition-timing-function: var(--ga-easing-standard);
4018
+ &:hover {
4019
+ background-color: var(--ga-color-surface-action-hover-2);
4020
+ }
4021
+ &:focus-visible {
4022
+ --tw-outline-style: none;
4023
+ outline-style: none;
4024
+ &::after {
4025
+ position: absolute;
4026
+ inset: 3px;
4027
+ border-radius: var(--ga-radius);
4028
+ border-style: var(--tw-border-style);
4029
+ border-width: 2px;
4030
+ border-color: var(--ga-color-border-focus);
4031
+ --tw-content: '';
4032
+ content: var(--tw-content);
4033
+ }
4034
+ }
4035
+ &:active {
4036
+ .ga-side-navigation__footer-dropdown-title {
4037
+ --tw-font-weight: 600;
4038
+ font-weight: 600;
4039
+ }
4040
+ }
4041
+ &.ga-side-navigation__footer-dropdown-item--disabled {
4042
+ cursor: not-allowed;
4043
+ &:hover {
4044
+ background-color: transparent;
4045
+ }
4046
+ .ga-side-navigation__footer-dropdown-icon {
4047
+ color: var(--ga-color-icon-disabled);
4048
+ }
4049
+ .ga-side-navigation__footer-dropdown-title {
4050
+ color: var(--ga-color-text-disabled);
4051
+ }
4052
+ }
4053
+ }
4054
+ .ga-side-navigation__footer-dropdown-icon {
4055
+ height: calc(0.25rem * 4);
4056
+ width: calc(0.25rem * 4);
4057
+ flex-shrink: 0;
4058
+ color: var(--ga-color-icon-primary);
4059
+ }
4060
+ .ga-side-navigation__footer-dropdown-title {
4061
+ min-width: calc(0.25rem * 0);
4062
+ flex: 1;
4063
+ overflow: hidden;
4064
+ text-overflow: ellipsis;
4065
+ white-space: nowrap;
4066
+ text-align: left;
4067
+ font-size: calc(
4068
+ var(--ga-text-md-font-size) * var(--ga-base-scaling-factor, 1)
4069
+ );
4070
+ line-height: var(--tw-leading, calc(
4071
+ var(--ga-text-md-line-height) * var(--ga-base-scaling-factor, 1)
4072
+ ));
4073
+ letter-spacing: var(--tw-tracking, calc(
4074
+ var(--ga-text-md-letter-spacing) * var(--ga-base-scaling-factor, 1)
4075
+ ));
4076
+ --tw-font-weight: 500;
4077
+ font-weight: 500;
4078
+ color: var(--ga-color-text-action);
4079
+ }
4080
+ }
3084
4081
  @property --tw-border-style {
3085
4082
  syntax: "*";
3086
4083
  inherits: false;