@spectrum-web-components/styles 0.41.1 → 0.41.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/express/spectrum-core-global.css +127 -244
- package/express/spectrum-scale-large.css +2 -2
- package/express/spectrum-scale-medium.css +2 -2
- package/express/spectrum-theme-dark.css +19 -50
- package/express/spectrum-theme-light.css +19 -50
- package/package.json +6 -6
- package/spectrum-core-global.css +129 -251
- package/spectrum-scale-large.css +2 -2
- package/spectrum-scale-medium.css +2 -2
- package/spectrum-theme-dark.css +14 -25
- package/spectrum-theme-darkest.css +14 -24
- package/spectrum-theme-light.css +14 -24
- package/spectrum-theme-lightest.css +14 -14
- package/src/spectrum-base.css.dev.js +1 -5
- package/src/spectrum-base.css.dev.js.map +2 -2
- package/src/spectrum-base.css.js +1 -5
- package/src/spectrum-base.css.js.map +2 -2
- package/src/spectrum-body.css +59 -35
- package/src/spectrum-body.css.dev.js +1 -71
- package/src/spectrum-body.css.dev.js.map +2 -2
- package/src/spectrum-body.css.js +1 -71
- package/src/spectrum-body.css.js.map +2 -2
- package/src/spectrum-code.css +42 -27
- package/src/spectrum-code.css.dev.js +1 -37
- package/src/spectrum-code.css.dev.js.map +2 -2
- package/src/spectrum-code.css.js +1 -37
- package/src/spectrum-code.css.js.map +2 -2
- package/src/spectrum-detail.css +86 -55
- package/src/spectrum-detail.css.dev.js +1 -119
- package/src/spectrum-detail.css.dev.js.map +2 -2
- package/src/spectrum-detail.css.js +1 -119
- package/src/spectrum-detail.css.js.map +2 -2
- package/src/spectrum-heading.css +146 -99
- package/src/spectrum-heading.css.dev.js +1 -169
- package/src/spectrum-heading.css.dev.js.map +2 -2
- package/src/spectrum-heading.css.js +1 -169
- package/src/spectrum-heading.css.js.map +2 -2
- package/src/spectrum-lang.css +146 -116
- package/src/spectrum-lang.css.dev.js +1 -137
- package/src/spectrum-lang.css.dev.js.map +2 -2
- package/src/spectrum-lang.css.js +1 -137
- package/src/spectrum-lang.css.js.map +2 -2
- package/src/spectrum-typography.css +11 -8
- package/src/spectrum-typography.css.dev.js +1 -9
- package/src/spectrum-typography.css.dev.js.map +2 -2
- package/src/spectrum-typography.css.js +1 -9
- package/src/spectrum-typography.css.js.map +2 -2
- package/tokens/global-vars.css +12 -0
- package/tokens/large-vars.css +0 -12
- package/tokens/medium-vars.css +0 -12
- package/tokens/spectrum/global-vars.css +2 -0
- package/tokens/spectrum/large-vars.css +0 -2
- package/tokens/spectrum/medium-vars.css +0 -2
- package/typography.css +335 -240
|
@@ -1,32 +1,25 @@
|
|
|
1
|
-
:
|
|
2
|
-
:
|
|
3
|
-
--spectrum-global-animation-linear: cubic-bezier(
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
--spectrum-global-animation-duration-
|
|
10
|
-
--spectrum-global-animation-duration-
|
|
11
|
-
--spectrum-global-animation-duration-
|
|
12
|
-
--spectrum-global-animation-duration-
|
|
13
|
-
--spectrum-global-animation-duration-
|
|
14
|
-
--spectrum-global-animation-duration-
|
|
15
|
-
--spectrum-global-animation-duration-
|
|
16
|
-
--spectrum-global-animation-duration-
|
|
17
|
-
--spectrum-global-animation-duration-800: 400ms;
|
|
18
|
-
--spectrum-global-animation-duration-900: 450ms;
|
|
19
|
-
--spectrum-global-animation-duration-1000: 500ms;
|
|
20
|
-
--spectrum-global-animation-duration-2000: 1000ms;
|
|
21
|
-
--spectrum-global-animation-duration-4000: 2000ms;
|
|
1
|
+
:root,
|
|
2
|
+
:host {
|
|
3
|
+
--spectrum-global-animation-linear: cubic-bezier(0, 0, 1, 1);
|
|
4
|
+
--spectrum-global-animation-duration-0: 0s;
|
|
5
|
+
--spectrum-global-animation-duration-100: 0.13s;
|
|
6
|
+
--spectrum-global-animation-duration-200: 0.16s;
|
|
7
|
+
--spectrum-global-animation-duration-300: 0.19s;
|
|
8
|
+
--spectrum-global-animation-duration-400: 0.22s;
|
|
9
|
+
--spectrum-global-animation-duration-500: 0.25s;
|
|
10
|
+
--spectrum-global-animation-duration-600: 0.3s;
|
|
11
|
+
--spectrum-global-animation-duration-700: 0.35s;
|
|
12
|
+
--spectrum-global-animation-duration-800: 0.4s;
|
|
13
|
+
--spectrum-global-animation-duration-900: 0.45s;
|
|
14
|
+
--spectrum-global-animation-duration-1000: 0.5s;
|
|
15
|
+
--spectrum-global-animation-duration-2000: 1s;
|
|
16
|
+
--spectrum-global-animation-duration-4000: 2s;
|
|
22
17
|
--spectrum-global-animation-ease-in-out: cubic-bezier(0.45, 0, 0.4, 1);
|
|
23
18
|
--spectrum-global-animation-ease-in: cubic-bezier(0.5, 0, 1, 1);
|
|
24
19
|
--spectrum-global-animation-ease-out: cubic-bezier(0, 0, 0.4, 1);
|
|
25
20
|
--spectrum-global-animation-ease-linear: cubic-bezier(0, 0, 1, 1);
|
|
26
|
-
|
|
27
|
-
/* spectrum-colorGlobals.css */
|
|
28
21
|
--spectrum-global-color-status: Verified;
|
|
29
|
-
--spectrum-global-color-version: 5.1
|
|
22
|
+
--spectrum-global-color-version: 5.1;
|
|
30
23
|
--spectrum-global-color-static-black-rgb: 0, 0, 0;
|
|
31
24
|
--spectrum-global-color-static-black: rgb(
|
|
32
25
|
var(--spectrum-global-color-static-black-rgb)
|
|
@@ -375,59 +368,24 @@
|
|
|
375
368
|
--spectrum-global-color-static-magenta-800: rgb(
|
|
376
369
|
var(--spectrum-global-color-static-magenta-800-rgb)
|
|
377
370
|
);
|
|
378
|
-
--spectrum-global-color-static-transparent-white-200:
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
--spectrum-global-color-static-transparent-white-
|
|
385
|
-
0,
|
|
386
|
-
0%,
|
|
387
|
-
100%,
|
|
388
|
-
0.25
|
|
389
|
-
);
|
|
390
|
-
--spectrum-global-color-static-transparent-white-400: hsla(
|
|
391
|
-
0,
|
|
392
|
-
0%,
|
|
393
|
-
100%,
|
|
394
|
-
0.4
|
|
395
|
-
);
|
|
396
|
-
--spectrum-global-color-static-transparent-white-500: hsla(
|
|
397
|
-
0,
|
|
398
|
-
0%,
|
|
399
|
-
100%,
|
|
400
|
-
0.55
|
|
401
|
-
);
|
|
402
|
-
--spectrum-global-color-static-transparent-white-600: hsla(
|
|
403
|
-
0,
|
|
404
|
-
0%,
|
|
405
|
-
100%,
|
|
406
|
-
0.7
|
|
407
|
-
);
|
|
408
|
-
--spectrum-global-color-static-transparent-white-700: hsla(
|
|
409
|
-
0,
|
|
410
|
-
0%,
|
|
411
|
-
100%,
|
|
412
|
-
0.8
|
|
413
|
-
);
|
|
414
|
-
--spectrum-global-color-static-transparent-white-800: hsla(
|
|
415
|
-
0,
|
|
416
|
-
0%,
|
|
417
|
-
100%,
|
|
418
|
-
0.9
|
|
419
|
-
);
|
|
371
|
+
--spectrum-global-color-static-transparent-white-200: #ffffff1a;
|
|
372
|
+
--spectrum-global-color-static-transparent-white-300: #ffffff40;
|
|
373
|
+
--spectrum-global-color-static-transparent-white-400: #fff6;
|
|
374
|
+
--spectrum-global-color-static-transparent-white-500: #ffffff8c;
|
|
375
|
+
--spectrum-global-color-static-transparent-white-600: #ffffffb3;
|
|
376
|
+
--spectrum-global-color-static-transparent-white-700: #fffc;
|
|
377
|
+
--spectrum-global-color-static-transparent-white-800: #ffffffe6;
|
|
420
378
|
--spectrum-global-color-static-transparent-white-900-rgb: 255, 255, 255;
|
|
421
379
|
--spectrum-global-color-static-transparent-white-900: rgb(
|
|
422
380
|
var(--spectrum-global-color-static-transparent-white-900-rgb)
|
|
423
381
|
);
|
|
424
|
-
--spectrum-global-color-static-transparent-black-200:
|
|
425
|
-
--spectrum-global-color-static-transparent-black-300:
|
|
426
|
-
--spectrum-global-color-static-transparent-black-400:
|
|
427
|
-
--spectrum-global-color-static-transparent-black-500:
|
|
428
|
-
--spectrum-global-color-static-transparent-black-600:
|
|
429
|
-
--spectrum-global-color-static-transparent-black-700:
|
|
430
|
-
--spectrum-global-color-static-transparent-black-800:
|
|
382
|
+
--spectrum-global-color-static-transparent-black-200: #0000001a;
|
|
383
|
+
--spectrum-global-color-static-transparent-black-300: #00000040;
|
|
384
|
+
--spectrum-global-color-static-transparent-black-400: #0006;
|
|
385
|
+
--spectrum-global-color-static-transparent-black-500: #0000008c;
|
|
386
|
+
--spectrum-global-color-static-transparent-black-600: #000000b3;
|
|
387
|
+
--spectrum-global-color-static-transparent-black-700: #000c;
|
|
388
|
+
--spectrum-global-color-static-transparent-black-800: #000000e6;
|
|
431
389
|
--spectrum-global-color-static-transparent-black-900-rgb: 0, 0, 0;
|
|
432
390
|
--spectrum-global-color-static-transparent-black-900: rgb(
|
|
433
391
|
var(--spectrum-global-color-static-transparent-black-900-rgb)
|
|
@@ -450,8 +408,6 @@
|
|
|
450
408
|
--spectrum-global-color-diverging-red-blue: #4a001e, #731331, #9f2945,
|
|
451
409
|
#cc415a, #e06e85, #ed9ab0, #f8c3d9, #faf0ff, #c6d0f2, #92b2de, #5d94cb,
|
|
452
410
|
#2f74b3, #265191, #163670, #0b194c;
|
|
453
|
-
|
|
454
|
-
/* spectrum-colorSemantics.css */
|
|
455
411
|
--spectrum-semantic-cta-background-color-default: var(
|
|
456
412
|
--spectrum-global-color-static-indigo-600
|
|
457
413
|
);
|
|
@@ -696,8 +652,6 @@
|
|
|
696
652
|
--spectrum-semantic-presence-color-8: var(
|
|
697
653
|
--spectrum-global-color-static-fuchsia-600
|
|
698
654
|
);
|
|
699
|
-
|
|
700
|
-
/* spectrum-dimensionGlobals.css */
|
|
701
655
|
--spectrum-global-dimension-static-percent-50: 50%;
|
|
702
656
|
--spectrum-global-dimension-static-percent-70: 70%;
|
|
703
657
|
--spectrum-global-dimension-static-percent-100: 100%;
|
|
@@ -769,8 +723,6 @@
|
|
|
769
723
|
--spectrum-global-dimension-static-font-size-800: 32px;
|
|
770
724
|
--spectrum-global-dimension-static-font-size-900: 36px;
|
|
771
725
|
--spectrum-global-dimension-static-font-size-1000: 40px;
|
|
772
|
-
|
|
773
|
-
/* spectrum-fontGlobals.css */
|
|
774
726
|
--spectrum-global-font-family-base: adobe-clean, 'Source Sans Pro',
|
|
775
727
|
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu,
|
|
776
728
|
'Trebuchet MS', 'Lucida Grande', sans-serif;
|
|
@@ -818,8 +770,87 @@
|
|
|
818
770
|
source-han-traditional, 'MingLiu', 'Heiti TC Light', adobe-clean,
|
|
819
771
|
'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
|
820
772
|
Ubuntu, 'Trebuchet MS', 'Lucida Grande', sans-serif;
|
|
821
|
-
|
|
822
|
-
|
|
773
|
+
--spectrum-alias-border-size-thin: var(
|
|
774
|
+
--spectrum-global-dimension-static-size-10
|
|
775
|
+
);
|
|
776
|
+
--spectrum-alias-border-size-thick: var(
|
|
777
|
+
--spectrum-global-dimension-static-size-25
|
|
778
|
+
);
|
|
779
|
+
--spectrum-alias-border-size-thicker: var(
|
|
780
|
+
--spectrum-global-dimension-static-size-50
|
|
781
|
+
);
|
|
782
|
+
--spectrum-alias-border-size-thickest: var(
|
|
783
|
+
--spectrum-global-dimension-static-size-100
|
|
784
|
+
);
|
|
785
|
+
--spectrum-alias-border-offset-thin: var(
|
|
786
|
+
--spectrum-global-dimension-static-size-25
|
|
787
|
+
);
|
|
788
|
+
--spectrum-alias-border-offset-thick: var(
|
|
789
|
+
--spectrum-global-dimension-static-size-50
|
|
790
|
+
);
|
|
791
|
+
--spectrum-alias-border-offset-thicker: var(
|
|
792
|
+
--spectrum-global-dimension-static-size-100
|
|
793
|
+
);
|
|
794
|
+
--spectrum-alias-border-offset-thickest: var(
|
|
795
|
+
--spectrum-global-dimension-static-size-200
|
|
796
|
+
);
|
|
797
|
+
--spectrum-alias-grid-baseline: var(
|
|
798
|
+
--spectrum-global-dimension-static-size-100
|
|
799
|
+
);
|
|
800
|
+
--spectrum-alias-grid-gutter-xsmall: var(
|
|
801
|
+
--spectrum-global-dimension-static-size-200
|
|
802
|
+
);
|
|
803
|
+
--spectrum-alias-grid-gutter-small: var(
|
|
804
|
+
--spectrum-global-dimension-static-size-300
|
|
805
|
+
);
|
|
806
|
+
--spectrum-alias-grid-gutter-medium: var(
|
|
807
|
+
--spectrum-global-dimension-static-size-400
|
|
808
|
+
);
|
|
809
|
+
--spectrum-alias-grid-gutter-large: var(
|
|
810
|
+
--spectrum-global-dimension-static-size-500
|
|
811
|
+
);
|
|
812
|
+
--spectrum-alias-grid-gutter-xlarge: var(
|
|
813
|
+
--spectrum-global-dimension-static-size-600
|
|
814
|
+
);
|
|
815
|
+
--spectrum-alias-grid-margin-xsmall: var(
|
|
816
|
+
--spectrum-global-dimension-static-size-200
|
|
817
|
+
);
|
|
818
|
+
--spectrum-alias-grid-margin-small: var(
|
|
819
|
+
--spectrum-global-dimension-static-size-300
|
|
820
|
+
);
|
|
821
|
+
--spectrum-alias-grid-margin-medium: var(
|
|
822
|
+
--spectrum-global-dimension-static-size-400
|
|
823
|
+
);
|
|
824
|
+
--spectrum-alias-grid-margin-large: var(
|
|
825
|
+
--spectrum-global-dimension-static-size-500
|
|
826
|
+
);
|
|
827
|
+
--spectrum-alias-grid-margin-xlarge: var(
|
|
828
|
+
--spectrum-global-dimension-static-size-600
|
|
829
|
+
);
|
|
830
|
+
--spectrum-alias-grid-layout-region-margin-bottom-xsmall: var(
|
|
831
|
+
--spectrum-global-dimension-static-size-200
|
|
832
|
+
);
|
|
833
|
+
--spectrum-alias-grid-layout-region-margin-bottom-small: var(
|
|
834
|
+
--spectrum-global-dimension-static-size-300
|
|
835
|
+
);
|
|
836
|
+
--spectrum-alias-grid-layout-region-margin-bottom-medium: var(
|
|
837
|
+
--spectrum-global-dimension-static-size-400
|
|
838
|
+
);
|
|
839
|
+
--spectrum-alias-grid-layout-region-margin-bottom-large: var(
|
|
840
|
+
--spectrum-global-dimension-static-size-500
|
|
841
|
+
);
|
|
842
|
+
--spectrum-alias-grid-layout-region-margin-bottom-xlarge: var(
|
|
843
|
+
--spectrum-global-dimension-static-size-600
|
|
844
|
+
);
|
|
845
|
+
--spectrum-alias-radial-reaction-size-default: var(
|
|
846
|
+
--spectrum-global-dimension-static-size-550
|
|
847
|
+
);
|
|
848
|
+
--spectrum-alias-focus-ring-gap: var(
|
|
849
|
+
--spectrum-global-dimension-static-size-25
|
|
850
|
+
);
|
|
851
|
+
--spectrum-alias-focus-ring-size: var(
|
|
852
|
+
--spectrum-global-dimension-static-size-25
|
|
853
|
+
);
|
|
823
854
|
--spectrum-alias-loupe-entry-animation-duration: var(
|
|
824
855
|
--spectrum-global-animation-duration-300
|
|
825
856
|
);
|
|
@@ -1023,10 +1054,6 @@
|
|
|
1023
1054
|
--spectrum-alias-han-detail-text-font-weight-strong: var(
|
|
1024
1055
|
--spectrum-global-font-weight-black
|
|
1025
1056
|
);
|
|
1026
|
-
}
|
|
1027
|
-
:host,
|
|
1028
|
-
:root {
|
|
1029
|
-
/* spectrum-dimensionAliases.css */
|
|
1030
1057
|
--spectrum-alias-item-height-s: var(--spectrum-global-dimension-size-300);
|
|
1031
1058
|
--spectrum-alias-item-height-m: var(--spectrum-global-dimension-size-400);
|
|
1032
1059
|
--spectrum-alias-item-height-l: var(--spectrum-global-dimension-size-500);
|
|
@@ -1553,87 +1580,6 @@
|
|
|
1553
1580
|
--spectrum-alias-grid-columns: 12;
|
|
1554
1581
|
--spectrum-alias-grid-fluid-width: 100%;
|
|
1555
1582
|
--spectrum-alias-grid-fixed-max-width: 1280px;
|
|
1556
|
-
--spectrum-alias-border-size-thin: var(
|
|
1557
|
-
--spectrum-global-dimension-static-size-10
|
|
1558
|
-
);
|
|
1559
|
-
--spectrum-alias-border-size-thick: var(
|
|
1560
|
-
--spectrum-global-dimension-static-size-25
|
|
1561
|
-
);
|
|
1562
|
-
--spectrum-alias-border-size-thicker: var(
|
|
1563
|
-
--spectrum-global-dimension-static-size-50
|
|
1564
|
-
);
|
|
1565
|
-
--spectrum-alias-border-size-thickest: var(
|
|
1566
|
-
--spectrum-global-dimension-static-size-100
|
|
1567
|
-
);
|
|
1568
|
-
--spectrum-alias-border-offset-thin: var(
|
|
1569
|
-
--spectrum-global-dimension-static-size-25
|
|
1570
|
-
);
|
|
1571
|
-
--spectrum-alias-border-offset-thick: var(
|
|
1572
|
-
--spectrum-global-dimension-static-size-50
|
|
1573
|
-
);
|
|
1574
|
-
--spectrum-alias-border-offset-thicker: var(
|
|
1575
|
-
--spectrum-global-dimension-static-size-100
|
|
1576
|
-
);
|
|
1577
|
-
--spectrum-alias-border-offset-thickest: var(
|
|
1578
|
-
--spectrum-global-dimension-static-size-200
|
|
1579
|
-
);
|
|
1580
|
-
--spectrum-alias-grid-baseline: var(
|
|
1581
|
-
--spectrum-global-dimension-static-size-100
|
|
1582
|
-
);
|
|
1583
|
-
--spectrum-alias-grid-gutter-xsmall: var(
|
|
1584
|
-
--spectrum-global-dimension-static-size-200
|
|
1585
|
-
);
|
|
1586
|
-
--spectrum-alias-grid-gutter-small: var(
|
|
1587
|
-
--spectrum-global-dimension-static-size-300
|
|
1588
|
-
);
|
|
1589
|
-
--spectrum-alias-grid-gutter-medium: var(
|
|
1590
|
-
--spectrum-global-dimension-static-size-400
|
|
1591
|
-
);
|
|
1592
|
-
--spectrum-alias-grid-gutter-large: var(
|
|
1593
|
-
--spectrum-global-dimension-static-size-500
|
|
1594
|
-
);
|
|
1595
|
-
--spectrum-alias-grid-gutter-xlarge: var(
|
|
1596
|
-
--spectrum-global-dimension-static-size-600
|
|
1597
|
-
);
|
|
1598
|
-
--spectrum-alias-grid-margin-xsmall: var(
|
|
1599
|
-
--spectrum-global-dimension-static-size-200
|
|
1600
|
-
);
|
|
1601
|
-
--spectrum-alias-grid-margin-small: var(
|
|
1602
|
-
--spectrum-global-dimension-static-size-300
|
|
1603
|
-
);
|
|
1604
|
-
--spectrum-alias-grid-margin-medium: var(
|
|
1605
|
-
--spectrum-global-dimension-static-size-400
|
|
1606
|
-
);
|
|
1607
|
-
--spectrum-alias-grid-margin-large: var(
|
|
1608
|
-
--spectrum-global-dimension-static-size-500
|
|
1609
|
-
);
|
|
1610
|
-
--spectrum-alias-grid-margin-xlarge: var(
|
|
1611
|
-
--spectrum-global-dimension-static-size-600
|
|
1612
|
-
);
|
|
1613
|
-
--spectrum-alias-grid-layout-region-margin-bottom-xsmall: var(
|
|
1614
|
-
--spectrum-global-dimension-static-size-200
|
|
1615
|
-
);
|
|
1616
|
-
--spectrum-alias-grid-layout-region-margin-bottom-small: var(
|
|
1617
|
-
--spectrum-global-dimension-static-size-300
|
|
1618
|
-
);
|
|
1619
|
-
--spectrum-alias-grid-layout-region-margin-bottom-medium: var(
|
|
1620
|
-
--spectrum-global-dimension-static-size-400
|
|
1621
|
-
);
|
|
1622
|
-
--spectrum-alias-grid-layout-region-margin-bottom-large: var(
|
|
1623
|
-
--spectrum-global-dimension-static-size-500
|
|
1624
|
-
);
|
|
1625
|
-
--spectrum-alias-grid-layout-region-margin-bottom-xlarge: var(
|
|
1626
|
-
--spectrum-global-dimension-static-size-600
|
|
1627
|
-
);
|
|
1628
|
-
--spectrum-alias-radial-reaction-size-default: var(
|
|
1629
|
-
--spectrum-global-dimension-static-size-550
|
|
1630
|
-
);
|
|
1631
|
-
--spectrum-alias-focus-ring-gap: var(
|
|
1632
|
-
--spectrum-global-dimension-static-size-25
|
|
1633
|
-
);
|
|
1634
|
-
--spectrum-alias-focus-ring-size: var(
|
|
1635
|
-
--spectrum-global-dimension-static-size-25
|
|
1636
|
-
);
|
|
1637
1583
|
--spectrum-alias-dropshadow-blur: var(--spectrum-global-dimension-size-50);
|
|
1638
1584
|
--spectrum-alias-dropshadow-offset-y: var(
|
|
1639
1585
|
--spectrum-global-dimension-size-10
|
|
@@ -1698,10 +1644,6 @@
|
|
|
1698
1644
|
--spectrum-alias-ui-icon-asterisk-size-100: var(
|
|
1699
1645
|
--spectrum-global-dimension-size-100
|
|
1700
1646
|
);
|
|
1701
|
-
}
|
|
1702
|
-
:host,
|
|
1703
|
-
:root {
|
|
1704
|
-
/* spectrum-colorAliases.css */
|
|
1705
1647
|
--spectrum-alias-component-text-color-selected-default: var(
|
|
1706
1648
|
--spectrum-global-color-gray-50
|
|
1707
1649
|
);
|
|
@@ -1946,12 +1888,7 @@
|
|
|
1946
1888
|
--spectrum-alias-assetcard-selectionindicator-background-color-ordered: var(
|
|
1947
1889
|
--spectrum-global-color-indigo-500
|
|
1948
1890
|
);
|
|
1949
|
-
--spectrum-alias-assetcard-overlay-background-color:
|
|
1950
|
-
109,
|
|
1951
|
-
115,
|
|
1952
|
-
246,
|
|
1953
|
-
0.2
|
|
1954
|
-
);
|
|
1891
|
+
--spectrum-alias-assetcard-overlay-background-color: #6d73f633;
|
|
1955
1892
|
--spectrum-alias-assetcard-border-color-selected: var(
|
|
1956
1893
|
--spectrum-global-color-indigo-500
|
|
1957
1894
|
);
|
|
@@ -1967,18 +1904,8 @@
|
|
|
1967
1904
|
--spectrum-alias-transparent-blue-background-color: var(
|
|
1968
1905
|
--spectrum-alias-component-text-color-default
|
|
1969
1906
|
);
|
|
1970
|
-
--spectrum-alias-transparent-red-background-color-hover:
|
|
1971
|
-
|
|
1972
|
-
0,
|
|
1973
|
-
0,
|
|
1974
|
-
0.15
|
|
1975
|
-
);
|
|
1976
|
-
--spectrum-alias-transparent-red-background-color-down: rgba(
|
|
1977
|
-
124,
|
|
1978
|
-
0,
|
|
1979
|
-
0,
|
|
1980
|
-
0.3
|
|
1981
|
-
);
|
|
1907
|
+
--spectrum-alias-transparent-red-background-color-hover: #9a000026;
|
|
1908
|
+
--spectrum-alias-transparent-red-background-color-down: #7c00004d;
|
|
1982
1909
|
--spectrum-alias-transparent-red-background-color-key-focus: var(
|
|
1983
1910
|
--spectrum-alias-transparent-red-background-color-hover
|
|
1984
1911
|
);
|
|
@@ -2247,31 +2174,11 @@
|
|
|
2247
2174
|
--spectrum-global-color-gray-200
|
|
2248
2175
|
);
|
|
2249
2176
|
--spectrum-alias-background-color-transparent: transparent;
|
|
2250
|
-
--spectrum-alias-background-color-overbackground-down:
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
);
|
|
2256
|
-
--spectrum-alias-background-color-quiet-overbackground-hover: hsla(
|
|
2257
|
-
0,
|
|
2258
|
-
0%,
|
|
2259
|
-
100%,
|
|
2260
|
-
0.1
|
|
2261
|
-
);
|
|
2262
|
-
--spectrum-alias-background-color-quiet-overbackground-down: hsla(
|
|
2263
|
-
0,
|
|
2264
|
-
0%,
|
|
2265
|
-
100%,
|
|
2266
|
-
0.2
|
|
2267
|
-
);
|
|
2268
|
-
--spectrum-alias-background-color-overbackground-disabled: hsla(
|
|
2269
|
-
0,
|
|
2270
|
-
0%,
|
|
2271
|
-
100%,
|
|
2272
|
-
0.1
|
|
2273
|
-
);
|
|
2274
|
-
--spectrum-alias-background-color-quickactions-overlay: rgba(0, 0, 0, 0.2);
|
|
2177
|
+
--spectrum-alias-background-color-overbackground-down: #fff3;
|
|
2178
|
+
--spectrum-alias-background-color-quiet-overbackground-hover: #ffffff1a;
|
|
2179
|
+
--spectrum-alias-background-color-quiet-overbackground-down: #fff3;
|
|
2180
|
+
--spectrum-alias-background-color-overbackground-disabled: #ffffff1a;
|
|
2181
|
+
--spectrum-alias-background-color-quickactions-overlay: #0003;
|
|
2275
2182
|
--spectrum-alias-placeholder-text-color: var(
|
|
2276
2183
|
--spectrum-global-color-gray-800
|
|
2277
2184
|
);
|
|
@@ -2303,13 +2210,8 @@
|
|
|
2303
2210
|
--spectrum-alias-text-color-overbackground: var(
|
|
2304
2211
|
--spectrum-global-color-static-white
|
|
2305
2212
|
);
|
|
2306
|
-
--spectrum-alias-text-color-overbackground-disabled:
|
|
2307
|
-
--spectrum-alias-text-color-quiet-overbackground-disabled:
|
|
2308
|
-
0,
|
|
2309
|
-
0%,
|
|
2310
|
-
100%,
|
|
2311
|
-
0.2
|
|
2312
|
-
);
|
|
2213
|
+
--spectrum-alias-text-color-overbackground-disabled: #fff3;
|
|
2214
|
+
--spectrum-alias-text-color-quiet-overbackground-disabled: #fff3;
|
|
2313
2215
|
--spectrum-alias-heading-text-color: var(--spectrum-global-color-gray-900);
|
|
2314
2216
|
--spectrum-alias-border-color: var(--spectrum-global-color-gray-400);
|
|
2315
2217
|
--spectrum-alias-border-color-hover: var(--spectrum-global-color-gray-500);
|
|
@@ -2339,8 +2241,8 @@
|
|
|
2339
2241
|
--spectrum-global-color-gray-900
|
|
2340
2242
|
);
|
|
2341
2243
|
--spectrum-alias-border-color-transparent: transparent;
|
|
2342
|
-
--spectrum-alias-border-color-translucent-dark:
|
|
2343
|
-
--spectrum-alias-border-color-translucent-darker:
|
|
2244
|
+
--spectrum-alias-border-color-translucent-dark: #0000000d;
|
|
2245
|
+
--spectrum-alias-border-color-translucent-darker: #0000001a;
|
|
2344
2246
|
--spectrum-alias-focus-color: var(--spectrum-global-color-blue-400);
|
|
2345
2247
|
--spectrum-alias-focus-ring-color: var(--spectrum-alias-focus-color);
|
|
2346
2248
|
--spectrum-alias-track-fill-color-overbackground: var(
|
|
@@ -2349,7 +2251,7 @@
|
|
|
2349
2251
|
--spectrum-alias-track-color-disabled: var(
|
|
2350
2252
|
--spectrum-global-color-gray-300
|
|
2351
2253
|
);
|
|
2352
|
-
--spectrum-alias-track-color-overbackground:
|
|
2254
|
+
--spectrum-alias-track-color-overbackground: #fff3;
|
|
2353
2255
|
--spectrum-alias-icon-color: var(--spectrum-global-color-gray-700);
|
|
2354
2256
|
--spectrum-alias-icon-color-overbackground: var(
|
|
2355
2257
|
--spectrum-global-color-static-white
|
|
@@ -2360,13 +2262,8 @@
|
|
|
2360
2262
|
--spectrum-global-color-gray-900
|
|
2361
2263
|
);
|
|
2362
2264
|
--spectrum-alias-icon-color-disabled: var(--spectrum-global-color-gray-400);
|
|
2363
|
-
--spectrum-alias-icon-color-overbackground-disabled:
|
|
2364
|
-
--spectrum-alias-icon-color-quiet-overbackground-disabled:
|
|
2365
|
-
0,
|
|
2366
|
-
0%,
|
|
2367
|
-
100%,
|
|
2368
|
-
0.15
|
|
2369
|
-
);
|
|
2265
|
+
--spectrum-alias-icon-color-overbackground-disabled: #fff3;
|
|
2266
|
+
--spectrum-alias-icon-color-quiet-overbackground-disabled: #ffffff26;
|
|
2370
2267
|
--spectrum-alias-icon-color-selected-neutral: var(
|
|
2371
2268
|
--spectrum-global-color-gray-900
|
|
2372
2269
|
);
|
|
@@ -2474,17 +2371,3 @@
|
|
|
2474
2371
|
--spectrum-global-color-static-yellow-200
|
|
2475
2372
|
);
|
|
2476
2373
|
}
|
|
2477
|
-
:host,
|
|
2478
|
-
:root {
|
|
2479
|
-
--spectrum-colorslider-height: var(--spectrum-global-dimension-size-200);
|
|
2480
|
-
--spectrum-colorslider-vertical-width: var(--spectrum-colorslider-height);
|
|
2481
|
-
--spectrum-colorslider-border-radius: var(
|
|
2482
|
-
--spectrum-alias-border-radius-small
|
|
2483
|
-
);
|
|
2484
|
-
--spectrum-colorcontrol-checkerboard-light-color: var(
|
|
2485
|
-
--spectrum-global-color-static-white
|
|
2486
|
-
);
|
|
2487
|
-
--spectrum-colorcontrol-checkerboard-dark-color: var(
|
|
2488
|
-
--spectrum-global-color-static-gray-200
|
|
2489
|
-
);
|
|
2490
|
-
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
:
|
|
2
|
-
:
|
|
1
|
+
:root,
|
|
2
|
+
:host {
|
|
3
3
|
--spectrum-global-color-status: Verified;
|
|
4
|
-
--spectrum-global-color-version: 5.1
|
|
4
|
+
--spectrum-global-color-version: 5.1;
|
|
5
5
|
--spectrum-global-color-opacity-100: 1;
|
|
6
6
|
--spectrum-global-color-opacity-90: 0.9;
|
|
7
7
|
--spectrum-global-color-opacity-80: 0.8;
|
|
@@ -258,31 +258,11 @@
|
|
|
258
258
|
--spectrum-global-color-gray-900: rgb(
|
|
259
259
|
var(--spectrum-global-color-gray-900-rgb)
|
|
260
260
|
);
|
|
261
|
-
--spectrum-alias-transparent-blue-background-color-default:
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
);
|
|
267
|
-
--spectrum-alias-transparent-blue-background-color-hover: rgba(
|
|
268
|
-
145,
|
|
269
|
-
149,
|
|
270
|
-
255,
|
|
271
|
-
0.15
|
|
272
|
-
);
|
|
273
|
-
--spectrum-alias-transparent-blue-background-color-down: rgba(
|
|
274
|
-
167,
|
|
275
|
-
170,
|
|
276
|
-
255,
|
|
277
|
-
0.15
|
|
278
|
-
);
|
|
279
|
-
--spectrum-alias-transparent-blue-background-color-key-focus: rgba(
|
|
280
|
-
145,
|
|
281
|
-
149,
|
|
282
|
-
255,
|
|
283
|
-
0.15
|
|
284
|
-
);
|
|
285
|
-
--spectrum-alias-border-color-selected: hsla(0, 0%, 100%, 0.9);
|
|
261
|
+
--spectrum-alias-transparent-blue-background-color-default: #7c81fb26;
|
|
262
|
+
--spectrum-alias-transparent-blue-background-color-hover: #9195ff26;
|
|
263
|
+
--spectrum-alias-transparent-blue-background-color-down: #a7aaff26;
|
|
264
|
+
--spectrum-alias-transparent-blue-background-color-key-focus: #9195ff26;
|
|
265
|
+
--spectrum-alias-border-color-selected: #ffffffe6;
|
|
286
266
|
--spectrum-alias-background-color-primary: var(
|
|
287
267
|
--spectrum-global-color-gray-100
|
|
288
268
|
);
|
|
@@ -292,17 +272,17 @@
|
|
|
292
272
|
--spectrum-alias-background-color-tertiary: var(
|
|
293
273
|
--spectrum-global-color-gray-50
|
|
294
274
|
);
|
|
295
|
-
--spectrum-alias-background-color-modal-overlay:
|
|
296
|
-
--spectrum-alias-dropshadow-color:
|
|
297
|
-
--spectrum-alias-background-color-hover-overlay:
|
|
298
|
-
--spectrum-alias-highlight-hover:
|
|
299
|
-
--spectrum-alias-highlight-down:
|
|
300
|
-
--spectrum-alias-highlight-selected:
|
|
301
|
-
--spectrum-alias-highlight-selected-hover:
|
|
302
|
-
--spectrum-alias-text-highlight-color:
|
|
303
|
-
--spectrum-alias-background-color-quickactions:
|
|
304
|
-
--spectrum-alias-border-color-translucent:
|
|
305
|
-
--spectrum-alias-radial-reaction-color-default:
|
|
275
|
+
--spectrum-alias-background-color-modal-overlay: #00000080;
|
|
276
|
+
--spectrum-alias-dropshadow-color: #00000080;
|
|
277
|
+
--spectrum-alias-background-color-hover-overlay: #ffffff0f;
|
|
278
|
+
--spectrum-alias-highlight-hover: #ffffff12;
|
|
279
|
+
--spectrum-alias-highlight-down: #ffffff1a;
|
|
280
|
+
--spectrum-alias-highlight-selected: #54a3f626;
|
|
281
|
+
--spectrum-alias-highlight-selected-hover: #54a3f640;
|
|
282
|
+
--spectrum-alias-text-highlight-color: #54a3f640;
|
|
283
|
+
--spectrum-alias-background-color-quickactions: #323232e6;
|
|
284
|
+
--spectrum-alias-border-color-translucent: #ffffff1a;
|
|
285
|
+
--spectrum-alias-radial-reaction-color-default: #ebebeb99;
|
|
306
286
|
--spectrum-alias-pasteboard-background-color: var(
|
|
307
287
|
--spectrum-global-color-gray-50
|
|
308
288
|
);
|
|
@@ -312,15 +292,4 @@
|
|
|
312
292
|
--spectrum-alias-appframe-separator-color: var(
|
|
313
293
|
--spectrum-global-color-gray-50
|
|
314
294
|
);
|
|
315
|
-
--spectrum-scrollbar-mac-s-track-background-color: var(
|
|
316
|
-
--spectrum-global-color-gray-100
|
|
317
|
-
);
|
|
318
|
-
--spectrum-scrollbar-mac-m-track-background-color: var(
|
|
319
|
-
--spectrum-global-color-gray-100
|
|
320
|
-
);
|
|
321
|
-
--spectrum-scrollbar-mac-l-track-background-color: var(
|
|
322
|
-
--spectrum-global-color-gray-100
|
|
323
|
-
);
|
|
324
|
-
--spectrum-well-background-color: hsla(0, 0%, 92%, 0.02);
|
|
325
|
-
--spectrum-well-border-color: hsla(0, 0%, 100%, 0.05);
|
|
326
295
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
:
|
|
2
|
-
:
|
|
1
|
+
:root,
|
|
2
|
+
:host {
|
|
3
3
|
--spectrum-global-color-status: Verified;
|
|
4
|
-
--spectrum-global-color-version: 5.1
|
|
4
|
+
--spectrum-global-color-version: 5.1;
|
|
5
5
|
--spectrum-global-color-opacity-100: 1;
|
|
6
6
|
--spectrum-global-color-opacity-90: 0.9;
|
|
7
7
|
--spectrum-global-color-opacity-80: 0.8;
|
|
@@ -258,31 +258,11 @@
|
|
|
258
258
|
--spectrum-global-color-gray-900: rgb(
|
|
259
259
|
var(--spectrum-global-color-gray-900-rgb)
|
|
260
260
|
);
|
|
261
|
-
--spectrum-alias-transparent-blue-background-color-default:
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
);
|
|
267
|
-
--spectrum-alias-transparent-blue-background-color-hover: rgba(
|
|
268
|
-
64,
|
|
269
|
-
70,
|
|
270
|
-
202,
|
|
271
|
-
0.15
|
|
272
|
-
);
|
|
273
|
-
--spectrum-alias-transparent-blue-background-color-down: rgba(
|
|
274
|
-
50,
|
|
275
|
-
54,
|
|
276
|
-
168,
|
|
277
|
-
0.15
|
|
278
|
-
);
|
|
279
|
-
--spectrum-alias-transparent-blue-background-color-key-focus: rgba(
|
|
280
|
-
64,
|
|
281
|
-
70,
|
|
282
|
-
202,
|
|
283
|
-
0.15
|
|
284
|
-
);
|
|
285
|
-
--spectrum-alias-border-color-selected: rgba(0, 0, 0, 0.9);
|
|
261
|
+
--spectrum-alias-transparent-blue-background-color-default: #5258e426;
|
|
262
|
+
--spectrum-alias-transparent-blue-background-color-hover: #4046ca26;
|
|
263
|
+
--spectrum-alias-transparent-blue-background-color-down: #3236a826;
|
|
264
|
+
--spectrum-alias-transparent-blue-background-color-key-focus: #4046ca26;
|
|
265
|
+
--spectrum-alias-border-color-selected: #000000e6;
|
|
286
266
|
--spectrum-alias-background-color-primary: var(
|
|
287
267
|
--spectrum-global-color-gray-50
|
|
288
268
|
);
|
|
@@ -292,17 +272,17 @@
|
|
|
292
272
|
--spectrum-alias-background-color-tertiary: var(
|
|
293
273
|
--spectrum-global-color-gray-300
|
|
294
274
|
);
|
|
295
|
-
--spectrum-alias-background-color-modal-overlay:
|
|
296
|
-
--spectrum-alias-dropshadow-color:
|
|
297
|
-
--spectrum-alias-background-color-hover-overlay:
|
|
298
|
-
--spectrum-alias-highlight-hover:
|
|
299
|
-
--spectrum-alias-highlight-down:
|
|
300
|
-
--spectrum-alias-highlight-selected:
|
|
301
|
-
--spectrum-alias-highlight-selected-hover:
|
|
302
|
-
--spectrum-alias-text-highlight-color:
|
|
303
|
-
--spectrum-alias-background-color-quickactions:
|
|
304
|
-
--spectrum-alias-border-color-translucent:
|
|
305
|
-
--spectrum-alias-radial-reaction-color-default:
|
|
275
|
+
--spectrum-alias-background-color-modal-overlay: #0006;
|
|
276
|
+
--spectrum-alias-dropshadow-color: #00000026;
|
|
277
|
+
--spectrum-alias-background-color-hover-overlay: #0000000a;
|
|
278
|
+
--spectrum-alias-highlight-hover: #0000000f;
|
|
279
|
+
--spectrum-alias-highlight-down: #0000001a;
|
|
280
|
+
--spectrum-alias-highlight-selected: #0265dc1a;
|
|
281
|
+
--spectrum-alias-highlight-selected-hover: #0265dc33;
|
|
282
|
+
--spectrum-alias-text-highlight-color: #0265dc33;
|
|
283
|
+
--spectrum-alias-background-color-quickactions: #f8f8f8e6;
|
|
284
|
+
--spectrum-alias-border-color-translucent: #0000001a;
|
|
285
|
+
--spectrum-alias-radial-reaction-color-default: #2229;
|
|
306
286
|
--spectrum-alias-pasteboard-background-color: var(
|
|
307
287
|
--spectrum-global-color-gray-300
|
|
308
288
|
);
|
|
@@ -312,15 +292,4 @@
|
|
|
312
292
|
--spectrum-alias-appframe-separator-color: var(
|
|
313
293
|
--spectrum-global-color-gray-300
|
|
314
294
|
);
|
|
315
|
-
--spectrum-scrollbar-mac-s-track-background-color: var(
|
|
316
|
-
--spectrum-global-color-gray-75
|
|
317
|
-
);
|
|
318
|
-
--spectrum-scrollbar-mac-m-track-background-color: var(
|
|
319
|
-
--spectrum-global-color-gray-75
|
|
320
|
-
);
|
|
321
|
-
--spectrum-scrollbar-mac-l-track-background-color: var(
|
|
322
|
-
--spectrum-global-color-gray-75
|
|
323
|
-
);
|
|
324
|
-
--spectrum-well-background-color: rgba(34, 34, 34, 0.02);
|
|
325
|
-
--spectrum-well-border-color: rgba(0, 0, 0, 0.05);
|
|
326
295
|
}
|