@lolmath/ui 9.1.1 → 9.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css CHANGED
@@ -181,17 +181,22 @@
181
181
  }
182
182
  }
183
183
  @layer lol {
184
- ._breadcrumbs_1c3hr_2 {
184
+ ._breadcrumbs_1gzfl_2 {
185
185
  display: flex;
186
186
  gap: 0.25rem;
187
+ /* An <ol>: the UA gives it block margins and a 40px marker gutter. */
188
+ margin: 0;
189
+ padding: 0;
190
+ list-style: none;
187
191
  }
188
192
 
189
- ._item_1c3hr_7 {
193
+ ._item_1gzfl_11 {
190
194
  display: flex;
191
195
  align-items: center;
192
196
  }
193
197
 
194
- ._link_1c3hr_12 {
198
+ ._link_1gzfl_16 {
199
+ text-decoration: none;
195
200
  font-family: var(--lol-font-family-beaufort);
196
201
  color: var(--lol-color-gold-300);
197
202
  position: relative;
@@ -206,16 +211,28 @@
206
211
  }
207
212
  }
208
213
 
209
- ._divider_1c3hr_27 {
214
+ ._divider_1gzfl_32 {
215
+ /* Off the text baseline, so the row's height is the glyph's, and never
216
+ wider than the row. */
217
+ display: block;
218
+ max-width: 100%;
210
219
  height: 11px;
211
220
  }
212
221
  }
213
222
  @layer lol {
214
- ._button_lhmqr_2 {
223
+ ._button_7nrx3_2 {
224
+ appearance: none;
225
+ margin: 0;
226
+ /* Presets that want horizontal padding add it back further down. Without a
227
+ zero here, `text` (which wants none) picks up the UA's `1px 6px`. */
228
+ padding: 0;
229
+ /* Also rendered on the <a> of ButtonLink, which the UA underlines. */
230
+ text-decoration: none;
231
+
215
232
  border-radius: 0px;
216
233
  border: 2px solid transparent;
217
234
 
218
- &._thin_lhmqr_6 {
235
+ &._thin_7nrx3_14 {
219
236
  border-width: 1px;
220
237
  }
221
238
 
@@ -246,17 +263,17 @@
246
263
  outline: none;
247
264
  }
248
265
 
249
- &._small_lhmqr_37 {
266
+ &._small_7nrx3_45 {
250
267
  font-size: var(--lol-font-size-sm);
251
268
  min-height: var(--lol-form-height-small);
252
269
  }
253
270
 
254
- &._medium_lhmqr_42 {
271
+ &._medium_7nrx3_50 {
255
272
  font-size: var(--lol-font-size-base);
256
273
  min-height: var(--lol-form-height-medium);
257
274
  }
258
275
 
259
- &._large_lhmqr_47 {
276
+ &._large_7nrx3_55 {
260
277
  font-size: var(--lol-font-size-base);
261
278
  min-height: var(--lol-form-height-large);
262
279
  }
@@ -266,14 +283,14 @@
266
283
  * `.button` and loses the border-radius and font-weight to whichever rule
267
284
  * is written last.
268
285
  */
269
- &._round_lhmqr_53,
270
- &._square_lhmqr_58 {
286
+ &._round_7nrx3_61,
287
+ &._square_7nrx3_66 {
271
288
  aspect-ratio: 1 / 1;
272
289
  padding: 0px;
273
290
  font-weight: 900;
274
291
  }
275
292
 
276
- &._round_lhmqr_53 {
293
+ &._round_7nrx3_61 {
277
294
  border-radius: 9999px;
278
295
  }
279
296
 
@@ -304,22 +321,22 @@
304
321
  * together by exactly one border width so their two gradient borders read as
305
322
  * a single seam instead of a double-thick one.
306
323
  */
307
- ._toggleButtonGroup_lhmqr_95 {
324
+ ._toggleButtonGroup_7nrx3_103 {
308
325
  display: inline-flex;
309
326
 
310
- & > ._button_lhmqr_2 + ._button_lhmqr_2 {
327
+ & > ._button_7nrx3_2 + ._button_7nrx3_2 {
311
328
  margin-left: -2px;
312
329
  }
313
330
 
314
331
  /* Must follow the rule above: thin buttons only need a 1px overlap. */
315
- & > ._thin_lhmqr_6 + ._thin_lhmqr_6 {
332
+ & > ._thin_7nrx3_14 + ._thin_7nrx3_14 {
316
333
  margin-left: -1px;
317
334
  }
318
335
 
319
336
  /* Whichever button is highlighted owns the seams next to it. */
320
- & > ._button_lhmqr_2:hover,
321
- & > ._button_lhmqr_2:focus-visible,
322
- & > ._button_lhmqr_2[data-selected] {
337
+ & > ._button_7nrx3_2:hover,
338
+ & > ._button_7nrx3_2:focus-visible,
339
+ & > ._button_7nrx3_2[data-selected] {
323
340
  position: relative;
324
341
  z-index: 1;
325
342
  }
@@ -329,48 +346,48 @@
329
346
  /* Equal widths keep the collapsed seams lined up. */
330
347
  align-items: stretch;
331
348
 
332
- & > ._button_lhmqr_2 + ._button_lhmqr_2 {
349
+ & > ._button_7nrx3_2 + ._button_7nrx3_2 {
333
350
  margin-left: 0;
334
351
  margin-top: -2px;
335
352
  }
336
353
 
337
- & > ._thin_lhmqr_6 + ._thin_lhmqr_6 {
354
+ & > ._thin_7nrx3_14 + ._thin_7nrx3_14 {
338
355
  margin-top: -1px;
339
356
  }
340
357
  }
341
358
  }
342
359
 
343
- ._primary_lhmqr_131,
344
- ._secondary_lhmqr_132,
345
- ._hextech_lhmqr_133,
346
- ._dimmed_lhmqr_134 {
347
- &:not(._square_lhmqr_58, ._round_lhmqr_53) {
348
- &._small_lhmqr_37 {
360
+ ._primary_7nrx3_139,
361
+ ._secondary_7nrx3_140,
362
+ ._hextech_7nrx3_141,
363
+ ._dimmed_7nrx3_142 {
364
+ &:not(._square_7nrx3_66, ._round_7nrx3_61) {
365
+ &._small_7nrx3_45 {
349
366
  padding: 0 0.5rem;
350
367
  }
351
368
 
352
- &._medium_lhmqr_42 {
369
+ &._medium_7nrx3_50 {
353
370
  padding: 0 1rem;
354
371
  }
355
372
 
356
- &._large_lhmqr_47 {
373
+ &._large_7nrx3_55 {
357
374
  padding: 0 1rem;
358
375
  }
359
376
  }
360
377
  }
361
378
 
362
- ._text_lhmqr_150 {
363
- &._round_lhmqr_53,
364
- &._square_lhmqr_58 {
379
+ ._text_7nrx3_158 {
380
+ &._round_7nrx3_61,
381
+ &._square_7nrx3_66 {
365
382
  &:hover {
366
383
  --lol-button-background-gradient: var(--lol-gradient-grey-300);
367
384
  --lol-button-border-gradient: var(--lol-gradient-transparent);
368
385
  }
369
386
  }
370
387
 
371
- &._round_lhmqr_53,
372
- &._square_lhmqr_58,
373
- &._normal_lhmqr_161 {
388
+ &._round_7nrx3_61,
389
+ &._square_7nrx3_66,
390
+ &._normal_7nrx3_169 {
374
391
  position: relative;
375
392
 
376
393
  &::after {
@@ -388,7 +405,7 @@
388
405
  }
389
406
  }
390
407
 
391
- ._hextech_lhmqr_133 {
408
+ ._hextech_7nrx3_141 {
392
409
  color: var(--lol-color-blue-100);
393
410
  --lol-button-border-gradient: var(--lol-gradient-hextech);
394
411
  --lol-button-background-gradient: var(--lol-gradient-grey-300);
@@ -413,17 +430,16 @@
413
430
  }
414
431
  }
415
432
 
416
- ._dimmed_lhmqr_134 {
433
+ ._dimmed_7nrx3_142 {
417
434
  --lol-button-background-gradient: var(--lol-gradient-hextech-black);
418
435
  --lol-button-border-gradient: var(--lol-gradient-grey-300);
419
436
 
420
- &._selected_lhmqr_208,
421
437
  &:focus-visible {
422
438
  --lol-button-border-gradient: var(--lol-gradient-gold);
423
439
  }
424
440
  }
425
441
 
426
- ._primary_lhmqr_131 {
442
+ ._primary_7nrx3_139 {
427
443
  --lol-button-border-gradient: var(--lol-gradient-gold);
428
444
  --lol-button-background-gradient: linear-gradient(
429
445
  to top,
@@ -451,36 +467,55 @@
451
467
  }
452
468
  }
453
469
 
454
- ._secondary_lhmqr_132 {
470
+ ._secondary_7nrx3_140 {
455
471
  --lol-button-border-gradient: var(--lol-gradient-gold);
456
472
  --lol-button-background-gradient: var(--lol-gradient-grey-300);
457
473
  }
458
474
 
459
- ._primary_lhmqr_131:hover,
460
- ._secondary_lhmqr_132:hover,
461
- ._dimmed_lhmqr_134:hover {
475
+ ._primary_7nrx3_139:hover,
476
+ ._secondary_7nrx3_140:hover,
477
+ ._dimmed_7nrx3_142:hover {
462
478
  --lol-button-border-gradient: var(--lol-gradient-gold-hover);
463
479
  }
464
480
 
465
- ._primary_lhmqr_131:active,
466
- ._secondary_lhmqr_132:active,
467
- ._dimmed_lhmqr_134:active {
481
+ ._primary_7nrx3_139:active,
482
+ ._secondary_7nrx3_140:active,
483
+ ._dimmed_7nrx3_142:active {
468
484
  --lol-button-border-gradient: var(--lol-gradient-gold-press);
469
485
  }
470
486
 
471
- ._primary_lhmqr_131:disabled,
472
- ._secondary_lhmqr_132:disabled,
473
- ._dimmed_lhmqr_134:disabled {
487
+ /*
488
+ * A selected toggle takes the hextech background from `.button`, so the
489
+ * dimmed border follows it there: a hextech body inside the resting grey
490
+ * frame reads as an unfinished button. Must stay after the gold `:hover`
491
+ * and `:active` rules above so the resting selected border wins, and
492
+ * before `:disabled` below so a disabled toggle still greys out.
493
+ */
494
+ ._dimmed_7nrx3_142[data-selected] {
495
+ --lol-button-border-gradient: var(--lol-gradient-hextech);
496
+
497
+ &:hover {
498
+ --lol-button-border-gradient: var(--lol-gradient-hextech-hover);
499
+ }
500
+
501
+ &:active {
502
+ --lol-button-border-gradient: var(--lol-gradient-hextech-press);
503
+ }
504
+ }
505
+
506
+ ._primary_7nrx3_139:disabled,
507
+ ._secondary_7nrx3_140:disabled,
508
+ ._dimmed_7nrx3_142:disabled {
474
509
  --lol-button-border-gradient: var(--lol-gradient-disabled);
475
510
  }
476
511
 
477
- ._primary_lhmqr_131:focus-visible,
478
- ._secondary_lhmqr_132:focus-visible {
512
+ ._primary_7nrx3_139:focus-visible,
513
+ ._secondary_7nrx3_140:focus-visible {
479
514
  outline-color: var(--lol-color-gold-400);
480
515
  }
481
516
  }
482
517
  @layer lol {
483
- ._checkbox_10zee_2 {
518
+ ._checkbox_1rldq_2 {
484
519
  font-family: var(--lol-font-family-spiegel);
485
520
  color: var(--lol-color-grey-100);
486
521
  display: flex;
@@ -500,13 +535,25 @@
500
535
  }
501
536
  }
502
537
 
503
- ._icon_10zee_22 {
538
+ ._icon_1rldq_22 {
539
+ /* Off the text baseline, so the box is the glyph. */
540
+ display: block;
541
+ max-width: 100%;
504
542
  width: 0.875rem;
505
543
  height: 0.875rem;
506
544
  }
507
545
  }
508
546
  @layer lol {
509
- ._disclosureButton_9s3bw_2 {
547
+ ._disclosureButton_1wmxg_2 {
548
+ /* A <button> we never paint: without this it falls back to the UA's
549
+ `buttonface` slab, which is grey under `color-scheme: dark`. */
550
+ appearance: none;
551
+ background: none;
552
+ border: 0;
553
+ margin: 0;
554
+ font: inherit;
555
+ letter-spacing: inherit;
556
+
510
557
  color: var(--lol-color-grey-100);
511
558
  font-family: var(--lol-font-family-beaufort);
512
559
 
@@ -524,7 +571,7 @@
524
571
  text-align: left;
525
572
  }
526
573
 
527
- ._icon_9s3bw_20 {
574
+ ._icon_1wmxg_29 {
528
575
  margin-left: 0.125rem;
529
576
  margin-right: 0.5rem;
530
577
  display: inline-block;
@@ -532,7 +579,7 @@
532
579
  font-size: var(--lol-font-size-sm);
533
580
  }
534
581
 
535
- ._disclosure_9s3bw_2 {
582
+ ._disclosure_1wmxg_2 {
536
583
  border-bottom: 1px solid var(--lol-color-gold-600);
537
584
 
538
585
  &:last-of-type {
@@ -540,7 +587,7 @@
540
587
  }
541
588
  }
542
589
 
543
- ._disclosurePanel_9s3bw_36 {
590
+ ._disclosurePanel_1wmxg_45 {
544
591
  color: var(--lol-color-grey-100);
545
592
  font-family: var(--lol-font-family-spiegel);
546
593
 
@@ -562,14 +609,17 @@
562
609
  }
563
610
  }
564
611
  @layer lol {
565
- ._divider_8g14c_2 {
612
+ ._divider_wpkyb_2 {
566
613
  height: 1px;
567
614
  flex-grow: 1;
568
615
  border: none;
616
+ /* An <hr>: the UA gives it 0.5em block margins and a grey `color`. */
617
+ margin: 0;
618
+ color: inherit;
569
619
  display: flex;
570
620
  }
571
621
 
572
- ._left_8g14c_9 {
622
+ ._left_wpkyb_12 {
573
623
  background-image: linear-gradient(
574
624
  to right,
575
625
  rgba(0, 0, 0, 0),
@@ -577,7 +627,7 @@
577
627
  );
578
628
  }
579
629
 
580
- ._center_8g14c_17 {
630
+ ._center_wpkyb_20 {
581
631
  background-image: linear-gradient(
582
632
  to right,
583
633
  rgba(0, 0, 0, 0),
@@ -586,7 +636,7 @@
586
636
  );
587
637
  }
588
638
 
589
- ._right_8g14c_26 {
639
+ ._right_wpkyb_29 {
590
640
  background-image: linear-gradient(
591
641
  to right,
592
642
  var(--lol-color-gold-600),
@@ -594,20 +644,20 @@
594
644
  );
595
645
  }
596
646
 
597
- ._block_8g14c_34 {
647
+ ._block_wpkyb_37 {
598
648
  width: 5px;
599
649
  height: 5px;
600
650
  border: 1px solid var(--lol-color-gold-600);
601
651
  rotate: 45deg;
602
652
  }
603
653
 
604
- ._wrapper_8g14c_41 {
654
+ ._wrapper_wpkyb_44 {
605
655
  display: flex;
606
656
  align-items: center;
607
657
  flex-grow: 1;
608
658
  }
609
659
 
610
- ._childrenWrapper_8g14c_47 {
660
+ ._childrenWrapper_wpkyb_50 {
611
661
  display: flex;
612
662
  align-items: center;
613
663
  gap: 2rem;
@@ -615,60 +665,62 @@
615
665
  }
616
666
  }
617
667
  @layer lol {
618
- ._heading_1ff83_2 {
668
+ ._heading_4cie6_2 {
669
+ /* Rendered as h1-h5, which the UA gives block margins scaled to the font. */
670
+ margin: 0;
619
671
  font-family: var(--lol-font-family-beaufort);
620
672
  scroll-margin-top: 5rem;
621
673
  text-transform: uppercase;
622
674
  }
623
675
 
624
- ._h1_1ff83_8 {
676
+ ._h1_4cie6_10 {
625
677
  font-size: var(--lol-font-size-h1);
626
678
  line-height: var(--lol-line-height-h1);
627
679
  letter-spacing: var(--lol-letter-spacing-h1);
628
680
  font-weight: var(--lol-font-weight-h1);
629
681
  }
630
682
 
631
- ._h2_1ff83_15 {
683
+ ._h2_4cie6_17 {
632
684
  font-size: var(--lol-font-size-h2);
633
685
  line-height: var(--lol-line-height-h2);
634
686
  letter-spacing: var(--lol-letter-spacing-h2);
635
687
  font-weight: var(--lol-font-weight-h2);
636
688
  }
637
689
 
638
- ._h3_1ff83_22 {
690
+ ._h3_4cie6_24 {
639
691
  font-size: var(--lol-font-size-h3);
640
692
  line-height: var(--lol-line-height-h3);
641
693
  letter-spacing: var(--lol-letter-spacing-h3);
642
694
  font-weight: var(--lol-font-weight-h3);
643
695
  }
644
696
 
645
- ._h4_1ff83_29 {
697
+ ._h4_4cie6_31 {
646
698
  font-size: var(--lol-font-size-h4);
647
699
  line-height: var(--lol-line-height-h4);
648
700
  letter-spacing: var(--lol-letter-spacing-h4);
649
701
  font-weight: var(--lol-font-weight-h4);
650
702
  }
651
703
 
652
- ._h5_1ff83_36 {
704
+ ._h5_4cie6_38 {
653
705
  font-size: var(--lol-font-size-h5);
654
706
  line-height: var(--lol-line-height-h5);
655
707
  letter-spacing: var(--lol-letter-spacing-h5);
656
708
  font-weight: var(--lol-font-weight-h5);
657
709
  }
658
710
 
659
- ._grey100_1ff83_43 {
711
+ ._grey100_4cie6_45 {
660
712
  color: var(--lol-color-grey-100);
661
713
  }
662
714
 
663
- ._gold100_1ff83_47 {
715
+ ._gold100_4cie6_49 {
664
716
  color: var(--lol-color-gold-100);
665
717
  }
666
718
 
667
- ._gold200_1ff83_51 {
719
+ ._gold200_4cie6_53 {
668
720
  color: var(--lol-color-gold-200);
669
721
  }
670
722
 
671
- ._gold400_1ff83_55 {
723
+ ._gold400_4cie6_57 {
672
724
  color: var(--lol-color-gold-400);
673
725
  }
674
726
  }
@@ -757,7 +809,7 @@
757
809
  }
758
810
  }
759
811
  @layer lol {
760
- ._overlay_1kg5a_2 {
812
+ ._overlay_cjo05_2 {
761
813
  background-color: color-mix(
762
814
  in srgb,
763
815
  var(--lol-color-hextech-black),
@@ -780,7 +832,7 @@
780
832
  backdrop-filter: blur(8px);
781
833
  }
782
834
 
783
- ._dialog_1kg5a_25 {
835
+ ._dialog_cjo05_25 {
784
836
  background:
785
837
  var(--lol-button-background-gradient) padding-box,
786
838
  var(--lol-button-border-gradient) border-box;
@@ -822,12 +874,14 @@
822
874
  }
823
875
  }
824
876
 
825
- ._modal_1kg5a_67 {
877
+ ._modal_cjo05_67 {
826
878
  width: 100%;
827
879
  max-width: 28rem;
828
880
  }
829
881
 
830
- ._dialogHeading_1kg5a_72 {
882
+ ._dialogHeading_cjo05_72 {
883
+ /* React aria renders an <h3>, which the UA gives block margins. */
884
+ margin: 0;
831
885
  color: var(--lol-color-gold-100);
832
886
  font-family: var(--lol-font-family-beaufort);
833
887
  text-transform: uppercase;
@@ -837,7 +891,7 @@
837
891
  line-height: var(--lol-line-height-h5);
838
892
  }
839
893
 
840
- ._dialogButtons_1kg5a_82 {
894
+ ._dialogButtons_cjo05_84 {
841
895
  justify-content: center;
842
896
  transform: translateY(2px);
843
897
  padding: 0 0.25rem;
@@ -847,18 +901,18 @@
847
901
  }
848
902
  }
849
903
  @layer lol {
850
- ._group_7wszc_2 {
904
+ ._group_1haju_2 {
851
905
  display: grid;
852
906
  grid-template-columns: auto 1fr auto;
853
907
  gap: 1px;
854
908
  padding: 1px;
855
909
  outline: none;
856
910
 
857
- &._normal_7wszc_9 {
911
+ &._normal_1haju_9 {
858
912
  background-image: var(--lol-gradient-gold);
859
913
  }
860
914
 
861
- &._dimmed_7wszc_13 {
915
+ &._dimmed_1haju_13 {
862
916
  background-image: var(--lol-gradient-grey-300);
863
917
  }
864
918
 
@@ -870,20 +924,23 @@
870
924
  background-image: var(--lol-gradient-gold-hover);
871
925
  }
872
926
 
873
- &._small_7wszc_25 {
927
+ &._small_1haju_25 {
874
928
  min-height: var(--lol-form-height-small);
875
929
  }
876
930
 
877
- &._medium_7wszc_29 {
931
+ &._medium_1haju_29 {
878
932
  min-height: var(--lol-form-height-medium);
879
933
  }
880
934
 
881
- &._large_7wszc_33 {
935
+ &._large_1haju_33 {
882
936
  min-height: var(--lol-form-height-large);
883
937
  }
884
938
  }
885
939
 
886
- ._input_7wszc_38 {
940
+ ._input_1haju_38 {
941
+ /* The group draws the border as its own 1px gradient padding. */
942
+ border: 0;
943
+ margin: 0;
887
944
  background-color: var(--lol-color-hextech-black);
888
945
  color: var(--lol-color-gold-100);
889
946
  font-family: var(--lol-font-family-spiegel);
@@ -898,12 +955,20 @@
898
955
  color: var(--lol-color-grey-100);
899
956
  }
900
957
 
901
- &._focus_7wszc_53 {
958
+ &._focus_1haju_56 {
902
959
  background-image: var(--lol-gradient-grey-focus);
903
960
  }
904
961
  }
905
962
 
906
- ._button_7wszc_58 {
963
+ ._button_1haju_61 {
964
+ /* A <button> we never paint: without this it falls back to the UA's
965
+ `buttonface` slab, which is grey under `color-scheme: dark`. */
966
+ appearance: none;
967
+ border: 0;
968
+ margin: 0;
969
+ font: inherit;
970
+ letter-spacing: inherit;
971
+
907
972
  color: var(--lol-color-gold-100);
908
973
  background-color: var(--lol-color-hextech-black);
909
974
  padding: 0 0.625rem;
@@ -915,7 +980,7 @@
915
980
  }
916
981
  }
917
982
  @layer lol {
918
- ._popover_6y5ml_2 {
983
+ ._popover_uemk0_2 {
919
984
  padding: 2px;
920
985
  box-shadow: 0 2px 4px 0 var(--lol-color-grey-300);
921
986
  border: 2px solid transparent;
@@ -925,49 +990,57 @@
925
990
  --lol-button-border-gradient: var(--lol-gradient-gold-press);
926
991
  --lol-button-background-gradient: var(--lol-gradient-grey-300);
927
992
 
928
- &._top_6y5ml_12 {
993
+ &._top_uemk0_12 {
929
994
  margin-bottom: 0.5rem;
930
995
  }
931
996
 
932
- &._bottom_6y5ml_16 {
997
+ &._bottom_uemk0_16 {
933
998
  margin-top: 0.5rem;
934
999
  }
935
1000
 
936
- &._left_6y5ml_20 {
1001
+ &._left_uemk0_20 {
937
1002
  margin-right: 0.5rem;
938
1003
  }
939
1004
 
940
- &._right_6y5ml_24 {
1005
+ &._right_uemk0_24 {
941
1006
  margin-left: 0.5rem;
942
1007
  }
943
1008
  }
944
1009
 
945
- ._arrow_6y5ml_29 {
946
- ._outer_6y5ml_30 {
1010
+ ._arrow_uemk0_29 {
1011
+ /*
1012
+ * React aria anchors the arrow's wrapper with `bottom: 100%`, so the
1013
+ * wrapper's box has to *be* the glyph. Left inline the svg sits on a text
1014
+ * baseline: the wrapper grows to a line-height and the arrow floats off the
1015
+ * popover by the difference.
1016
+ */
1017
+ display: block;
1018
+
1019
+ ._outer_uemk0_38 {
947
1020
  fill: var(--lol-color-gold-600);
948
1021
  }
949
1022
 
950
- ._inner_6y5ml_34 {
1023
+ ._inner_uemk0_42 {
951
1024
  fill: var(--lol-color-grey-300);
952
1025
  }
953
1026
 
954
- &._top_6y5ml_12 {
1027
+ &._top_uemk0_12 {
955
1028
  transform: translateX(-1.5px);
956
1029
  }
957
1030
 
958
- &._bottom_6y5ml_16 {
1031
+ &._bottom_uemk0_16 {
959
1032
  transform: translateX(-1.5px) rotate(180deg);
960
1033
 
961
- ._outer_6y5ml_30 {
1034
+ ._outer_uemk0_38 {
962
1035
  fill: var(--lol-color-gold-500);
963
1036
  }
964
1037
  }
965
1038
 
966
- &._left_6y5ml_20 {
1039
+ &._left_uemk0_20 {
967
1040
  transform: translateY(-2px) translateX(-5px) rotate(-90deg);
968
1041
  }
969
1042
 
970
- &._right_6y5ml_24 {
1043
+ &._right_uemk0_24 {
971
1044
  transform: translateY(-2px) translateX(5px) rotate(90deg);
972
1045
  }
973
1046
  }
@@ -1068,7 +1141,7 @@
1068
1141
  }
1069
1142
  }
1070
1143
  @layer lol {
1071
- ._searchField_7htjg_2 {
1144
+ ._searchField_tm8b9_2 {
1072
1145
  display: grid;
1073
1146
  grid-template-areas:
1074
1147
  "label label"
@@ -1080,7 +1153,7 @@
1080
1153
  color: var(--lol-color-gold-100);
1081
1154
  }
1082
1155
 
1083
- ._input_7htjg_14 {
1156
+ ._input_tm8b9_14 {
1084
1157
  background:
1085
1158
  url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAERElEQVR42uycz0tVQRTH54lamBakLUStQKhEW6V/gC2qhRgRqJURVJj9oBL7oWVBWFj0O/pd2EbJ3ARt2uW6tFUWZkhkiYQVSBZk6esc7rkgkXfm3rkzb957c+CL8Obcc+d+5vcPjESjUWZtdkuxCCwgC8gCsoAsIAvIArKArFlAASzVj/P46KuE+OgFuSvVAJKsqWWgclApaBkoDzSP0n+ARkCDoD5QD6gXNB1XNSiA5YP2graACjz85oAWgrBoN9JvH0GdoBugT4nWB2XThw2BmjhwZrMCenaIYmUnCqAq0ABoDyg9hHjpFAtjVsczIGyut0CPQDkK8ooxu+gdqfEGKAP0GFSvIc/19K6MeAGEpfkQVKGx5lfQO1PjAdB1UGUM+s9KerfRgLDT3OXDfxh0FrSWRqm5oCxQEWgdpb33EQ/fvUkloIifTft/ZtLZNLLkCILBIbsbNCVQaNUEa7FA7G+gFaAxFTNpmRp0WhDOE1AJ9RlTAv7T5FtMf3mGE8xW05oYluwOAb+roA2g7wHeMUEz8MsCvtsFa5s2QLtBaRwfnA81SK6nsP03UiwvS6M8GQEIn6kV6HN20gfKWpRiDXP8alWsDIIELKNFqJc1UxMJyzDWUYGFcZkJgFZz0j/QkiBs66bYXlZuAqBVnPQuRfs40wLgS00AtJyT3qNw3tYjmTctgHI56f0KAfVL5k0LoCxO+heFgMYk8xaz7Y6EtSCAeLPiHIX5XSSZNy2ARjnpxQoBlUjmTQugt5LzJBkrl8ybFkAvOenVivo2dxvEy/pMAMSbiyxlzslG2FZFsbXOwYIAesH4B3nnQJkh5jOTYnoZ5qnXBEA45e/g+ODezD1QJIQ8RigWb7+nQ8USJ2hfgSedkxyfGuZsdqVIwjlPsbxskvLETAGE1fm+gN8B5pxhZQVsVlgrGgV825mi83uZ0j0J+irgV0lrqBrB96WQ72vQZgH/cVCLSTNp1xDOPkFf7D9wAx6PdNpAa5hz/SWNlEe/Ydo78hXdY54P2qoKkMyxj2u3mb+zMVWGTfGSiKOuYx/X9jPnaCfWdhF0yMTVPI4geLr51ABIOOIdMXG74ydoPeiOAZBwQtlkGiC038y5moK1ScWm2S8fvm1hjWwqFpW4sV5EnfdkSE0YYy0BPfDxXCtNRYwDxKgG4UlnIVX5kQAxRujZQor1mTkHiO0+YpwixXSYFy0IPNTDvSI8NsJrwPkzFrQTNBMepO2UZ2z2a8C4/LhLsEQNL1qcCDLM67rrhx/6nCRrWKJ1FLNO8JkWKqTjpjQx1RalAeGmj2eOgc4kCyAXEi51RK/h4d2kN8kEyIWEM/lrAnC2MefmflIBciEdBF0JG06iAHIhNfxnsSoFJ5EAzVzRXwgLjs5hXqcdBv1hziZdp2ywRASE1hxWoIj95ybJ1QdZQBaQBWQBWUAWkDULyAKygPTYXwEGAArW2QJagQgvAAAAAElFTkSuQmCC") no-repeat 5px center,
1086
1159
  var(--lol-search-field-background-gradient) padding-box,
@@ -1117,20 +1190,30 @@
1117
1190
  --lol-search-field-background-gradient: var(--lol-gradient-grey-focus);
1118
1191
  }
1119
1192
 
1120
- &._small_7htjg_51 {
1193
+ &._small_tm8b9_51 {
1121
1194
  min-height: var(--lol-form-height-small);
1122
1195
  }
1123
1196
 
1124
- &._medium_7htjg_55 {
1197
+ &._medium_tm8b9_55 {
1125
1198
  min-height: var(--lol-form-height-medium);
1126
1199
  }
1127
1200
 
1128
- &._large_7htjg_59 {
1201
+ &._large_tm8b9_59 {
1129
1202
  min-height: var(--lol-form-height-large);
1130
1203
  }
1131
1204
  }
1132
1205
 
1133
- ._button_7htjg_64 {
1206
+ ._button_tm8b9_64 {
1207
+ /* A <button> we never paint: without this it falls back to the UA's
1208
+ `buttonface` slab, which is grey under `color-scheme: dark`. */
1209
+ appearance: none;
1210
+ background: none;
1211
+ border: 0;
1212
+ margin: 0;
1213
+ padding: 0;
1214
+ font: inherit;
1215
+ letter-spacing: inherit;
1216
+
1134
1217
  grid-area: button;
1135
1218
 
1136
1219
  font-size: 0.75rem;
@@ -1158,95 +1241,110 @@
1158
1241
  }
1159
1242
  }
1160
1243
  }
1161
- /* Base tag sets up CSS variables; variants (gold/hextech) define actual gradients */
1162
- ._tag_qypr1_2 {
1163
- background:
1164
- var(--lol-multiple-select-background-gradient) padding-box,
1165
- var(--lol-multiple-select-border-gradient) border-box;
1166
-
1167
- border: 2px solid transparent;
1168
- border-radius: 9999px;
1169
-
1170
- align-items: center;
1171
- display: grid;
1172
- grid-template-columns: 1fr auto;
1173
-
1174
- font-family: var(--lol-font-family-spiegel);
1175
- letter-spacing: var(--lol-letter-spacing-sm);
1176
- font-weight: var(--lol-font-weight-sm);
1177
- font-size: 0.75rem;
1178
- line-height: 1;
1179
- color: var(--lol-color-gold-300);
1180
- padding: 0 0.3rem 0 0.5rem;
1181
- }
1244
+ @layer lol {
1245
+ /* Base tag sets up CSS variables; variants (gold/hextech) define actual gradients */
1246
+ ._tag_baprz_3 {
1247
+ background:
1248
+ var(--lol-multiple-select-background-gradient) padding-box,
1249
+ var(--lol-multiple-select-border-gradient) border-box;
1182
1250
 
1183
- ._gold_qypr1_23 {
1184
- border-width: 1px;
1185
- --lol-multiple-select-border-gradient: var(--lol-gradient-gold);
1186
- --lol-multiple-select-background-gradient: var(--lol-gradient-grey-300);
1187
- color: var(--lol-color-gold-300);
1188
- }
1251
+ border: 2px solid transparent;
1252
+ border-radius: 9999px;
1189
1253
 
1190
- ._hextech_qypr1_30 {
1191
- border-width: 1px;
1192
- --lol-multiple-select-border-gradient: var(--lol-gradient-hextech);
1193
- --lol-multiple-select-background-gradient: var(--lol-gradient-grey-300);
1194
- color: var(--lol-color-blue-100);
1195
- }
1254
+ align-items: center;
1255
+ display: grid;
1256
+ grid-template-columns: 1fr auto;
1196
1257
 
1197
- ._grey_qypr1_37 {
1198
- border-width: 1px;
1199
- --lol-multiple-select-border-gradient: var(--lol-color-grey-100);
1200
- --lol-multiple-select-background-gradient: var(--lol-gradient-grey-300);
1201
- color: var(--lol-color-gold-100);
1202
- }
1258
+ font-family: var(--lol-font-family-spiegel);
1259
+ letter-spacing: var(--lol-letter-spacing-sm);
1260
+ font-weight: var(--lol-font-weight-sm);
1261
+ font-size: 0.75rem;
1262
+ line-height: 1;
1263
+ color: var(--lol-color-gold-300);
1264
+ padding: 0 0.3rem 0 0.5rem;
1265
+ }
1203
1266
 
1204
- ._text_qypr1_44 {
1205
- padding: 0.25rem 0;
1206
- }
1267
+ ._gold_baprz_24 {
1268
+ border-width: 1px;
1269
+ --lol-multiple-select-border-gradient: var(--lol-gradient-gold);
1270
+ --lol-multiple-select-background-gradient: var(--lol-gradient-grey-300);
1271
+ color: var(--lol-color-gold-300);
1272
+ }
1207
1273
 
1208
- ._remove_qypr1_48 {
1209
- mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAACKklEQVR42uzcvUoDQRQF4M0QBW0srHwICxttIygGRH0PsRAfwELsI/gkghYiiGATQVDwIawsUmihRbzjDyyLm2Qnc+eejefC6Taw+zGz88NkG/1+P2OVlyMBgQhEIAIRiEAEIhCLQAQiEIHQqhn6w97zU60edG5hEaoFNdjFymtecitpJXyOFckuVBcbgHMlWZJcSDYlNwlwLn0vkkxLTlBbUB7H1+wPUisRjq+OZB8RqIiTJUAq4mQaSE4RRxOpDCc6UgygswE4GkjDcPJIewhAh5K3Ea6LgTQqztdUTXKPAHQt2UqAVBWnLemivKS1kUxwYg/zWkhmOBoz6dhIpjhaS41YSOY4movVcZEgcDSBxkGCwdEGCkWCwUkBFIIEg5MKqCoSDE5KoFhISXFSA42LlBzHAigUyQTHCsjXq+SjwvVTkhmLG7UAqjLPyY9u55LVSQcKwTFFcjXBMUNyNcIxQXJgOL0KM+4kSA4Mp11xWaKO5MBwugFrN1UkB4YTusBVQ3KAOFBIDhQHBskB40AgOXAccyRXAxxTpBhAy1m6bdKqSMcIQKeSg4T7OaMiPUq2Ud5BnQFIGptdw5AeJGuSF6RR7C8kj7OR6ewEliF5nPUYOBrzoDzSL86d4nKmiBQVx1dT4aY90nv2fXhJE6eIdCTZiYnjqxH6v3nAk/b+8Hrpw6CdtLcolS8kNPjlhf/TgghEIAIRiEAEYhGIQAQiEIEINCH1KcAAQX7SgLqjwvQAAAAASUVORK5CYII=);
1210
- height: 1rem;
1211
- aspect-ratio: 1;
1212
- background-color: currentColor;
1213
- mask-size: contain;
1274
+ ._hextech_baprz_31 {
1275
+ border-width: 1px;
1276
+ --lol-multiple-select-border-gradient: var(--lol-gradient-hextech);
1277
+ --lol-multiple-select-background-gradient: var(--lol-gradient-grey-300);
1278
+ color: var(--lol-color-blue-100);
1279
+ }
1214
1280
 
1215
- &[data-hovered] {
1216
- background-color: var(--lol-color-gold-100);
1281
+ ._grey_baprz_38 {
1282
+ border-width: 1px;
1283
+ --lol-multiple-select-border-gradient: var(--lol-color-grey-100);
1284
+ --lol-multiple-select-background-gradient: var(--lol-gradient-grey-300);
1285
+ color: var(--lol-color-gold-100);
1217
1286
  }
1218
1287
 
1219
- &[data-pressed] {
1220
- background-color: var(--lol-color-grey-150);
1288
+ ._text_baprz_45 {
1289
+ padding: 0.25rem 0;
1221
1290
  }
1222
- }
1223
1291
 
1224
- ._tagGroup_qypr1_64 {
1225
- padding: 0.25rem;
1226
- display: flex;
1227
- justify-content: center;
1228
- }
1292
+ ._remove_baprz_49 {
1293
+ /* A <button> we never paint: without this it falls back to the UA's
1294
+ `buttonface` slab, which is grey under `color-scheme: dark`. The mask is
1295
+ filled with `currentColor`, so the inherited colour matters too. */
1296
+ appearance: none;
1297
+ border: 0;
1298
+ margin: 0;
1299
+ padding: 0;
1300
+ font: inherit;
1301
+ letter-spacing: inherit;
1302
+ color: inherit;
1229
1303
 
1230
- ._tagList_qypr1_70 {
1231
- display: flex;
1232
- flex-wrap: wrap;
1233
- gap: 0.25rem;
1234
- row-gap: 0.25rem;
1235
- }
1236
- ._popover_jlt01_1 {
1237
- width: 250px;
1238
- display: flex;
1239
- flex-direction: column;
1240
- }
1304
+ mask: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAACKklEQVR42uzcvUoDQRQF4M0QBW0srHwICxttIygGRH0PsRAfwELsI/gkghYiiGATQVDwIawsUmihRbzjDyyLm2Qnc+eejefC6Taw+zGz88NkG/1+P2OVlyMBgQhEIAIRiEAEIhCLQAQiEIHQqhn6w97zU60edG5hEaoFNdjFymtecitpJXyOFckuVBcbgHMlWZJcSDYlNwlwLn0vkkxLTlBbUB7H1+wPUisRjq+OZB8RqIiTJUAq4mQaSE4RRxOpDCc6UgygswE4GkjDcPJIewhAh5K3Ea6LgTQqztdUTXKPAHQt2UqAVBWnLemivKS1kUxwYg/zWkhmOBoz6dhIpjhaS41YSOY4movVcZEgcDSBxkGCwdEGCkWCwUkBFIIEg5MKqCoSDE5KoFhISXFSA42LlBzHAigUyQTHCsjXq+SjwvVTkhmLG7UAqjLPyY9u55LVSQcKwTFFcjXBMUNyNcIxQXJgOL0KM+4kSA4Mp11xWaKO5MBwugFrN1UkB4YTusBVQ3KAOFBIDhQHBskB40AgOXAccyRXAxxTpBhAy1m6bdKqSMcIQKeSg4T7OaMiPUq2Ud5BnQFIGptdw5AeJGuSF6RR7C8kj7OR6ewEliF5nPUYOBrzoDzSL86d4nKmiBQVx1dT4aY90nv2fXhJE6eIdCTZiYnjqxH6v3nAk/b+8Hrpw6CdtLcolS8kNPjlhf/TgghEIAIRiEAEYhGIQAQiEIEINCH1KcAAQX7SgLqjwvQAAAAASUVORK5CYII=);
1305
+ height: 1rem;
1306
+ aspect-ratio: 1;
1307
+ background-color: currentColor;
1308
+ mask-size: contain;
1241
1309
 
1242
- ._select_jlt01_7 {
1243
- border-right: none;
1244
- display: flex;
1245
- align-items: center;
1310
+ &[data-hovered] {
1311
+ background-color: var(--lol-color-gold-100);
1312
+ }
1313
+
1314
+ &[data-pressed] {
1315
+ background-color: var(--lol-color-grey-150);
1316
+ }
1317
+ }
1318
+
1319
+ ._tagGroup_baprz_76 {
1320
+ padding: 0.25rem;
1321
+ display: flex;
1322
+ justify-content: center;
1323
+ }
1324
+
1325
+ ._tagList_baprz_82 {
1326
+ display: flex;
1327
+ flex-wrap: wrap;
1328
+ gap: 0.25rem;
1329
+ row-gap: 0.25rem;
1330
+ }
1246
1331
  }
1332
+ @layer lol {
1333
+ ._popover_1bri3_2 {
1334
+ width: 250px;
1335
+ display: flex;
1336
+ flex-direction: column;
1337
+ }
1338
+
1339
+ ._select_1bri3_8 {
1340
+ border-right: none;
1341
+ display: flex;
1342
+ align-items: center;
1343
+ }
1247
1344
 
1248
- ._triggerContainer_jlt01_13 {
1249
- display: inline-flex;
1345
+ ._triggerContainer_1bri3_14 {
1346
+ display: inline-flex;
1347
+ }
1250
1348
  }
1251
1349
  @layer lol {
1252
1350
  ._text_1tvjr_2 {
@@ -1315,7 +1413,10 @@
1315
1413
  }
1316
1414
  }
1317
1415
  @layer lol {
1318
- ._button_zllmp_2 {
1416
+ ._button_y5tgp_2 {
1417
+ /* A <button>; the trigger's whole look is drawn below. */
1418
+ appearance: none;
1419
+ margin: 0;
1319
1420
  font-family: var(--lol-font-family-spiegel);
1320
1421
  display: inline-block;
1321
1422
  min-width: 200px;
@@ -1357,40 +1458,40 @@
1357
1458
  filter: grayscale(100%);
1358
1459
  }
1359
1460
 
1360
- &._small_zllmp_44 {
1461
+ &._small_y5tgp_47 {
1361
1462
  min-height: var(--lol-form-height-small);
1362
1463
  }
1363
1464
 
1364
- &._medium_zllmp_48 {
1465
+ &._medium_y5tgp_51 {
1365
1466
  min-height: var(--lol-form-height-medium);
1366
1467
  }
1367
1468
 
1368
- &._large_zllmp_52 {
1469
+ &._large_y5tgp_55 {
1369
1470
  min-height: var(--lol-form-height-large);
1370
1471
  }
1371
1472
  }
1372
1473
 
1373
- ._singleSelect_zllmp_57 {
1474
+ ._singleSelect_y5tgp_60 {
1374
1475
  background:
1375
1476
  var(--lol-select-image) no-repeat right 0.5rem center,
1376
1477
  var(--lol-select-background-gradient) padding-box,
1377
1478
  var(--lol-select-border-gradient) border-box;
1378
1479
  }
1379
1480
 
1380
- ._multiSelect_zllmp_64 {
1481
+ ._multiSelect_y5tgp_67 {
1381
1482
  background:
1382
1483
  var(--lol-select-background-gradient) padding-box,
1383
1484
  var(--lol-select-border-gradient) border-box;
1384
1485
  }
1385
1486
 
1386
- ._listBox_zllmp_70 {
1487
+ ._listBox_y5tgp_73 {
1387
1488
  background-color: var(--lol-color-hextech-black);
1388
1489
  border: 1px solid var(--lol-color-gold-600);
1389
1490
  outline: none;
1390
1491
  overflow-y: auto;
1391
1492
  }
1392
1493
 
1393
- ._item_zllmp_77 {
1494
+ ._item_y5tgp_80 {
1394
1495
  border-bottom: 1px solid var(--lol-color-grey-300);
1395
1496
  color: var(--lol-color-gold-300);
1396
1497
  font-size: var(--lol-font-size-sm);
@@ -1407,7 +1508,7 @@
1407
1508
  }
1408
1509
 
1409
1510
  &[data-pressed],
1410
- &._focus_zllmp_94 {
1511
+ &._focus_y5tgp_97 {
1411
1512
  background-color: color-mix(
1412
1513
  in srgb,
1413
1514
  var(--lol-color-grey-300),
@@ -1416,20 +1517,20 @@
1416
1517
  color: var(--lol-color-gold-600);
1417
1518
  }
1418
1519
 
1419
- &._selected_zllmp_103 {
1520
+ &._selected_y5tgp_106 {
1420
1521
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAALCAYAAABPhbxiAAAAsElEQVR42pTQXQoBURTA8ZmbdxuxAi/WgfLmQb4pYgMi36QUJUuxBIvw7FEi/qfOrds0NPfW7+We85+mG95v18DjhGjglPKMNqjibTyilUYTbE3CaIE65ujLZZJQlptYomsvJUyjp1+Oi1pYo+MOjA7GmEWiKdrY6c7HHcqrjpDRpQeGGslv7VGLRjZ8Ii9PjAFyyOKISlxkQzkvFDUu4Izyr8gNA41KuODwL5LzFWAAUJ8mTIVblvcAAAAASUVORK5CYII=);
1421
1522
  background-position: right 0.5rem center;
1422
1523
  background-repeat: no-repeat;
1423
1524
  }
1424
1525
  }
1425
1526
 
1426
- ._popover_zllmp_110 {
1527
+ ._popover_y5tgp_113 {
1427
1528
  width: var(--trigger-width);
1428
1529
  display: flex;
1429
1530
  flex-direction: column;
1430
1531
  }
1431
1532
 
1432
- ._emptyList_zllmp_116 {
1533
+ ._emptyList_y5tgp_119 {
1433
1534
  padding: 0.5rem 0.25rem;
1434
1535
  text-align: center;
1435
1536
  }
@@ -1514,13 +1615,16 @@
1514
1615
  }
1515
1616
  }
1516
1617
  @layer lol {
1517
- ._spinner_9di76_2 {
1618
+ ._spinner_15he7_2 {
1619
+ /* Off the text baseline, so the box is the glyph. */
1620
+ display: block;
1621
+ max-width: 100%;
1518
1622
  aspect-ratio: 1 / 1;
1519
1623
  width: 3rem;
1520
- animation: _spin_9di76_2 1s linear infinite;
1624
+ animation: _spin_15he7_2 1s linear infinite;
1521
1625
  }
1522
1626
 
1523
- @keyframes _spin_9di76_2 {
1627
+ @keyframes _spin_15he7_2 {
1524
1628
  from {
1525
1629
  transform: rotate(0deg);
1526
1630
  }
@@ -1531,7 +1635,7 @@
1531
1635
  }
1532
1636
  }
1533
1637
  @layer lol {
1534
- ._toast_15hp0_2 {
1638
+ ._toast_1a46s_2 {
1535
1639
  padding: 1rem;
1536
1640
  border: 2px solid transparent;
1537
1641
  background:
@@ -1545,23 +1649,23 @@
1545
1649
  gap: 6px;
1546
1650
  }
1547
1651
 
1548
- ._default_15hp0_16 {
1652
+ ._default_1a46s_16 {
1549
1653
  --lol-toast-background-gradient: var(--lol-gradient-hextech-black);
1550
1654
  --lol-toast-border-gradient: var(--lol-gradient-grey-300);
1551
1655
  --lol-toast-icon-color: var(--lol-color-gold-300);
1552
1656
  }
1553
1657
 
1554
- ._title_15hp0_22 {
1658
+ ._title_1a46s_22 {
1555
1659
  font-size: var(--lol-font-size-sm);
1556
1660
  }
1557
1661
 
1558
- ._content_15hp0_26 {
1662
+ ._content_1a46s_26 {
1559
1663
  display: flex;
1560
1664
  align-items: flex-start;
1561
1665
  gap: 0.75rem;
1562
1666
  }
1563
1667
 
1564
- ._icon_15hp0_32 {
1668
+ ._icon_1a46s_32 {
1565
1669
  display: flex;
1566
1670
  height: 20px;
1567
1671
  width: 20px;
@@ -1574,25 +1678,30 @@
1574
1678
  & > * {
1575
1679
  flex-shrink: 0;
1576
1680
  }
1681
+ /* Off the text baseline, so the box is the glyph. */
1682
+ & > img {
1683
+ display: block;
1684
+ max-width: 100%;
1685
+ }
1577
1686
  & svg {
1578
1687
  margin-left: var(--toast-svg-margin-start);
1579
1688
  margin-right: var(--toast-svg-margin-end);
1580
1689
  }
1581
1690
  }
1582
1691
 
1583
- ._content_15hp0_26 {
1692
+ ._content_1a46s_26 {
1584
1693
  display: flex;
1585
1694
  flex-direction: column;
1586
1695
  gap: 2px;
1587
1696
  }
1588
1697
 
1589
- ._actions_15hp0_57 {
1698
+ ._actions_1a46s_62 {
1590
1699
  display: flex;
1591
1700
  justify-content: flex-end;
1592
1701
  margin-top: 0.25rem;
1593
1702
  }
1594
1703
 
1595
- ._button_15hp0_63 {
1704
+ ._button_1a46s_68 {
1596
1705
  padding-left: 8px;
1597
1706
  padding-right: 8px;
1598
1707
  margin-left: var(--toast-button-margin-start);
@@ -1600,7 +1709,7 @@
1600
1709
  flex-shrink: 0;
1601
1710
  }
1602
1711
 
1603
- ._closeButton_15hp0_71 {
1712
+ ._closeButton_1a46s_76 {
1604
1713
  position: absolute;
1605
1714
  min-height: 1.33rem !important;
1606
1715
  left: var(--toast-close-button-start);
@@ -1616,7 +1725,7 @@
1616
1725
  z-index: 1;
1617
1726
  }
1618
1727
 
1619
- ._loader_15hp0_87 {
1728
+ ._loader_1a46s_92 {
1620
1729
  width: 20px;
1621
1730
  height: 20px;
1622
1731
  }
@@ -1702,12 +1811,12 @@
1702
1811
  }
1703
1812
  }
1704
1813
  @layer lol {
1705
- ._resizableContainer_1vns6_2 {
1814
+ ._resizableContainer_1iv6r_2 {
1706
1815
  overflow: auto;
1707
1816
  position: relative;
1708
1817
  }
1709
1818
 
1710
- ._table_1vns6_7 {
1819
+ ._table_1iv6r_7 {
1711
1820
  border-collapse: collapse;
1712
1821
  border-spacing: 0;
1713
1822
  width: 100%;
@@ -1725,7 +1834,7 @@
1725
1834
  }
1726
1835
  }
1727
1836
 
1728
- ._row_1vns6_25 {
1837
+ ._row_1iv6r_25 {
1729
1838
  color: var(--lol-color-grey-100);
1730
1839
  outline: none;
1731
1840
  transition: color 0.3s ease;
@@ -1784,7 +1893,14 @@
1784
1893
  }
1785
1894
  }
1786
1895
 
1787
- ._cell_1vns6_84 {
1896
+ ._cell_1iv6r_84 {
1897
+ /*
1898
+ * Collapsed borders are resolved between neighbours, and Chrome paints the
1899
+ * winning hairline once per edge when the losing side is styled `none`. The
1900
+ * header's 25%-opacity line then blends twice and comes out twice as
1901
+ * bright; a zero-width `solid` border on the cell below keeps it single.
1902
+ */
1903
+ border: 0 solid;
1788
1904
  padding: 0.375rem 0.75rem;
1789
1905
  vertical-align: middle;
1790
1906
  outline: none;
@@ -1795,7 +1911,7 @@
1795
1911
  }
1796
1912
  }
1797
1913
 
1798
- ._resizer_1vns6_95 {
1914
+ ._resizer_1iv6r_102 {
1799
1915
  position: absolute;
1800
1916
  inset-block: 0;
1801
1917
  inset-inline-end: 0;
@@ -1827,7 +1943,7 @@
1827
1943
  }
1828
1944
 
1829
1945
  /* Fixed footprint so toggling the sort direction never shifts the header. */
1830
- ._sortIndicator_1vns6_127 {
1946
+ ._sortIndicator_1iv6r_134 {
1831
1947
  display: inline-block;
1832
1948
  vertical-align: middle;
1833
1949
  width: 0.5rem;
@@ -1851,7 +1967,7 @@
1851
1967
  }
1852
1968
  }
1853
1969
 
1854
- ._column_1vns6_151 {
1970
+ ._column_1iv6r_158 {
1855
1971
  position: relative;
1856
1972
  font-family: var(--lol-font-family-beaufort);
1857
1973
  color: var(--lol-color-gold-100);
@@ -1887,15 +2003,15 @@
1887
2003
  color: var(--lol-color-gold-500);
1888
2004
  }
1889
2005
 
1890
- &[data-hovered] ._sortIndicator_1vns6_127 {
2006
+ &[data-hovered] ._sortIndicator_1iv6r_134 {
1891
2007
  opacity: 0.5;
1892
2008
  }
1893
2009
 
1894
- &[data-sort-direction] ._sortIndicator_1vns6_127 {
2010
+ &[data-sort-direction] ._sortIndicator_1iv6r_134 {
1895
2011
  opacity: 1;
1896
2012
  }
1897
2013
 
1898
- &[data-sort-direction="descending"] ._sortIndicator_1vns6_127::after {
2014
+ &[data-sort-direction="descending"] ._sortIndicator_1iv6r_134::after {
1899
2015
  border-width: 0.375rem 0.25rem 0;
1900
2016
  border-top-color: currentColor;
1901
2017
  border-bottom-color: transparent;
@@ -1907,28 +2023,34 @@
1907
2023
  }
1908
2024
  }
1909
2025
 
1910
- ._footer_1vns6_207 {
2026
+ ._footer_1iv6r_214 {
1911
2027
  color: var(--lol-color-gold-300);
1912
2028
 
1913
- & ._cell_1vns6_84 {
2029
+ & ._cell_1iv6r_84 {
1914
2030
  border-top: 1px solid rgb(from var(--lol-color-grey-100) r g b / 0.25);
1915
2031
  }
1916
2032
  }
1917
2033
 
1918
- ._empty_1vns6_215 {
2034
+ ._empty_1iv6r_222 {
1919
2035
  padding: 1rem 0.75rem;
1920
2036
  text-align: center;
1921
2037
  }
1922
2038
 
1923
- ._start_1vns6_220 {
2039
+ /* React aria renders the empty state in a row it builds itself, so that cell
2040
+ never gets `.cell` and keeps the UA's 1px padding. */
2041
+ ._table_1iv6r_7 [data-empty] > tr > td {
2042
+ padding: 0;
2043
+ }
2044
+
2045
+ ._start_1iv6r_233 {
1924
2046
  text-align: start;
1925
2047
  }
1926
2048
 
1927
- ._center_1vns6_224 {
2049
+ ._center_1iv6r_237 {
1928
2050
  text-align: center;
1929
2051
  }
1930
2052
 
1931
- ._end_1vns6_228 {
2053
+ ._end_1iv6r_241 {
1932
2054
  text-align: end;
1933
2055
  }
1934
2056
  }
@@ -1996,7 +2118,7 @@
1996
2118
  }
1997
2119
  }
1998
2120
  @layer lol {
1999
- ._textField_cjv2r_2 {
2121
+ ._textField_1dbgw_2 {
2000
2122
  background:
2001
2123
  var(--lol-input-background-gradient) padding-box,
2002
2124
  var(--lol-input-border-gradient) border-box;
@@ -2032,26 +2154,29 @@
2032
2154
  --lol-input-background-gradient: var(--lol-gradient-grey-focus);
2033
2155
  }
2034
2156
 
2035
- &._small_cjv2r_38 {
2157
+ &._small_1dbgw_38 {
2036
2158
  min-height: var(--lol-form-height-small);
2037
2159
  }
2038
2160
 
2039
- &._medium_cjv2r_42 {
2161
+ &._medium_1dbgw_42 {
2040
2162
  min-height: var(--lol-form-height-medium);
2041
2163
  }
2042
2164
 
2043
- &._large_cjv2r_46 {
2165
+ &._large_1dbgw_46 {
2044
2166
  min-height: var(--lol-form-height-large);
2045
2167
  }
2046
2168
 
2047
- &._textArea_cjv2r_50 {
2169
+ &._textArea_1dbgw_50 {
2048
2170
  padding-top: 0.5rem;
2049
2171
  padding-bottom: 0.5rem;
2172
+ /* The UA lets a textarea be resized in both axes, which breaks the
2173
+ field's layout; only the height is safe to drag. */
2174
+ resize: vertical;
2050
2175
  }
2051
2176
  }
2052
2177
  }
2053
2178
  @layer lol {
2054
- ._toolbar_pv0cj_2 {
2179
+ ._toolbar_1j7x4_2 {
2055
2180
  display: flex;
2056
2181
  align-items: center;
2057
2182
  gap: 0.5rem;
@@ -2066,9 +2191,12 @@
2066
2191
  }
2067
2192
  }
2068
2193
 
2069
- ._separator_pv0cj_17 {
2194
+ ._separator_1j7x4_17 {
2070
2195
  border: none;
2196
+ /* An <hr> when horizontal: the UA gives it block margins and a grey
2197
+ `color`. */
2071
2198
  margin: 0;
2199
+ color: inherit;
2072
2200
  flex: none;
2073
2201
  align-self: stretch;
2074
2202
  height: 1px;
@@ -2093,7 +2221,7 @@
2093
2221
  }
2094
2222
  }
2095
2223
  @layer lol {
2096
- ._tree_1jyu5_2 {
2224
+ ._tree_17ans_2 {
2097
2225
  --lol-tree-indent: 1.125rem;
2098
2226
 
2099
2227
  box-sizing: border-box;
@@ -2112,7 +2240,7 @@
2112
2240
  }
2113
2241
  }
2114
2242
 
2115
- ._item_1jyu5_21 {
2243
+ ._item_17ans_21 {
2116
2244
  display: flex;
2117
2245
  align-items: center;
2118
2246
  gap: 0.375rem;
@@ -2195,16 +2323,24 @@
2195
2323
 
2196
2324
  /* Top-level items are separated by the client's faint gold hairline. The
2197
2325
  sibling combinator keeps it off the first row, whichever level follows. */
2198
- ._item_1jyu5_21 + ._item_1jyu5_21[data-level="1"] {
2326
+ ._item_17ans_21 + ._item_17ans_21[data-level="1"] {
2199
2327
  border-top: 1px solid var(--lol-color-gold-600);
2200
2328
  }
2201
2329
 
2202
- ._chevron_1jyu5_108 {
2330
+ ._chevron_17ans_108 {
2331
+ /* A <button> we never paint: without this it falls back to the UA's
2332
+ `buttonface` slab, which is grey under `color-scheme: dark`. */
2333
+ appearance: none;
2334
+ border: 0;
2335
+ margin: 0;
2336
+ padding: 0;
2337
+ font: inherit;
2338
+ letter-spacing: inherit;
2339
+ color: inherit;
2340
+
2203
2341
  flex: none;
2204
2342
  width: 0.5rem;
2205
2343
  height: 0.75rem;
2206
- padding: 0;
2207
- border: none;
2208
2344
  outline: none;
2209
2345
  cursor: pointer;
2210
2346
 
@@ -2222,27 +2358,27 @@
2222
2358
  }
2223
2359
  }
2224
2360
 
2225
- ._chevronSpacer_1jyu5_131 {
2361
+ ._chevronSpacer_17ans_139 {
2226
2362
  flex: none;
2227
2363
  width: 0.5rem;
2228
2364
  }
2229
2365
 
2230
- ._item_1jyu5_21[data-expanded] ._chevron_1jyu5_108 {
2366
+ ._item_17ans_21[data-expanded] ._chevron_17ans_108 {
2231
2367
  rotate: 90deg;
2232
2368
  }
2233
2369
 
2234
- ._item_1jyu5_21[data-hovered] ._chevron_1jyu5_108,
2235
- ._chevron_1jyu5_108[data-hovered],
2236
- ._chevron_1jyu5_108[data-focus-visible] {
2370
+ ._item_17ans_21[data-hovered] ._chevron_17ans_108,
2371
+ ._chevron_17ans_108[data-hovered],
2372
+ ._chevron_17ans_108[data-focus-visible] {
2237
2373
  --lol-tree-chevron: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAoCAYAAADg+OpoAAABGElEQVR42r3WO47CMBCA4T+jaCtuQLEcZE+x3IOOxxVIRcM1tlvtPTgBNFQIQUu1TSxFVpw44xlGiiI5o/nk0dhK9bie6IkVMAe2GEWdQA5A1T4bC0gGEIA10FhDMYIlJiOIGSbAZ1ukGsktwgS4AEvglZGvxkLrfoFvT6w7DK5YPN5umPSsuWCSWDfHZOCbKSYjBcwwyShggknm0BRjMuEoFGEy8YCrMVFcWyqsVl7GAfsBPjIw1Y5CPDN3BXDTQl/AHzDLyN0CjbwD0bROhUyF1MgUqAjJhYqRHMgEGYPMkCHIFElB5kgf5ILEkBvShVyRAC28kQCdgaMn0m3dDth7IfEwpLBipG+8Y8wESf0z7Nr33QoB+AdPzF+bRdCP8QAAAABJRU5ErkJggg==");
2238
2374
  }
2239
2375
 
2240
- ._item_1jyu5_21[data-disabled] ._chevron_1jyu5_108 {
2376
+ ._item_17ans_21[data-disabled] ._chevron_17ans_108 {
2241
2377
  cursor: default;
2242
2378
  filter: grayscale(100%);
2243
2379
  }
2244
2380
 
2245
- ._label_1jyu5_151 {
2381
+ ._label_17ans_159 {
2246
2382
  flex: 1;
2247
2383
  min-width: 0;
2248
2384
  overflow: hidden;
@@ -2250,18 +2386,18 @@
2250
2386
  text-overflow: ellipsis;
2251
2387
  }
2252
2388
 
2253
- ._empty_1jyu5_159 {
2389
+ ._empty_17ans_167 {
2254
2390
  padding: 1rem 0.75rem;
2255
2391
  text-align: center;
2256
2392
  }
2257
2393
 
2258
- ._loadMore_1jyu5_164 {
2394
+ ._loadMore_17ans_172 {
2259
2395
  display: flex;
2260
2396
  justify-content: center;
2261
2397
  padding: 0.5rem;
2262
2398
  }
2263
2399
 
2264
- ._spinner_1jyu5_170 {
2400
+ ._spinner_17ans_178 {
2265
2401
  width: 1.5rem;
2266
2402
  }
2267
2403
  }