@amsterdam/design-system-tokens 0.8.0 → 0.9.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 +32 -0
- package/dist/compact.css +1 -1
- package/dist/compact.d.ts +1 -1
- package/dist/compact.mjs +1 -1
- package/dist/compact.scss +1 -1
- package/dist/compact.theme.css +1 -1
- package/dist/index.css +94 -38
- package/dist/index.d.ts +122 -30
- package/dist/index.json +157 -65
- package/dist/index.mjs +123 -67
- package/dist/index.scss +94 -38
- package/dist/index.theme.css +94 -38
- package/package.json +1 -1
- package/src/common/ams/focus.tokens.json +1 -1
- package/src/common/ams/link-appearance.tokens.json +2 -2
- package/src/components/ams/badge.tokens.json +28 -4
- package/src/components/ams/breadcrumb.tokens.json +1 -1
- package/src/components/ams/error-message.tokens.json +11 -0
- package/src/components/ams/{fieldset.tokens.json → field-set.tokens.json} +11 -2
- package/src/components/ams/field.tokens.json +17 -0
- package/src/components/ams/file-input.tokens.json +42 -0
- package/src/components/ams/link-list.tokens.json +2 -4
- package/src/components/ams/logo.tokens.json +1 -1
- package/src/components/ams/ordered-list.tokens.json +4 -0
- package/src/components/ams/paragraph.tokens.json +2 -4
- package/src/components/ams/screen.tokens.json +2 -2
- package/src/components/ams/search-field.tokens.json +11 -5
- package/src/components/ams/switch.tokens.json +6 -5
- package/src/components/ams/table.tokens.json +1 -1
- package/src/components/ams/tabs.tokens.json +1 -1
- package/src/components/ams/text-area.tokens.json +1 -1
- package/src/components/ams/unordered-list.tokens.json +4 -0
package/dist/index.json
CHANGED
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
}
|
|
115
115
|
},
|
|
116
116
|
"focus": {
|
|
117
|
-
"outline-offset": "
|
|
117
|
+
"outline-offset": "0.125rem"
|
|
118
118
|
},
|
|
119
119
|
"hyphenation": {
|
|
120
120
|
"hyphenate-limit-chars": "12 8 4",
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
"link-appearance": {
|
|
125
125
|
"color": "#004699",
|
|
126
126
|
"text-decoration-thickness": "0.125rem",
|
|
127
|
-
"text-underline-offset": "0.
|
|
127
|
+
"text-underline-offset": "0.3333em",
|
|
128
128
|
"hover": {
|
|
129
129
|
"color": "#102E62"
|
|
130
130
|
},
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
"text-decoration-line": "underline",
|
|
139
139
|
"hover": {
|
|
140
140
|
"text-decoration-thickness": "0.1875rem",
|
|
141
|
-
"text-underline-offset": "0.
|
|
141
|
+
"text-underline-offset": "0.2778em"
|
|
142
142
|
}
|
|
143
143
|
},
|
|
144
144
|
"subtle": {
|
|
@@ -160,7 +160,7 @@
|
|
|
160
160
|
"padding-block": ".75rem",
|
|
161
161
|
"padding-inline": "0",
|
|
162
162
|
"focus": {
|
|
163
|
-
"outline-offset": "
|
|
163
|
+
"outline-offset": "0.125rem"
|
|
164
164
|
},
|
|
165
165
|
"hover": {
|
|
166
166
|
"color": "#102E62"
|
|
@@ -255,11 +255,11 @@
|
|
|
255
255
|
"font-weight": 800,
|
|
256
256
|
"line-height": "1.6",
|
|
257
257
|
"padding-inline": ".5rem",
|
|
258
|
-
"
|
|
259
|
-
"background-color": "#
|
|
260
|
-
"color": "#
|
|
258
|
+
"black": {
|
|
259
|
+
"background-color": "#000000",
|
|
260
|
+
"color": "#FFFFFF"
|
|
261
261
|
},
|
|
262
|
-
"
|
|
262
|
+
"blue": {
|
|
263
263
|
"background-color": "#004699",
|
|
264
264
|
"color": "#FFFFFF"
|
|
265
265
|
},
|
|
@@ -271,6 +271,22 @@
|
|
|
271
271
|
"background-color": "#BED200",
|
|
272
272
|
"color": "#000000"
|
|
273
273
|
},
|
|
274
|
+
"grey-1": {
|
|
275
|
+
"background-color": "#E8E8E8",
|
|
276
|
+
"color": "#000000"
|
|
277
|
+
},
|
|
278
|
+
"grey-2": {
|
|
279
|
+
"background-color": "#BEBEBE",
|
|
280
|
+
"color": "#000000"
|
|
281
|
+
},
|
|
282
|
+
"grey-3": {
|
|
283
|
+
"background-color": "#767676",
|
|
284
|
+
"color": "#FFFFFF"
|
|
285
|
+
},
|
|
286
|
+
"light-blue": {
|
|
287
|
+
"background-color": "#009DE6",
|
|
288
|
+
"color": "#000000"
|
|
289
|
+
},
|
|
274
290
|
"magenta": {
|
|
275
291
|
"background-color": "#E50082",
|
|
276
292
|
"color": "#FFFFFF"
|
|
@@ -283,6 +299,14 @@
|
|
|
283
299
|
"background-color": "#A00078",
|
|
284
300
|
"color": "#FFFFFF"
|
|
285
301
|
},
|
|
302
|
+
"red": {
|
|
303
|
+
"background-color": "#EC0000",
|
|
304
|
+
"color": "#FFFFFF"
|
|
305
|
+
},
|
|
306
|
+
"white": {
|
|
307
|
+
"background-color": "#FFFFFF",
|
|
308
|
+
"color": "#000000"
|
|
309
|
+
},
|
|
286
310
|
"yellow": {
|
|
287
311
|
"background-color": "#FFE600",
|
|
288
312
|
"color": "#000000"
|
|
@@ -304,12 +328,12 @@
|
|
|
304
328
|
"separator": {
|
|
305
329
|
"background-image": "url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path fill='%23000000' fill-rule='evenodd' d='m9.757 32-2.9-2.91L19.937 16 6.857 2.91 9.757 0l16 16z'/></svg>\")"
|
|
306
330
|
},
|
|
307
|
-
"
|
|
331
|
+
"link": {
|
|
308
332
|
"color": "#004699",
|
|
309
|
-
"outline-offset": "
|
|
333
|
+
"outline-offset": "0.125rem",
|
|
310
334
|
"text-decoration-line": "none",
|
|
311
335
|
"text-decoration-thickness": "0.125rem",
|
|
312
|
-
"text-underline-offset": "0.
|
|
336
|
+
"text-underline-offset": "0.3333em",
|
|
313
337
|
"hover": {
|
|
314
338
|
"color": "#102E62",
|
|
315
339
|
"text-decoration-line": "underline"
|
|
@@ -324,7 +348,7 @@
|
|
|
324
348
|
"gap": "1rem",
|
|
325
349
|
"padding-block": ".5rem",
|
|
326
350
|
"padding-inline": "1rem",
|
|
327
|
-
"outline-offset": "
|
|
351
|
+
"outline-offset": "0.125rem",
|
|
328
352
|
"disabled": {
|
|
329
353
|
"cursor": "not-allowed"
|
|
330
354
|
},
|
|
@@ -379,13 +403,13 @@
|
|
|
379
403
|
"color": "#004699",
|
|
380
404
|
"text-decoration-line": "none",
|
|
381
405
|
"text-decoration-thickness": "0.125rem",
|
|
382
|
-
"text-underline-offset": "0.
|
|
406
|
+
"text-underline-offset": "0.3333em",
|
|
383
407
|
"hover": {
|
|
384
408
|
"color": "#102E62",
|
|
385
409
|
"text-decoration-line": "underline"
|
|
386
410
|
}
|
|
387
411
|
},
|
|
388
|
-
"outline-offset": "
|
|
412
|
+
"outline-offset": "0.125rem"
|
|
389
413
|
},
|
|
390
414
|
"checkbox": {
|
|
391
415
|
"color": "#000000",
|
|
@@ -393,7 +417,7 @@
|
|
|
393
417
|
"font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
|
|
394
418
|
"font-weight": 400,
|
|
395
419
|
"line-height": "1.6",
|
|
396
|
-
"outline-offset": "
|
|
420
|
+
"outline-offset": "0.125rem",
|
|
397
421
|
"checkmark": {
|
|
398
422
|
"border-color": "#004699",
|
|
399
423
|
"border-width": "0.125rem",
|
|
@@ -475,7 +499,7 @@
|
|
|
475
499
|
"font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
|
|
476
500
|
"font-weight": 400,
|
|
477
501
|
"line-height": "1.6",
|
|
478
|
-
"outline-offset": "
|
|
502
|
+
"outline-offset": "0.125rem",
|
|
479
503
|
"padding-block": ".5rem",
|
|
480
504
|
"padding-inline": "1.5rem",
|
|
481
505
|
"calender-picker-indicator": {
|
|
@@ -535,13 +559,70 @@
|
|
|
535
559
|
"gap": "1rem"
|
|
536
560
|
}
|
|
537
561
|
},
|
|
538
|
-
"
|
|
562
|
+
"error-message": {
|
|
563
|
+
"color": "#EC0000",
|
|
564
|
+
"font-family": "'Amsterdam Sans', Arial, sans-serif",
|
|
565
|
+
"font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
|
|
566
|
+
"font-weight": 400,
|
|
567
|
+
"line-height": "1.6"
|
|
568
|
+
},
|
|
569
|
+
"field-set": {
|
|
570
|
+
"invalid": {
|
|
571
|
+
"border-inline-start": "0.1875rem solid #EC0000",
|
|
572
|
+
"padding-inline-start": "1rem"
|
|
573
|
+
},
|
|
539
574
|
"legend": {
|
|
540
575
|
"color": "#000000",
|
|
541
576
|
"font-family": "'Amsterdam Sans', Arial, sans-serif",
|
|
542
577
|
"font-size": "clamp(1.313rem, calc(0.703vw + 1.173rem), 1.875rem)",
|
|
543
578
|
"font-weight": 800,
|
|
544
|
-
"line-height": "1.5"
|
|
579
|
+
"line-height": "1.5",
|
|
580
|
+
"margin-block-end": "1rem"
|
|
581
|
+
}
|
|
582
|
+
},
|
|
583
|
+
"field": {
|
|
584
|
+
"gap": ".75rem",
|
|
585
|
+
"invalid": {
|
|
586
|
+
"border-inline-start": "0.1875rem solid #EC0000",
|
|
587
|
+
"padding-inline-start": "1rem"
|
|
588
|
+
}
|
|
589
|
+
},
|
|
590
|
+
"file-input": {
|
|
591
|
+
"background-color": "#FFFFFF",
|
|
592
|
+
"border": "0.0625rem dashed #767676",
|
|
593
|
+
"color": "#000000",
|
|
594
|
+
"cursor": "pointer",
|
|
595
|
+
"font-family": "'Amsterdam Sans', Arial, sans-serif",
|
|
596
|
+
"font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
|
|
597
|
+
"font-weight": 400,
|
|
598
|
+
"line-height": "1.6",
|
|
599
|
+
"outline-offset": "0.125rem",
|
|
600
|
+
"padding-block": "1rem",
|
|
601
|
+
"padding-inline": "1rem",
|
|
602
|
+
"disabled": {
|
|
603
|
+
"color": "#BEBEBE",
|
|
604
|
+
"cursor": "not-allowed"
|
|
605
|
+
},
|
|
606
|
+
"file-selector-button": {
|
|
607
|
+
"background-color": "#FFFFFF",
|
|
608
|
+
"box-shadow": "inset 0 0 0 0.125rem #004699",
|
|
609
|
+
"color": "#004699",
|
|
610
|
+
"cursor": "pointer",
|
|
611
|
+
"margin-inline-end": "1rem",
|
|
612
|
+
"padding-block": ".5rem",
|
|
613
|
+
"padding-inline": "1rem",
|
|
614
|
+
"hover": {
|
|
615
|
+
"box-shadow": "inset 0 0 0 0.1875rem #102E62",
|
|
616
|
+
"color": "#102E62"
|
|
617
|
+
},
|
|
618
|
+
"disabled": {
|
|
619
|
+
"box-shadow": "inset 0 0 0 0.125rem #BEBEBE",
|
|
620
|
+
"color": "#BEBEBE",
|
|
621
|
+
"cursor": "not-allowed"
|
|
622
|
+
},
|
|
623
|
+
"forced-color-mode": {
|
|
624
|
+
"border": "0.125rem solid"
|
|
625
|
+
}
|
|
545
626
|
}
|
|
546
627
|
},
|
|
547
628
|
"form-field-character-counter": {
|
|
@@ -586,7 +667,7 @@
|
|
|
586
667
|
"column-gap": "clamp(1rem, calc(3.125vw + 0.375rem), 3.5rem)",
|
|
587
668
|
"padding-block": "1rem",
|
|
588
669
|
"logo-link": {
|
|
589
|
-
"outline-offset": "
|
|
670
|
+
"outline-offset": "0.125rem"
|
|
590
671
|
}
|
|
591
672
|
},
|
|
592
673
|
"heading": {
|
|
@@ -623,7 +704,7 @@
|
|
|
623
704
|
},
|
|
624
705
|
"icon-button": {
|
|
625
706
|
"color": "#004699",
|
|
626
|
-
"outline-offset": "
|
|
707
|
+
"outline-offset": "0.125rem",
|
|
627
708
|
"hover": {
|
|
628
709
|
"background-color": "rgba(0, 70, 153, 0.125)",
|
|
629
710
|
"color": "#102E62"
|
|
@@ -684,20 +765,18 @@
|
|
|
684
765
|
"link": {
|
|
685
766
|
"color": "#004699",
|
|
686
767
|
"font-family": "'Amsterdam Sans', Arial, sans-serif",
|
|
768
|
+
"font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
|
|
687
769
|
"font-weight": 400,
|
|
688
770
|
"gap": "0.5em",
|
|
689
|
-
"
|
|
771
|
+
"line-height": "1.6",
|
|
772
|
+
"outline-offset": "0.125rem",
|
|
690
773
|
"text-decoration-line": "none",
|
|
691
774
|
"text-decoration-thickness": "0.125rem",
|
|
692
|
-
"text-underline-offset": "0.
|
|
775
|
+
"text-underline-offset": "0.3333em",
|
|
693
776
|
"small": {
|
|
694
777
|
"font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
|
|
695
778
|
"line-height": "1.6"
|
|
696
779
|
},
|
|
697
|
-
"medium": {
|
|
698
|
-
"font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
|
|
699
|
-
"line-height": "1.6"
|
|
700
|
-
},
|
|
701
780
|
"large": {
|
|
702
781
|
"font-size": "clamp(1.313rem, calc(0.703vw + 1.173rem), 1.875rem)",
|
|
703
782
|
"line-height": "1.5"
|
|
@@ -724,20 +803,20 @@
|
|
|
724
803
|
"color": "#004699",
|
|
725
804
|
"font-family": "'Amsterdam Sans', Arial, sans-serif",
|
|
726
805
|
"font-weight": 400,
|
|
727
|
-
"outline-offset": "
|
|
806
|
+
"outline-offset": "0.125rem",
|
|
728
807
|
"hover": {
|
|
729
808
|
"color": "#102E62"
|
|
730
809
|
},
|
|
731
810
|
"inline": {
|
|
732
811
|
"text-decoration-line": "underline",
|
|
733
812
|
"text-decoration-thickness": "0.125rem",
|
|
734
|
-
"text-underline-offset": "0.
|
|
813
|
+
"text-underline-offset": "0.3333em",
|
|
735
814
|
"font-family": "inherit",
|
|
736
815
|
"font-size": "inherit",
|
|
737
816
|
"line-height": "inherit",
|
|
738
817
|
"hover": {
|
|
739
818
|
"text-decoration-thickness": "0.1875rem",
|
|
740
|
-
"text-underline-offset": "0.
|
|
819
|
+
"text-underline-offset": "0.2778em"
|
|
741
820
|
},
|
|
742
821
|
"visited": {
|
|
743
822
|
"color": "#A00078"
|
|
@@ -748,10 +827,10 @@
|
|
|
748
827
|
"line-height": "1.6",
|
|
749
828
|
"text-decoration-line": "underline",
|
|
750
829
|
"text-decoration-thickness": "0.125rem",
|
|
751
|
-
"text-underline-offset": "0.
|
|
830
|
+
"text-underline-offset": "0.3333em",
|
|
752
831
|
"hover": {
|
|
753
832
|
"text-decoration-thickness": "0.1875rem",
|
|
754
|
-
"text-underline-offset": "0.
|
|
833
|
+
"text-underline-offset": "0.2778em"
|
|
755
834
|
}
|
|
756
835
|
},
|
|
757
836
|
"on-background-dark": {
|
|
@@ -774,7 +853,7 @@
|
|
|
774
853
|
}
|
|
775
854
|
},
|
|
776
855
|
"logo": {
|
|
777
|
-
"
|
|
856
|
+
"block-size": "2.5rem",
|
|
778
857
|
"emblem": {
|
|
779
858
|
"color": "#EC0000"
|
|
780
859
|
},
|
|
@@ -812,6 +891,10 @@
|
|
|
812
891
|
"inverse-color": "#FFFFFF",
|
|
813
892
|
"line-height": "1.6",
|
|
814
893
|
"list-style-type": "decimal",
|
|
894
|
+
"small": {
|
|
895
|
+
"font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
|
|
896
|
+
"line-height": "1.6"
|
|
897
|
+
},
|
|
815
898
|
"item": {
|
|
816
899
|
"margin-inline-start": "2.25rem",
|
|
817
900
|
"padding-inline-start": "0.25rem"
|
|
@@ -842,10 +925,10 @@
|
|
|
842
925
|
"font-weight": 400,
|
|
843
926
|
"gap": "0.5rem",
|
|
844
927
|
"line-height": "1.6",
|
|
845
|
-
"outline-offset": "
|
|
928
|
+
"outline-offset": "0.125rem",
|
|
846
929
|
"text-decoration-line": "none",
|
|
847
930
|
"text-decoration-thickness": "0.125rem",
|
|
848
|
-
"text-underline-offset": "0.
|
|
931
|
+
"text-underline-offset": "0.3333em",
|
|
849
932
|
"hover": {
|
|
850
933
|
"color": "#102E62",
|
|
851
934
|
"text-decoration-line": "underline"
|
|
@@ -859,11 +942,11 @@
|
|
|
859
942
|
"font-weight": 400,
|
|
860
943
|
"line-height": "1.6",
|
|
861
944
|
"button": {
|
|
862
|
-
"outline-offset": "
|
|
945
|
+
"outline-offset": "0.125rem",
|
|
863
946
|
"padding-inline": ".75rem",
|
|
864
947
|
"text-decoration-line": "none",
|
|
865
948
|
"text-decoration-thickness": "0.125rem",
|
|
866
|
-
"text-underline-offset": "0.
|
|
949
|
+
"text-underline-offset": "0.3333em",
|
|
867
950
|
"current": {
|
|
868
951
|
"font-weight": 800
|
|
869
952
|
},
|
|
@@ -876,16 +959,14 @@
|
|
|
876
959
|
"paragraph": {
|
|
877
960
|
"color": "#000000",
|
|
878
961
|
"font-family": "'Amsterdam Sans', Arial, sans-serif",
|
|
962
|
+
"font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
|
|
879
963
|
"font-weight": 400,
|
|
964
|
+
"line-height": "1.6",
|
|
880
965
|
"inverse-color": "#FFFFFF",
|
|
881
966
|
"small": {
|
|
882
967
|
"font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
|
|
883
968
|
"line-height": "1.6"
|
|
884
969
|
},
|
|
885
|
-
"medium": {
|
|
886
|
-
"font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
|
|
887
|
-
"line-height": "1.6"
|
|
888
|
-
},
|
|
889
970
|
"large": {
|
|
890
971
|
"font-size": "clamp(1.313rem, calc(0.703vw + 1.173rem), 1.875rem)",
|
|
891
972
|
"line-height": "1.5"
|
|
@@ -897,7 +978,7 @@
|
|
|
897
978
|
"font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
|
|
898
979
|
"font-weight": 400,
|
|
899
980
|
"line-height": "1.6",
|
|
900
|
-
"outline-offset": "
|
|
981
|
+
"outline-offset": "0.125rem",
|
|
901
982
|
"circle": {
|
|
902
983
|
"border-color": "#004699",
|
|
903
984
|
"border-width": "0.125rem",
|
|
@@ -953,22 +1034,22 @@
|
|
|
953
1034
|
"screen": {
|
|
954
1035
|
"background-color": "#FFFFFF",
|
|
955
1036
|
"wide": {
|
|
956
|
-
"max-
|
|
1037
|
+
"max-inline-size": "100rem"
|
|
957
1038
|
},
|
|
958
1039
|
"x-wide": {
|
|
959
|
-
"max-
|
|
1040
|
+
"max-inline-size": "132rem"
|
|
960
1041
|
}
|
|
961
1042
|
},
|
|
962
1043
|
"search-field": {
|
|
963
1044
|
"button": {
|
|
964
1045
|
"background-color": "#004699",
|
|
965
1046
|
"color": "#FFFFFF",
|
|
966
|
-
"outline-offset": "
|
|
1047
|
+
"outline-offset": "0.125rem",
|
|
1048
|
+
"padding-block": ".5rem",
|
|
1049
|
+
"padding-inline": ".5rem",
|
|
967
1050
|
"hover": {
|
|
968
1051
|
"background-color": "#102E62"
|
|
969
|
-
}
|
|
970
|
-
"padding-block": ".5rem",
|
|
971
|
-
"padding-inline": ".5rem"
|
|
1052
|
+
}
|
|
972
1053
|
},
|
|
973
1054
|
"input": {
|
|
974
1055
|
"background-color": "#FFFFFF",
|
|
@@ -978,18 +1059,24 @@
|
|
|
978
1059
|
"font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
|
|
979
1060
|
"font-weight": 400,
|
|
980
1061
|
"line-height": "1.6",
|
|
981
|
-
"outline-offset": "
|
|
1062
|
+
"outline-offset": "0.125rem",
|
|
982
1063
|
"padding-block": ".5rem",
|
|
983
1064
|
"padding-inline": "1rem",
|
|
984
1065
|
"cancel-button": {
|
|
985
1066
|
"background-image": "url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path fill='%23004699' fill-rule='evenodd' d='M29.333 5.47 26.53 2.668 16 13.187 5.47 2.666 2.668 5.47 13.187 16 2.666 26.53l2.804 2.803L16 18.813l10.53 10.52 2.803-2.804L18.813 16z'/></svg>\")",
|
|
1067
|
+
"block-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
|
|
986
1068
|
"color": "#004699",
|
|
987
|
-
"
|
|
988
|
-
"width": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)"
|
|
1069
|
+
"inline-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)"
|
|
989
1070
|
},
|
|
990
1071
|
"hover": {
|
|
991
1072
|
"box-shadow": "inset 0 0 0 0.125rem #000000"
|
|
992
1073
|
},
|
|
1074
|
+
"invalid": {
|
|
1075
|
+
"box-shadow": "inset 0 0 0 0.0625rem #EC0000",
|
|
1076
|
+
"hover": {
|
|
1077
|
+
"box-shadow": "inset 0 0 0 0.125rem #EC0000"
|
|
1078
|
+
}
|
|
1079
|
+
},
|
|
993
1080
|
"placeholder": {
|
|
994
1081
|
"color": "#767676"
|
|
995
1082
|
}
|
|
@@ -1005,7 +1092,7 @@
|
|
|
1005
1092
|
"font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
|
|
1006
1093
|
"font-weight": 400,
|
|
1007
1094
|
"line-height": "1.6",
|
|
1008
|
-
"outline-offset": "
|
|
1095
|
+
"outline-offset": "0.125rem",
|
|
1009
1096
|
"padding-block": ".5rem",
|
|
1010
1097
|
"padding-inline": "1rem calc(2 * 1rem + 1em)",
|
|
1011
1098
|
"disabled": {
|
|
@@ -1035,7 +1122,7 @@
|
|
|
1035
1122
|
"font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
|
|
1036
1123
|
"font-weight": 400,
|
|
1037
1124
|
"line-height": "1.6",
|
|
1038
|
-
"outline-offset": "
|
|
1125
|
+
"outline-offset": "0.125rem",
|
|
1039
1126
|
"padding-block": ".5rem",
|
|
1040
1127
|
"padding-inline": "1rem",
|
|
1041
1128
|
"hover": {
|
|
@@ -1069,21 +1156,22 @@
|
|
|
1069
1156
|
}
|
|
1070
1157
|
},
|
|
1071
1158
|
"switch": {
|
|
1072
|
-
"font-family": "'Amsterdam Sans', Arial, sans-serif",
|
|
1073
1159
|
"background-color": "#767676",
|
|
1074
|
-
"
|
|
1160
|
+
"font-family": "'Amsterdam Sans', Arial, sans-serif",
|
|
1161
|
+
"outline-offset": "0.125rem",
|
|
1162
|
+
"inline-size": "3.5rem",
|
|
1075
1163
|
"thumb": {
|
|
1076
1164
|
"background-color": "#FFFFFF",
|
|
1077
|
-
"
|
|
1078
|
-
"
|
|
1165
|
+
"inline-size": "1.75rem",
|
|
1166
|
+
"block-size": "1.75rem",
|
|
1079
1167
|
"hover": {
|
|
1168
|
+
"box-shadow": "0 0 0 0.125rem #102E62",
|
|
1080
1169
|
"color": "#102E62"
|
|
1081
1170
|
}
|
|
1082
1171
|
},
|
|
1083
1172
|
"checked": {
|
|
1084
1173
|
"background-color": "#004699"
|
|
1085
1174
|
},
|
|
1086
|
-
"outline-offset": "2px",
|
|
1087
1175
|
"disabled": {
|
|
1088
1176
|
"background-color": "#BEBEBE"
|
|
1089
1177
|
}
|
|
@@ -1098,7 +1186,7 @@
|
|
|
1098
1186
|
"font-weight": 800
|
|
1099
1187
|
},
|
|
1100
1188
|
"cell": {
|
|
1101
|
-
"border-
|
|
1189
|
+
"border-block-end": "0.0625rem solid #E8E8E8",
|
|
1102
1190
|
"padding-block": "1rem",
|
|
1103
1191
|
"padding-inline": "1rem"
|
|
1104
1192
|
},
|
|
@@ -1109,7 +1197,7 @@
|
|
|
1109
1197
|
"tabs": {
|
|
1110
1198
|
"list": {
|
|
1111
1199
|
"background-color": "#FFFFFF",
|
|
1112
|
-
"border-
|
|
1200
|
+
"border-block-end": "0.125rem solid #004699"
|
|
1113
1201
|
},
|
|
1114
1202
|
"button": {
|
|
1115
1203
|
"color": "#004699",
|
|
@@ -1143,8 +1231,8 @@
|
|
|
1143
1231
|
"font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
|
|
1144
1232
|
"font-weight": 400,
|
|
1145
1233
|
"line-height": "1.6",
|
|
1146
|
-
"min-
|
|
1147
|
-
"outline-offset": "
|
|
1234
|
+
"min-block-size": "calc(1.6 * 1em + 2 * 0.5rem)",
|
|
1235
|
+
"outline-offset": "0.125rem",
|
|
1148
1236
|
"padding-block": "0.5rem",
|
|
1149
1237
|
"padding-inline": "1rem",
|
|
1150
1238
|
"disabled": {
|
|
@@ -1174,7 +1262,7 @@
|
|
|
1174
1262
|
"font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
|
|
1175
1263
|
"font-weight": 400,
|
|
1176
1264
|
"line-height": "1.6",
|
|
1177
|
-
"outline-offset": "
|
|
1265
|
+
"outline-offset": "0.125rem",
|
|
1178
1266
|
"padding-block": ".5rem",
|
|
1179
1267
|
"padding-inline": "1rem",
|
|
1180
1268
|
"disabled": {
|
|
@@ -1203,7 +1291,7 @@
|
|
|
1203
1291
|
"font-size": "clamp(1.125rem, calc(0.469vw + 1.031rem), 1.5rem)",
|
|
1204
1292
|
"font-weight": 400,
|
|
1205
1293
|
"line-height": "1.6",
|
|
1206
|
-
"outline-offset": "
|
|
1294
|
+
"outline-offset": "0.125rem",
|
|
1207
1295
|
"padding-block": ".5rem",
|
|
1208
1296
|
"padding-inline": "1rem",
|
|
1209
1297
|
"calender-picker-indicator": {
|
|
@@ -1246,13 +1334,13 @@
|
|
|
1246
1334
|
"line-height": "1.5",
|
|
1247
1335
|
"text-decoration-line": "none",
|
|
1248
1336
|
"text-decoration-thickness": "0.125rem",
|
|
1249
|
-
"text-underline-offset": "0.
|
|
1337
|
+
"text-underline-offset": "0.3333em",
|
|
1250
1338
|
"hover": {
|
|
1251
1339
|
"color": "#102E62",
|
|
1252
1340
|
"text-decoration-line": "underline"
|
|
1253
1341
|
}
|
|
1254
1342
|
},
|
|
1255
|
-
"outline-offset": "
|
|
1343
|
+
"outline-offset": "0.125rem"
|
|
1256
1344
|
},
|
|
1257
1345
|
"unordered-list": {
|
|
1258
1346
|
"color": "#000000",
|
|
@@ -1273,6 +1361,10 @@
|
|
|
1273
1361
|
"margin-inline-start": "0.875rem",
|
|
1274
1362
|
"padding-inline-start": "0.875rem"
|
|
1275
1363
|
}
|
|
1364
|
+
},
|
|
1365
|
+
"small": {
|
|
1366
|
+
"font-size": "clamp(0.964rem, calc(0.295vw + 0.905rem), 1.2rem)",
|
|
1367
|
+
"line-height": "1.6"
|
|
1276
1368
|
}
|
|
1277
1369
|
}
|
|
1278
1370
|
}
|