@amsterdam/design-system-tokens 0.13.0 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -1
- package/README.md +14 -8
- package/build.js +6 -0
- package/dist/compact.d.ts +38 -38
- package/dist/compact.mjs +20 -10
- package/dist/index.css +93 -61
- package/dist/index.d.ts +1510 -1442
- package/dist/index.json +145 -77
- package/dist/index.mjs +485 -245
- package/dist/index.scss +93 -61
- package/dist/index.theme.css +93 -61
- package/package.json +2 -2
- package/src/brand/ams/{proportion.tokens.json → aspect-ratio.tokens.json} +1 -1
- package/src/components/ams/alert.tokens.json +2 -7
- package/src/components/ams/avatar.tokens.json +1 -1
- package/src/components/ams/button.tokens.json +5 -5
- package/src/components/ams/date-input.tokens.json +2 -2
- package/src/components/ams/error-message.tokens.json +1 -0
- package/src/components/ams/figure.tokens.json +15 -0
- package/src/components/ams/file-input.tokens.json +3 -3
- package/src/components/ams/file-list.tokens.json +21 -0
- package/src/components/ams/footer.tokens.json +9 -0
- package/src/components/ams/header.tokens.json +46 -4
- package/src/components/ams/icon-button.tokens.json +3 -3
- package/src/components/ams/icon.tokens.json +3 -0
- package/src/components/ams/image.tokens.json +7 -0
- package/src/components/ams/logo.tokens.json +7 -3
- package/src/components/ams/password-input.tokens.json +2 -2
- package/src/components/ams/radio.tokens.json +13 -0
- package/src/components/ams/search-field.tokens.json +0 -10
- package/src/components/ams/select.tokens.json +3 -3
- package/src/components/ams/spotlight.tokens.json +1 -6
- package/src/components/ams/switch.tokens.json +1 -1
- package/src/components/ams/table.tokens.json +4 -1
- package/src/components/ams/tabs.tokens.json +9 -6
- package/src/components/ams/text-area.tokens.json +2 -2
- package/src/components/ams/text-input.tokens.json +2 -2
- package/src/components/ams/time-input.tokens.json +2 -2
- package/src/components/ams/aspect-ratio.tokens.json +0 -12
package/dist/index.json
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"ams": {
|
|
3
|
+
"aspect-ratio": {
|
|
4
|
+
"x-tall": "9 / 16",
|
|
5
|
+
"tall": "3 / 4",
|
|
6
|
+
"square": "1 / 1",
|
|
7
|
+
"wide": "4 / 3",
|
|
8
|
+
"x-wide": "16 / 9",
|
|
9
|
+
"2x-wide": "16 / 5"
|
|
10
|
+
},
|
|
3
11
|
"border": {
|
|
4
12
|
"width": {
|
|
5
13
|
"sm": "0.0625rem",
|
|
@@ -25,14 +33,6 @@
|
|
|
25
33
|
"neutral-grey2": "#BEBEBE",
|
|
26
34
|
"neutral-grey3": "#767676"
|
|
27
35
|
},
|
|
28
|
-
"proportion": {
|
|
29
|
-
"x-tall": "9 / 16",
|
|
30
|
-
"tall": "3 / 4",
|
|
31
|
-
"square": "1 / 1",
|
|
32
|
-
"wide": "4 / 3",
|
|
33
|
-
"x-wide": "16 / 9",
|
|
34
|
-
"2x-wide": "16 / 5"
|
|
35
|
-
},
|
|
36
36
|
"space": {
|
|
37
37
|
"xs": "clamp(0.2813rem, 0.2578rem + 0.1172vw, 0.375rem)",
|
|
38
38
|
"sm": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
|
|
@@ -178,6 +178,7 @@
|
|
|
178
178
|
"gap": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)"
|
|
179
179
|
},
|
|
180
180
|
"alert": {
|
|
181
|
+
"background-color": "#FFFFFF",
|
|
181
182
|
"border-width": "0.25rem",
|
|
182
183
|
"border-style": "solid",
|
|
183
184
|
"gap": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
|
|
@@ -187,7 +188,7 @@
|
|
|
187
188
|
"border-color": "#EC0000"
|
|
188
189
|
},
|
|
189
190
|
"info": {
|
|
190
|
-
"border-color": "#
|
|
191
|
+
"border-color": "#009DE6"
|
|
191
192
|
},
|
|
192
193
|
"success": {
|
|
193
194
|
"border-color": "#00A03C"
|
|
@@ -195,24 +196,10 @@
|
|
|
195
196
|
"warning": {
|
|
196
197
|
"border-color": "#FF9100"
|
|
197
198
|
},
|
|
198
|
-
"close": {
|
|
199
|
-
"fill": "#000000",
|
|
200
|
-
"hover": {
|
|
201
|
-
"fill": "#004699"
|
|
202
|
-
}
|
|
203
|
-
},
|
|
204
199
|
"content": {
|
|
205
200
|
"gap": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)"
|
|
206
201
|
}
|
|
207
202
|
},
|
|
208
|
-
"aspect-ratio": {
|
|
209
|
-
"x-tall": "9 / 16",
|
|
210
|
-
"tall": "3 / 4",
|
|
211
|
-
"square": "1 / 1",
|
|
212
|
-
"wide": "4 / 3",
|
|
213
|
-
"x-wide": "16 / 9",
|
|
214
|
-
"2x-wide": "16 / 5"
|
|
215
|
-
},
|
|
216
203
|
"avatar": {
|
|
217
204
|
"aspect-ratio": "1 / 1",
|
|
218
205
|
"font-family": "'Amsterdam Sans', Arial, sans-serif",
|
|
@@ -402,8 +389,8 @@
|
|
|
402
389
|
"box-shadow": "inset 0 0 0 0.125rem #004699",
|
|
403
390
|
"color": "#FFFFFF",
|
|
404
391
|
"disabled": {
|
|
405
|
-
"background-color": "#
|
|
406
|
-
"box-shadow": "inset 0 0 0 0.125rem #
|
|
392
|
+
"background-color": "#767676",
|
|
393
|
+
"box-shadow": "inset 0 0 0 0.125rem #767676"
|
|
407
394
|
},
|
|
408
395
|
"hover": {
|
|
409
396
|
"background-color": "#102E62",
|
|
@@ -420,8 +407,8 @@
|
|
|
420
407
|
},
|
|
421
408
|
"disabled": {
|
|
422
409
|
"background-color": "#FFFFFF",
|
|
423
|
-
"box-shadow": "inset 0 0 0 0.125rem #
|
|
424
|
-
"color": "#
|
|
410
|
+
"box-shadow": "inset 0 0 0 0.125rem #767676",
|
|
411
|
+
"color": "#767676"
|
|
425
412
|
},
|
|
426
413
|
"focus": {
|
|
427
414
|
"box-shadow": "inset 0 0 0 0.125rem #004699"
|
|
@@ -436,7 +423,7 @@
|
|
|
436
423
|
},
|
|
437
424
|
"disabled": {
|
|
438
425
|
"background-color": "transparent",
|
|
439
|
-
"color": "#
|
|
426
|
+
"color": "#767676"
|
|
440
427
|
}
|
|
441
428
|
},
|
|
442
429
|
"icon-only": {
|
|
@@ -569,8 +556,8 @@
|
|
|
569
556
|
},
|
|
570
557
|
"disabled": {
|
|
571
558
|
"background-color": "#FFFFFF",
|
|
572
|
-
"box-shadow": "inset 0 0 0 0.0625rem #
|
|
573
|
-
"color": "#
|
|
559
|
+
"box-shadow": "inset 0 0 0 0.0625rem #767676",
|
|
560
|
+
"color": "#767676",
|
|
574
561
|
"calender-picker-indicator": {
|
|
575
562
|
"background-image": "url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='%23BEBEBE'><path d='M28 6V2h-4v4H12V2H8v4H2v28h32V6zm2 24H6V14h24z'/><path d='M10 17h4v4h-4zm6 0h4v4h-4zm6 0h4v4h-4zm-12 6h4v4h-4zm6 0h4v4h-4z'/></svg>\")"
|
|
576
563
|
}
|
|
@@ -622,6 +609,7 @@
|
|
|
622
609
|
"font-family": "'Amsterdam Sans', Arial, sans-serif",
|
|
623
610
|
"font-size": "clamp(0.9643rem, calc(0.9054rem + 0.2946vw), 1.2rem)",
|
|
624
611
|
"font-weight": 400,
|
|
612
|
+
"gap": "clamp(0.2813rem, 0.2578rem + 0.1172vw, 0.375rem)",
|
|
625
613
|
"line-height": "1.6"
|
|
626
614
|
},
|
|
627
615
|
"field-set": {
|
|
@@ -645,6 +633,17 @@
|
|
|
645
633
|
"padding-inline-start": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)"
|
|
646
634
|
}
|
|
647
635
|
},
|
|
636
|
+
"figure": {
|
|
637
|
+
"gap": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
|
|
638
|
+
"caption": {
|
|
639
|
+
"color": "#000000",
|
|
640
|
+
"font-family": "'Amsterdam Sans', Arial, sans-serif",
|
|
641
|
+
"font-size": "clamp(0.9643rem, calc(0.9054rem + 0.2946vw), 1.2rem)",
|
|
642
|
+
"font-weight": 400,
|
|
643
|
+
"line-height": "1.6",
|
|
644
|
+
"inverse-color": "#FFFFFF"
|
|
645
|
+
}
|
|
646
|
+
},
|
|
648
647
|
"file-input": {
|
|
649
648
|
"background-color": "#FFFFFF",
|
|
650
649
|
"border": "0.0625rem dashed #767676",
|
|
@@ -658,7 +657,7 @@
|
|
|
658
657
|
"padding-block": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
|
|
659
658
|
"padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
|
|
660
659
|
"disabled": {
|
|
661
|
-
"color": "#
|
|
660
|
+
"color": "#767676",
|
|
662
661
|
"cursor": "not-allowed"
|
|
663
662
|
},
|
|
664
663
|
"file-selector-button": {
|
|
@@ -674,8 +673,8 @@
|
|
|
674
673
|
"color": "#102E62"
|
|
675
674
|
},
|
|
676
675
|
"disabled": {
|
|
677
|
-
"box-shadow": "inset 0 0 0 0.125rem #
|
|
678
|
-
"color": "#
|
|
676
|
+
"box-shadow": "inset 0 0 0 0.125rem #767676",
|
|
677
|
+
"color": "#767676",
|
|
679
678
|
"cursor": "not-allowed"
|
|
680
679
|
},
|
|
681
680
|
"forced-color-mode": {
|
|
@@ -683,6 +682,28 @@
|
|
|
683
682
|
}
|
|
684
683
|
}
|
|
685
684
|
},
|
|
685
|
+
"file-list": {
|
|
686
|
+
"gap": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
|
|
687
|
+
"padding-block": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
|
|
688
|
+
"file": {
|
|
689
|
+
"font-family": "'Amsterdam Sans', Arial, sans-serif",
|
|
690
|
+
"font-size": "clamp(0.9643rem, calc(0.9054rem + 0.2946vw), 1.2rem)",
|
|
691
|
+
"font-weight": 400,
|
|
692
|
+
"gap": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
|
|
693
|
+
"line-height": "1.6",
|
|
694
|
+
"details": {
|
|
695
|
+
"color": "#767676"
|
|
696
|
+
},
|
|
697
|
+
"preview": {
|
|
698
|
+
"width": "clamp(2.5rem, 10vw, 5rem)"
|
|
699
|
+
}
|
|
700
|
+
}
|
|
701
|
+
},
|
|
702
|
+
"footer": {
|
|
703
|
+
"top": {
|
|
704
|
+
"background-color": "#004699"
|
|
705
|
+
}
|
|
706
|
+
},
|
|
686
707
|
"form-error-list": {
|
|
687
708
|
"outline-offset": "0.125rem"
|
|
688
709
|
},
|
|
@@ -715,10 +736,52 @@
|
|
|
715
736
|
}
|
|
716
737
|
},
|
|
717
738
|
"header": {
|
|
718
|
-
"
|
|
719
|
-
"padding-
|
|
739
|
+
"padding-block": "clamp(0.5rem, calc(0.1875rem + 1.5625vw), 1.75rem)",
|
|
740
|
+
"padding-inline": "clamp(1.5rem, calc(0.5625rem + 4.6875vw), 5.25rem)",
|
|
741
|
+
"branding": {
|
|
742
|
+
"column-gap": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
|
|
743
|
+
"row-gap": "clamp(0.25rem, calc(0.09375rem + 0.78125vw), 0.875rem)"
|
|
744
|
+
},
|
|
720
745
|
"logo-link": {
|
|
721
746
|
"outline-offset": "0.125rem"
|
|
747
|
+
},
|
|
748
|
+
"mega-menu": {
|
|
749
|
+
"button": {
|
|
750
|
+
"label": {
|
|
751
|
+
"open": {
|
|
752
|
+
"font-weight": 800
|
|
753
|
+
}
|
|
754
|
+
}
|
|
755
|
+
}
|
|
756
|
+
},
|
|
757
|
+
"menu": {
|
|
758
|
+
"column-gap": "clamp(1.6875rem, 1.5469rem + 0.7031vw, 2.25rem)",
|
|
759
|
+
"row-gap": "clamp(0.2813rem, 0.2578rem + 0.1172vw, 0.375rem)",
|
|
760
|
+
"item": {
|
|
761
|
+
"color": "#004699",
|
|
762
|
+
"column-gap": "clamp(0.2813rem, 0.2578rem + 0.1172vw, 0.375rem)",
|
|
763
|
+
"font-family": "'Amsterdam Sans', Arial, sans-serif",
|
|
764
|
+
"font-size": "clamp(1.125rem, calc(1.0313rem + 0.4688vw), 1.5rem)",
|
|
765
|
+
"font-weight": 400,
|
|
766
|
+
"line-height": "1.6",
|
|
767
|
+
"outline-offset": "0.125rem",
|
|
768
|
+
"padding-block": "clamp(0.2813rem, 0.2578rem + 0.1172vw, 0.375rem)",
|
|
769
|
+
"hover": {
|
|
770
|
+
"color": "#102E62"
|
|
771
|
+
}
|
|
772
|
+
},
|
|
773
|
+
"link": {
|
|
774
|
+
"text-decoration-line": "none",
|
|
775
|
+
"text-decoration-thickness": "0.125rem",
|
|
776
|
+
"text-underline-offset": "0.3333em",
|
|
777
|
+
"hover": {
|
|
778
|
+
"text-decoration-line": "underline"
|
|
779
|
+
}
|
|
780
|
+
}
|
|
781
|
+
},
|
|
782
|
+
"navigation": {
|
|
783
|
+
"column-gap": "clamp(1.6875rem, 1.5469rem + 0.7031vw, 2.25rem)",
|
|
784
|
+
"row-gap": "clamp(1rem, calc(0.375rem + 3.125vw), 3.5rem)"
|
|
722
785
|
}
|
|
723
786
|
},
|
|
724
787
|
"heading": {
|
|
@@ -764,7 +827,7 @@
|
|
|
764
827
|
"color": "#102E62"
|
|
765
828
|
},
|
|
766
829
|
"disabled": {
|
|
767
|
-
"color": "#
|
|
830
|
+
"color": "#767676"
|
|
768
831
|
},
|
|
769
832
|
"contrast-color": {
|
|
770
833
|
"color": "#000000",
|
|
@@ -773,7 +836,7 @@
|
|
|
773
836
|
"color": "#000000"
|
|
774
837
|
},
|
|
775
838
|
"disabled": {
|
|
776
|
-
"color": "#
|
|
839
|
+
"color": "#767676"
|
|
777
840
|
}
|
|
778
841
|
},
|
|
779
842
|
"inverse-color": {
|
|
@@ -785,11 +848,14 @@
|
|
|
785
848
|
},
|
|
786
849
|
"disabled": {
|
|
787
850
|
"color": "#FFFFFF",
|
|
788
|
-
"background-color": "#
|
|
851
|
+
"background-color": "#767676"
|
|
789
852
|
}
|
|
790
853
|
}
|
|
791
854
|
},
|
|
792
855
|
"icon": {
|
|
856
|
+
"inverse": {
|
|
857
|
+
"color": "#FFFFFF"
|
|
858
|
+
},
|
|
793
859
|
"size-3": {
|
|
794
860
|
"font-size": "clamp(1.5313rem, calc(1.3281rem + 1.0156vw), 2.3438rem)",
|
|
795
861
|
"line-height": "1.3"
|
|
@@ -829,6 +895,9 @@
|
|
|
829
895
|
}
|
|
830
896
|
}
|
|
831
897
|
},
|
|
898
|
+
"image": {
|
|
899
|
+
"aspect-ratio": "16 / 9"
|
|
900
|
+
},
|
|
832
901
|
"label": {
|
|
833
902
|
"color": "#000000",
|
|
834
903
|
"font-family": "'Amsterdam Sans', Arial, sans-serif",
|
|
@@ -929,15 +998,16 @@
|
|
|
929
998
|
}
|
|
930
999
|
},
|
|
931
1000
|
"logo": {
|
|
932
|
-
"block-size": "
|
|
1001
|
+
"block-size": "clamp(1rem, calc(0.375rem + 3.125vw), 3.5rem)",
|
|
933
1002
|
"emblem": {
|
|
934
1003
|
"color": "#EC0000"
|
|
935
1004
|
},
|
|
936
|
-
"
|
|
937
|
-
"color": "#EC0000"
|
|
938
|
-
},
|
|
1005
|
+
"min-block-size": "2.5rem",
|
|
939
1006
|
"subsite": {
|
|
940
1007
|
"color": "#000000"
|
|
1008
|
+
},
|
|
1009
|
+
"title": {
|
|
1010
|
+
"color": "#EC0000"
|
|
941
1011
|
}
|
|
942
1012
|
},
|
|
943
1013
|
"margin": {
|
|
@@ -1065,8 +1135,8 @@
|
|
|
1065
1135
|
"padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
|
|
1066
1136
|
"disabled": {
|
|
1067
1137
|
"background-color": "#FFFFFF",
|
|
1068
|
-
"box-shadow": "inset 0 0 0 0.0625rem #
|
|
1069
|
-
"color": "#
|
|
1138
|
+
"box-shadow": "inset 0 0 0 0.0625rem #767676",
|
|
1139
|
+
"color": "#767676"
|
|
1070
1140
|
},
|
|
1071
1141
|
"hover": {
|
|
1072
1142
|
"box-shadow": "inset 0 0 0 0.125rem #000000"
|
|
@@ -1112,8 +1182,21 @@
|
|
|
1112
1182
|
}
|
|
1113
1183
|
}
|
|
1114
1184
|
},
|
|
1185
|
+
"hover-indicator": {
|
|
1186
|
+
"stroke-width": "3px",
|
|
1187
|
+
"hover": {
|
|
1188
|
+
"stroke": "#004699"
|
|
1189
|
+
},
|
|
1190
|
+
"invalid": {
|
|
1191
|
+
"hover": {
|
|
1192
|
+
"stroke": "#EC0000"
|
|
1193
|
+
}
|
|
1194
|
+
}
|
|
1195
|
+
},
|
|
1115
1196
|
"circle": {
|
|
1197
|
+
"fill": "#FFFFFF",
|
|
1116
1198
|
"stroke": "#004699",
|
|
1199
|
+
"stroke-width": "2px",
|
|
1117
1200
|
"disabled": {
|
|
1118
1201
|
"stroke": "#767676"
|
|
1119
1202
|
},
|
|
@@ -1165,16 +1248,6 @@
|
|
|
1165
1248
|
}
|
|
1166
1249
|
},
|
|
1167
1250
|
"search-field": {
|
|
1168
|
-
"button": {
|
|
1169
|
-
"background-color": "#004699",
|
|
1170
|
-
"color": "#FFFFFF",
|
|
1171
|
-
"outline-offset": "0.125rem",
|
|
1172
|
-
"padding-block": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
|
|
1173
|
-
"padding-inline": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
|
|
1174
|
-
"hover": {
|
|
1175
|
-
"background-color": "#102E62"
|
|
1176
|
-
}
|
|
1177
|
-
},
|
|
1178
1251
|
"input": {
|
|
1179
1252
|
"background-color": "#FFFFFF",
|
|
1180
1253
|
"box-shadow": "inset 0 0 0 0.0625rem #000000",
|
|
@@ -1221,8 +1294,8 @@
|
|
|
1221
1294
|
"padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem) calc(2 * clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem) + 1em)",
|
|
1222
1295
|
"disabled": {
|
|
1223
1296
|
"background-image": "url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path fill='%23BEBEBE' fill-rule='evenodd' d='m16 25.757-16-16 2.91-2.9L16 19.937l13.09-13.08 2.91 2.9z'/></svg>\")",
|
|
1224
|
-
"box-shadow": "inset 0 0 0 0.0625rem #
|
|
1225
|
-
"color": "#
|
|
1297
|
+
"box-shadow": "inset 0 0 0 0.0625rem #767676",
|
|
1298
|
+
"color": "#767676"
|
|
1226
1299
|
},
|
|
1227
1300
|
"hover": {
|
|
1228
1301
|
"box-shadow": "inset 0 0 0 0.125rem #000000"
|
|
@@ -1235,7 +1308,7 @@
|
|
|
1235
1308
|
},
|
|
1236
1309
|
"option": {
|
|
1237
1310
|
"disabled": {
|
|
1238
|
-
"color": "#
|
|
1311
|
+
"color": "#767676"
|
|
1239
1312
|
}
|
|
1240
1313
|
}
|
|
1241
1314
|
},
|
|
@@ -1254,12 +1327,10 @@
|
|
|
1254
1327
|
}
|
|
1255
1328
|
},
|
|
1256
1329
|
"spotlight": {
|
|
1330
|
+
"background-color": "#A00078",
|
|
1257
1331
|
"blue": {
|
|
1258
1332
|
"background-color": "#009DE6"
|
|
1259
1333
|
},
|
|
1260
|
-
"dark-blue": {
|
|
1261
|
-
"background-color": "#004699"
|
|
1262
|
-
},
|
|
1263
1334
|
"dark-green": {
|
|
1264
1335
|
"background-color": "#00A03C"
|
|
1265
1336
|
},
|
|
@@ -1272,9 +1343,6 @@
|
|
|
1272
1343
|
"orange": {
|
|
1273
1344
|
"background-color": "#FF9100"
|
|
1274
1345
|
},
|
|
1275
|
-
"purple": {
|
|
1276
|
-
"background-color": "#A00078"
|
|
1277
|
-
},
|
|
1278
1346
|
"yellow": {
|
|
1279
1347
|
"background-color": "#FFE600"
|
|
1280
1348
|
}
|
|
@@ -1297,7 +1365,7 @@
|
|
|
1297
1365
|
"background-color": "#004699"
|
|
1298
1366
|
},
|
|
1299
1367
|
"disabled": {
|
|
1300
|
-
"background-color": "#
|
|
1368
|
+
"background-color": "#767676"
|
|
1301
1369
|
}
|
|
1302
1370
|
},
|
|
1303
1371
|
"table-of-contents": {
|
|
@@ -1340,7 +1408,7 @@
|
|
|
1340
1408
|
"font-weight": 800
|
|
1341
1409
|
},
|
|
1342
1410
|
"cell": {
|
|
1343
|
-
"border-block-end": "0.0625rem solid #
|
|
1411
|
+
"border-block-end": "0.0625rem solid #d1d1d1",
|
|
1344
1412
|
"padding-block": "clamp(0.5625rem, 0.5156rem + 0.2344vw, 0.75rem)",
|
|
1345
1413
|
"padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)"
|
|
1346
1414
|
},
|
|
@@ -1351,8 +1419,7 @@
|
|
|
1351
1419
|
"tabs": {
|
|
1352
1420
|
"gap": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
|
|
1353
1421
|
"list": {
|
|
1354
|
-
"
|
|
1355
|
-
"border-block-end": "0.125rem solid #004699"
|
|
1422
|
+
"box-shadow": "inset 0 calc(0.125rem * -1) #d1d1d1"
|
|
1356
1423
|
},
|
|
1357
1424
|
"button": {
|
|
1358
1425
|
"color": "#004699",
|
|
@@ -1366,14 +1433,15 @@
|
|
|
1366
1433
|
"padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
|
|
1367
1434
|
"hover": {
|
|
1368
1435
|
"color": "#102E62",
|
|
1369
|
-
"box-shadow": "inset 0
|
|
1436
|
+
"box-shadow": "inset 0 calc(0.125rem * -1) #102E62"
|
|
1370
1437
|
},
|
|
1371
1438
|
"selected": {
|
|
1372
|
-
"
|
|
1373
|
-
"color": "#
|
|
1439
|
+
"box-shadow": "inset 0 calc(0.25rem * -1) #004699",
|
|
1440
|
+
"color": "#004699",
|
|
1441
|
+
"font-weight": 800
|
|
1374
1442
|
},
|
|
1375
1443
|
"disabled": {
|
|
1376
|
-
"color": "#
|
|
1444
|
+
"color": "#767676",
|
|
1377
1445
|
"cursor": "not-allowed"
|
|
1378
1446
|
}
|
|
1379
1447
|
}
|
|
@@ -1392,8 +1460,8 @@
|
|
|
1392
1460
|
"padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
|
|
1393
1461
|
"disabled": {
|
|
1394
1462
|
"background-color": "#FFFFFF",
|
|
1395
|
-
"box-shadow": "inset 0 0 0 0.0625rem #
|
|
1396
|
-
"color": "#
|
|
1463
|
+
"box-shadow": "inset 0 0 0 0.0625rem #767676",
|
|
1464
|
+
"color": "#767676",
|
|
1397
1465
|
"cursor": "not-allowed"
|
|
1398
1466
|
},
|
|
1399
1467
|
"hover": {
|
|
@@ -1422,8 +1490,8 @@
|
|
|
1422
1490
|
"padding-inline": "clamp(1.125rem, 1.0313rem + 0.4688vw, 1.5rem)",
|
|
1423
1491
|
"disabled": {
|
|
1424
1492
|
"background-color": "#FFFFFF",
|
|
1425
|
-
"box-shadow": "inset 0 0 0 0.0625rem #
|
|
1426
|
-
"color": "#
|
|
1493
|
+
"box-shadow": "inset 0 0 0 0.0625rem #767676",
|
|
1494
|
+
"color": "#767676"
|
|
1427
1495
|
},
|
|
1428
1496
|
"hover": {
|
|
1429
1497
|
"box-shadow": "inset 0 0 0 0.125rem #000000"
|
|
@@ -1454,8 +1522,8 @@
|
|
|
1454
1522
|
},
|
|
1455
1523
|
"disabled": {
|
|
1456
1524
|
"background-color": "#FFFFFF",
|
|
1457
|
-
"box-shadow": "inset 0 0 0 0.0625rem #
|
|
1458
|
-
"color": "#
|
|
1525
|
+
"box-shadow": "inset 0 0 0 0.0625rem #767676",
|
|
1526
|
+
"color": "#767676",
|
|
1459
1527
|
"calender-picker-indicator": {
|
|
1460
1528
|
"background-image": "url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='%23BEBEBE'><path d='M16 0C7.163 0 0 7.163 0 16s7.163 16 16 16 16-7.163 16-16A16 16 0 0 0 16 0zm.9 28v-2h-2v1.9A11.8 11.8 0 0 1 4.1 17H6v-2H4.1A11.8 11.8 0 0 1 15 4.1V6h2V4.1A11.8 11.8 0 0 1 27.9 15H26v2h1.9a11.9 11.9 0 0 1-11 11zm.1-13h4v2h-6V9h2v6z'/></svg>\")"
|
|
1461
1529
|
}
|