@ponchia/ui 0.9.0 → 0.10.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 +70 -4
- package/MIGRATIONS.json +117 -27
- package/README.md +17 -9
- package/behaviors/index.d.ts +0 -2
- package/behaviors/index.d.ts.map +1 -1
- package/behaviors/index.js +0 -2
- package/behaviors/popover.js +4 -4
- package/classes/classes.json +24 -9
- package/classes/index.d.ts +8 -3
- package/classes/index.js +20 -3
- package/classes/vscode.css-custom-data.json +10 -10
- package/css/app.css +52 -30
- package/css/base.css +10 -14
- package/css/content.css +23 -21
- package/css/disclosure.css +17 -17
- package/css/feedback.css +15 -15
- package/css/forms.css +8 -7
- package/css/navigation.css +3 -3
- package/css/overlay.css +13 -29
- package/css/primitives.css +48 -28
- package/css/report.css +66 -42
- package/css/state.css +95 -6
- package/css/table.css +3 -3
- package/css/tokens.css +10 -10
- package/css/workbench.css +21 -9
- package/dist/bronto.css +1 -1
- package/dist/css/app.css +1 -1
- package/dist/css/base.css +1 -1
- package/dist/css/content.css +1 -1
- package/dist/css/disclosure.css +1 -1
- package/dist/css/feedback.css +1 -1
- package/dist/css/forms.css +1 -1
- package/dist/css/navigation.css +1 -1
- package/dist/css/overlay.css +1 -1
- package/dist/css/primitives.css +1 -1
- package/dist/css/report-kit.css +1 -1
- package/dist/css/report.css +1 -1
- package/dist/css/state.css +1 -1
- package/dist/css/table.css +1 -1
- package/dist/css/tokens.css +1 -1
- package/dist/css/workbench.css +1 -1
- package/docs/adr/0004-prune-unused-adapters.md +5 -1
- package/docs/adr/0005-productive-tools-and-editorial-reports.md +58 -0
- package/docs/adr/0006-trusted-publishing.md +92 -0
- package/docs/architecture.md +16 -23
- package/docs/command.md +1 -2
- package/docs/compositions.md +110 -0
- package/docs/frontier-primitives.md +1 -2
- package/docs/migrations/0.9-to-0.10.md +47 -0
- package/docs/package-contract.md +9 -12
- package/docs/reference.md +30 -18
- package/docs/reporting.md +15 -9
- package/docs/stability.md +19 -55
- package/docs/state.md +47 -0
- package/docs/usage.md +18 -30
- package/llms.txt +7 -18
- package/package.json +13 -55
- package/tokens/figma.variables.json +20 -20
- package/tokens/index.js +10 -10
- package/tokens/index.json +20 -20
- package/tokens/resolved.json +10 -10
- package/tokens/tokens.dtcg.json +20 -20
- package/behaviors/modal.d.ts +0 -45
- package/behaviors/modal.d.ts.map +0 -1
- package/behaviors/modal.js +0 -373
- package/qwik/index.d.ts +0 -48
- package/qwik/index.d.ts.map +0 -1
- package/qwik/index.js +0 -227
- package/react/index.d.ts +0 -45
- package/react/index.d.ts.map +0 -1
- package/react/index.js +0 -165
- package/solid/index.d.ts +0 -75
- package/solid/index.d.ts.map +0 -1
- package/solid/index.js +0 -172
- package/svelte/index.d.ts +0 -114
- package/svelte/index.d.ts.map +0 -1
- package/svelte/index.js +0 -197
- package/vue/index.d.ts +0 -116
- package/vue/index.d.ts.map +0 -1
- package/vue/index.js +0 -266
package/css/navigation.css
CHANGED
|
@@ -12,16 +12,16 @@
|
|
|
12
12
|
color: var(--text);
|
|
13
13
|
cursor: pointer;
|
|
14
14
|
display: inline-flex;
|
|
15
|
-
font-family: var(--
|
|
15
|
+
font-family: var(--sans);
|
|
16
16
|
font-size: var(--text-xs);
|
|
17
17
|
font-weight: 600;
|
|
18
18
|
gap: 0.4rem;
|
|
19
19
|
justify-content: center;
|
|
20
|
-
letter-spacing:
|
|
20
|
+
letter-spacing: 0;
|
|
21
21
|
min-block-size: 2rem;
|
|
22
22
|
min-inline-size: 7rem;
|
|
23
23
|
padding: 0.42rem 0.66rem;
|
|
24
|
-
text-transform:
|
|
24
|
+
text-transform: none;
|
|
25
25
|
transition:
|
|
26
26
|
background-color var(--duration-fast) var(--ease-standard),
|
|
27
27
|
border-color var(--duration-fast) var(--ease-standard),
|
package/css/overlay.css
CHANGED
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
/* Enter AND exit, zero JS — `@starting-style` + `transition-behavior:
|
|
34
34
|
allow-discrete` keep the native <dialog> (and its backdrop) in the top
|
|
35
35
|
layer while it transitions out on close, so it fades/scales both ways
|
|
36
|
-
instead of only animating in.
|
|
37
|
-
|
|
36
|
+
instead of only animating in. The native dialog owns top-layer state;
|
|
37
|
+
an application toggles it through showModal() and close().
|
|
38
38
|
Needs a 2026-era floor (see CONTRIBUTING → Browser floor). */
|
|
39
39
|
dialog.ui-modal {
|
|
40
40
|
opacity: 0;
|
|
@@ -76,24 +76,8 @@ dialog.ui-modal[open]::backdrop {
|
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
-
/*
|
|
80
|
-
|
|
81
|
-
Backdrop and top-layer stacking are then the consumer's responsibility
|
|
82
|
-
(the native <dialog> path gets them free); focus-trapping no longer is —
|
|
83
|
-
mark the overlay `data-bronto-modal` and run `initModal` for an
|
|
84
|
-
inert-based trap + focus-return + Escape signal. */
|
|
85
|
-
.ui-modal.is-open {
|
|
86
|
-
animation: uiToastIn var(--duration-base) var(--ease-spring) both;
|
|
87
|
-
display: grid;
|
|
88
|
-
grid-template-rows: auto 1fr auto;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
/* Background scroll-lock. A native <dialog> top layer does NOT stop the page
|
|
92
|
-
behind it scrolling, and the no-JS native path can't lock it in script — so
|
|
93
|
-
lock it in CSS, for both the native [open] dialog and the controlled .is-open
|
|
94
|
-
overlay (incl. the drawer modifier, same base). */
|
|
95
|
-
html:has(dialog.ui-modal[open]),
|
|
96
|
-
html:has(.ui-modal.is-open) {
|
|
79
|
+
/* Native dialogs lock the document while open. */
|
|
80
|
+
html:has(dialog.ui-modal[open]) {
|
|
97
81
|
overflow: hidden;
|
|
98
82
|
}
|
|
99
83
|
|
|
@@ -108,11 +92,11 @@ html:has(.ui-modal.is-open) {
|
|
|
108
92
|
|
|
109
93
|
.ui-modal__title {
|
|
110
94
|
color: var(--text);
|
|
111
|
-
font-family: var(--
|
|
95
|
+
font-family: var(--sans);
|
|
112
96
|
font-size: var(--text-lg);
|
|
113
|
-
letter-spacing:
|
|
97
|
+
letter-spacing: 0;
|
|
114
98
|
margin: 0;
|
|
115
|
-
text-transform:
|
|
99
|
+
text-transform: none;
|
|
116
100
|
}
|
|
117
101
|
|
|
118
102
|
.ui-modal__body {
|
|
@@ -136,7 +120,7 @@ html:has(.ui-modal.is-open) {
|
|
|
136
120
|
color: var(--text);
|
|
137
121
|
cursor: pointer;
|
|
138
122
|
flex: 0 0 auto;
|
|
139
|
-
font-family: var(--
|
|
123
|
+
font-family: var(--sans);
|
|
140
124
|
line-height: 1;
|
|
141
125
|
padding: 0.34rem 0.5rem;
|
|
142
126
|
}
|
|
@@ -283,11 +267,11 @@ html:has(.ui-modal.is-open) {
|
|
|
283
267
|
|
|
284
268
|
.ui-menu__label {
|
|
285
269
|
color: var(--text-dim);
|
|
286
|
-
font-family: var(--
|
|
270
|
+
font-family: var(--sans);
|
|
287
271
|
font-size: var(--text-2xs);
|
|
288
|
-
letter-spacing:
|
|
272
|
+
letter-spacing: 0;
|
|
289
273
|
padding: 0.45rem 0.55rem 0.2rem;
|
|
290
|
-
text-transform:
|
|
274
|
+
text-transform: none;
|
|
291
275
|
}
|
|
292
276
|
|
|
293
277
|
/* Composes `.ui-row` (css/row.css) — a menu item IS a dense selectable row,
|
|
@@ -296,7 +280,7 @@ html:has(.ui-modal.is-open) {
|
|
|
296
280
|
wants, and the leading bullet below. `row.css` is in the core bundle, which
|
|
297
281
|
is what lets a core component compose it. */
|
|
298
282
|
.ui-menu__item {
|
|
299
|
-
font-family: var(--
|
|
283
|
+
font-family: var(--sans);
|
|
300
284
|
font-size: var(--text-sm);
|
|
301
285
|
padding: 0.5rem 0.55rem;
|
|
302
286
|
}
|
|
@@ -394,7 +378,7 @@ html:has(.ui-modal.is-open) {
|
|
|
394
378
|
border-radius: var(--radius-sm);
|
|
395
379
|
color: var(--text-soft);
|
|
396
380
|
cursor: pointer;
|
|
397
|
-
font-family: var(--
|
|
381
|
+
font-family: var(--sans);
|
|
398
382
|
font-size: var(--text-sm);
|
|
399
383
|
padding: 0.5rem 0.55rem;
|
|
400
384
|
}
|
package/css/primitives.css
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
/* --- Layout composition --- */
|
|
7
7
|
|
|
8
8
|
.ui-stack {
|
|
9
|
+
min-inline-size: 0;
|
|
10
|
+
grid-template-columns: minmax(0, 1fr);
|
|
9
11
|
display: grid;
|
|
10
12
|
gap: var(--stack-gap, var(--space-md));
|
|
11
13
|
}
|
|
@@ -169,7 +171,7 @@
|
|
|
169
171
|
.ui-app-metrics {
|
|
170
172
|
display: grid;
|
|
171
173
|
gap: var(--space-md);
|
|
172
|
-
grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
|
|
174
|
+
grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
|
|
173
175
|
}
|
|
174
176
|
|
|
175
177
|
/* Inside an opt-in .ui-cq container, collapse to one column when the
|
|
@@ -201,27 +203,27 @@
|
|
|
201
203
|
.ui-stat__label,
|
|
202
204
|
.ui-app-metric__label {
|
|
203
205
|
color: var(--text-dim);
|
|
204
|
-
font-family: var(--
|
|
206
|
+
font-family: var(--sans);
|
|
205
207
|
font-size: var(--text-2xs);
|
|
206
|
-
letter-spacing:
|
|
207
|
-
text-transform:
|
|
208
|
+
letter-spacing: 0;
|
|
209
|
+
text-transform: none;
|
|
208
210
|
}
|
|
209
211
|
|
|
210
212
|
.ui-stat__value,
|
|
211
213
|
.ui-app-metric__value {
|
|
212
214
|
color: var(--text);
|
|
213
|
-
font-family: var(--
|
|
215
|
+
font-family: var(--sans);
|
|
214
216
|
font-size: 1.9rem;
|
|
215
217
|
font-variant-numeric: tabular-nums;
|
|
216
218
|
font-weight: var(--display-weight-strong);
|
|
217
|
-
letter-spacing: 0
|
|
219
|
+
letter-spacing: 0;
|
|
218
220
|
line-height: 1.05;
|
|
219
221
|
overflow-wrap: anywhere; /* break an unspaced ID/hash rather than overflow */
|
|
220
222
|
}
|
|
221
223
|
|
|
222
224
|
.ui-stat__delta,
|
|
223
225
|
.ui-app-metric__delta {
|
|
224
|
-
font-family: var(--
|
|
226
|
+
font-family: var(--sans);
|
|
225
227
|
font-size: var(--text-xs);
|
|
226
228
|
}
|
|
227
229
|
|
|
@@ -329,18 +331,18 @@
|
|
|
329
331
|
color: var(--success);
|
|
330
332
|
}
|
|
331
333
|
|
|
332
|
-
/* --- Eyebrow / section label —
|
|
334
|
+
/* --- Eyebrow / section label — supporting text --- */
|
|
333
335
|
|
|
334
336
|
.ui-eyebrow {
|
|
335
337
|
/* accent-strong, not accent: this is small bold text and must clear
|
|
336
338
|
WCAG AA 4.5:1 on the soft/tinted surfaces eyebrows sit on too. */
|
|
337
339
|
color: var(--accent-text);
|
|
338
|
-
font-family: var(--
|
|
340
|
+
font-family: var(--sans);
|
|
339
341
|
font-size: var(--text-xs);
|
|
340
342
|
font-weight: 700;
|
|
341
|
-
letter-spacing:
|
|
343
|
+
letter-spacing: 0;
|
|
342
344
|
margin: 0;
|
|
343
|
-
text-transform:
|
|
345
|
+
text-transform: none;
|
|
344
346
|
}
|
|
345
347
|
|
|
346
348
|
.ui-eyebrow--muted {
|
|
@@ -363,17 +365,17 @@
|
|
|
363
365
|
color: var(--button-text);
|
|
364
366
|
cursor: pointer;
|
|
365
367
|
display: inline-flex;
|
|
366
|
-
font-family: var(--
|
|
368
|
+
font-family: var(--sans);
|
|
367
369
|
font-size: var(--text-sm);
|
|
368
370
|
font-weight: 600;
|
|
369
371
|
gap: 0.45rem;
|
|
370
372
|
justify-content: center;
|
|
371
|
-
letter-spacing:
|
|
373
|
+
letter-spacing: 0;
|
|
372
374
|
line-height: 1;
|
|
373
375
|
min-block-size: 2.4rem;
|
|
374
376
|
min-inline-size: 2.4rem;
|
|
375
377
|
padding: 0.66rem 1rem;
|
|
376
|
-
text-transform:
|
|
378
|
+
text-transform: none;
|
|
377
379
|
transition:
|
|
378
380
|
background-color var(--duration-fast) var(--ease-standard),
|
|
379
381
|
border-color var(--duration-fast) var(--ease-standard),
|
|
@@ -554,14 +556,14 @@
|
|
|
554
556
|
text-decoration: none;
|
|
555
557
|
}
|
|
556
558
|
|
|
557
|
-
/* CTA: the
|
|
559
|
+
/* CTA: the accent action link with a directional cue,
|
|
558
560
|
composed from the same tokens as .ui-eyebrow + the arrow glyph. */
|
|
559
561
|
.ui-link--cta {
|
|
560
562
|
color: var(--accent-text);
|
|
561
|
-
font-family: var(--
|
|
563
|
+
font-family: var(--sans);
|
|
562
564
|
font-weight: 700;
|
|
563
|
-
letter-spacing:
|
|
564
|
-
text-transform:
|
|
565
|
+
letter-spacing: 0;
|
|
566
|
+
text-transform: none;
|
|
565
567
|
}
|
|
566
568
|
|
|
567
569
|
.ui-link--arrow::after,
|
|
@@ -603,14 +605,14 @@
|
|
|
603
605
|
border-radius: var(--radius-sm);
|
|
604
606
|
color: var(--text-soft);
|
|
605
607
|
display: inline-flex;
|
|
606
|
-
font-family: var(--
|
|
608
|
+
font-family: var(--sans);
|
|
607
609
|
font-size: var(--text-2xs);
|
|
608
610
|
gap: 0.36rem;
|
|
609
|
-
letter-spacing:
|
|
611
|
+
letter-spacing: 0;
|
|
610
612
|
line-height: 1;
|
|
611
613
|
min-block-size: 1.7rem;
|
|
612
614
|
padding: 0.32rem 0.55rem;
|
|
613
|
-
text-transform:
|
|
615
|
+
text-transform: none;
|
|
614
616
|
}
|
|
615
617
|
|
|
616
618
|
.ui-chip--accent {
|
|
@@ -619,6 +621,24 @@
|
|
|
619
621
|
border-color: var(--accent);
|
|
620
622
|
}
|
|
621
623
|
|
|
624
|
+
/* Static labels in a pane header need less height than a clickable control. */
|
|
625
|
+
.ui-chip--dense {
|
|
626
|
+
min-block-size: 1.25rem;
|
|
627
|
+
padding: 0.15rem 0.4rem;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.ui-chip--dense:is(button, a, [role='button']) {
|
|
631
|
+
min-block-size: var(--tap-target-min);
|
|
632
|
+
min-inline-size: var(--tap-target-min);
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
@media (pointer: coarse) {
|
|
636
|
+
.ui-chip--dense:is(button, a, [role='button']) {
|
|
637
|
+
min-block-size: var(--tap-target);
|
|
638
|
+
min-inline-size: var(--tap-target);
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
|
|
622
642
|
/* --- Badge / status pill --- */
|
|
623
643
|
|
|
624
644
|
.ui-badge {
|
|
@@ -628,14 +648,14 @@
|
|
|
628
648
|
border-radius: var(--radius-sm);
|
|
629
649
|
color: var(--text-soft);
|
|
630
650
|
display: inline-flex;
|
|
631
|
-
font-family: var(--
|
|
651
|
+
font-family: var(--sans);
|
|
632
652
|
font-size: var(--text-2xs);
|
|
633
653
|
font-weight: 700;
|
|
634
654
|
gap: 0.34rem;
|
|
635
|
-
letter-spacing:
|
|
655
|
+
letter-spacing: 0;
|
|
636
656
|
line-height: 1;
|
|
637
657
|
padding: 0.28rem 0.5rem;
|
|
638
|
-
text-transform:
|
|
658
|
+
text-transform: none;
|
|
639
659
|
}
|
|
640
660
|
|
|
641
661
|
/* Tone rides the border + tint; text stays the high-contrast neutral
|
|
@@ -726,17 +746,17 @@
|
|
|
726
746
|
|
|
727
747
|
.ui-key-value dt {
|
|
728
748
|
color: var(--text-dim);
|
|
729
|
-
font-family: var(--
|
|
749
|
+
font-family: var(--sans);
|
|
730
750
|
font-size: var(--text-2xs);
|
|
731
751
|
font-weight: 700;
|
|
732
|
-
letter-spacing:
|
|
752
|
+
letter-spacing: 0;
|
|
733
753
|
line-height: 1;
|
|
734
|
-
text-transform:
|
|
754
|
+
text-transform: none;
|
|
735
755
|
}
|
|
736
756
|
|
|
737
757
|
.ui-key-value dd {
|
|
738
758
|
color: var(--text);
|
|
739
|
-
font-family: var(--
|
|
759
|
+
font-family: var(--sans);
|
|
740
760
|
margin: 0;
|
|
741
761
|
min-inline-size: 0;
|
|
742
762
|
overflow-wrap: anywhere; /* IDs/hashes/paths are the common value — break, don't overflow */
|
package/css/report.css
CHANGED
|
@@ -8,19 +8,31 @@
|
|
|
8
8
|
|
|
9
9
|
.ui-report {
|
|
10
10
|
/* Declare override-surface tokens first so authors can set them. */
|
|
11
|
-
--report-width:
|
|
11
|
+
--report-width: 64rem;
|
|
12
12
|
--report-padding-block: var(--space-2xl);
|
|
13
|
-
--report-gap: var(--space-
|
|
14
|
-
--report-measure:
|
|
13
|
+
--report-gap: var(--space-xl);
|
|
14
|
+
--report-measure: 68ch;
|
|
15
15
|
|
|
16
16
|
color: var(--text-soft);
|
|
17
17
|
display: grid;
|
|
18
|
+
font-size: 1.125rem;
|
|
19
|
+
line-height: 1.65;
|
|
18
20
|
gap: var(--report-gap);
|
|
19
21
|
inline-size: min(100%, var(--report-width));
|
|
20
22
|
margin-inline: auto;
|
|
21
23
|
padding: var(--report-padding-block) var(--space-md);
|
|
22
24
|
}
|
|
23
25
|
|
|
26
|
+
/* Keep reading measure independent of a wide figure or evidence table. */
|
|
27
|
+
.ui-report p,
|
|
28
|
+
.ui-report__section > :is(ul, ol, blockquote) {
|
|
29
|
+
max-inline-size: var(--report-measure);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.ui-report .ui-prose {
|
|
33
|
+
font-size: inherit;
|
|
34
|
+
}
|
|
35
|
+
|
|
24
36
|
.ui-report--compact {
|
|
25
37
|
--report-gap: var(--space-md);
|
|
26
38
|
--report-padding-block: var(--space-xl);
|
|
@@ -74,14 +86,14 @@
|
|
|
74
86
|
|
|
75
87
|
.ui-report__title {
|
|
76
88
|
color: var(--text);
|
|
77
|
-
font-family: var(--
|
|
78
|
-
font-size:
|
|
79
|
-
font-weight:
|
|
89
|
+
font-family: var(--sans);
|
|
90
|
+
font-size: clamp(2rem, 4vw, 3rem);
|
|
91
|
+
font-weight: 650;
|
|
80
92
|
letter-spacing: 0;
|
|
81
|
-
line-height: 1.
|
|
93
|
+
line-height: 1.15;
|
|
82
94
|
margin: 0;
|
|
83
95
|
max-inline-size: var(--report-measure);
|
|
84
|
-
text-transform:
|
|
96
|
+
text-transform: none;
|
|
85
97
|
text-wrap: balance;
|
|
86
98
|
}
|
|
87
99
|
|
|
@@ -98,14 +110,14 @@
|
|
|
98
110
|
color: var(--text-dim);
|
|
99
111
|
display: flex;
|
|
100
112
|
flex-wrap: wrap;
|
|
101
|
-
font-family: var(--
|
|
102
|
-
font-size: var(--text-
|
|
113
|
+
font-family: var(--sans);
|
|
114
|
+
font-size: var(--text-xs);
|
|
103
115
|
gap: 0.55rem;
|
|
104
116
|
letter-spacing: 0;
|
|
105
117
|
list-style: none;
|
|
106
118
|
margin: 0;
|
|
107
119
|
padding: 0;
|
|
108
|
-
text-transform:
|
|
120
|
+
text-transform: none;
|
|
109
121
|
}
|
|
110
122
|
|
|
111
123
|
.ui-report__meta > * {
|
|
@@ -123,11 +135,22 @@
|
|
|
123
135
|
}
|
|
124
136
|
|
|
125
137
|
.ui-report__toc {
|
|
126
|
-
border: 1px solid var(--line);
|
|
127
|
-
border-radius: var(--radius-md);
|
|
138
|
+
border-block: 1px solid var(--line);
|
|
128
139
|
display: grid;
|
|
129
140
|
gap: var(--space-xs);
|
|
130
|
-
padding: var(--space-md);
|
|
141
|
+
padding-block: var(--space-md);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.ui-report__toc > summary {
|
|
145
|
+
cursor: pointer;
|
|
146
|
+
font-size: var(--text-sm);
|
|
147
|
+
font-weight: 600;
|
|
148
|
+
min-block-size: var(--tap-target);
|
|
149
|
+
padding-block: var(--space-xs);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
details.ui-report__toc:not([open]) > :not(summary) {
|
|
153
|
+
display: none;
|
|
131
154
|
}
|
|
132
155
|
|
|
133
156
|
.ui-report__toc ol,
|
|
@@ -162,7 +185,7 @@
|
|
|
162
185
|
|
|
163
186
|
.ui-report__decision {
|
|
164
187
|
background: var(--panel);
|
|
165
|
-
border:
|
|
188
|
+
border: 0;
|
|
166
189
|
border-inline-start: 3px solid var(--accent);
|
|
167
190
|
border-radius: var(--radius-md);
|
|
168
191
|
display: grid;
|
|
@@ -172,22 +195,22 @@
|
|
|
172
195
|
|
|
173
196
|
.ui-report__decision-kicker {
|
|
174
197
|
color: var(--accent-text);
|
|
175
|
-
font-family: var(--
|
|
198
|
+
font-family: var(--sans);
|
|
176
199
|
font-size: var(--text-2xs);
|
|
177
|
-
letter-spacing:
|
|
200
|
+
letter-spacing: 0;
|
|
178
201
|
margin: 0;
|
|
179
|
-
text-transform:
|
|
202
|
+
text-transform: none;
|
|
180
203
|
}
|
|
181
204
|
|
|
182
205
|
.ui-report__decision-title {
|
|
183
206
|
color: var(--text);
|
|
184
|
-
font-family: var(--
|
|
207
|
+
font-family: var(--sans);
|
|
185
208
|
font-size: var(--text-lg);
|
|
186
209
|
font-weight: var(--display-weight);
|
|
187
210
|
letter-spacing: 0;
|
|
188
211
|
line-height: 1.18;
|
|
189
212
|
margin: 0;
|
|
190
|
-
text-transform:
|
|
213
|
+
text-transform: none;
|
|
191
214
|
text-wrap: balance;
|
|
192
215
|
}
|
|
193
216
|
|
|
@@ -202,7 +225,7 @@
|
|
|
202
225
|
color: var(--text-dim);
|
|
203
226
|
display: flex;
|
|
204
227
|
flex-wrap: wrap;
|
|
205
|
-
font-family: var(--
|
|
228
|
+
font-family: var(--sans);
|
|
206
229
|
font-size: var(--text-2xs);
|
|
207
230
|
gap: 0.45rem 0.75rem;
|
|
208
231
|
letter-spacing: 0;
|
|
@@ -230,10 +253,10 @@
|
|
|
230
253
|
|
|
231
254
|
.ui-report__decision-label {
|
|
232
255
|
color: var(--text-dim);
|
|
233
|
-
font-family: var(--
|
|
256
|
+
font-family: var(--sans);
|
|
234
257
|
font-size: var(--text-2xs);
|
|
235
|
-
letter-spacing:
|
|
236
|
-
text-transform:
|
|
258
|
+
letter-spacing: 0;
|
|
259
|
+
text-transform: none;
|
|
237
260
|
}
|
|
238
261
|
|
|
239
262
|
.ui-report__decision-value {
|
|
@@ -346,10 +369,10 @@
|
|
|
346
369
|
.ui-claim__scope,
|
|
347
370
|
.ui-claim__refs {
|
|
348
371
|
color: var(--text-dim);
|
|
349
|
-
font-family: var(--
|
|
372
|
+
font-family: var(--sans);
|
|
350
373
|
font-size: var(--text-2xs);
|
|
351
374
|
letter-spacing: 0;
|
|
352
|
-
text-transform:
|
|
375
|
+
text-transform: none;
|
|
353
376
|
}
|
|
354
377
|
|
|
355
378
|
.ui-claim__basis,
|
|
@@ -386,13 +409,13 @@
|
|
|
386
409
|
|
|
387
410
|
.ui-report__section-head {
|
|
388
411
|
color: var(--text);
|
|
389
|
-
font-family: var(--
|
|
412
|
+
font-family: var(--sans);
|
|
390
413
|
font-size: var(--text-xl);
|
|
391
|
-
font-weight:
|
|
414
|
+
font-weight: 650;
|
|
392
415
|
letter-spacing: 0;
|
|
393
416
|
line-height: 1.1;
|
|
394
417
|
margin: 0;
|
|
395
|
-
text-transform:
|
|
418
|
+
text-transform: none;
|
|
396
419
|
text-wrap: balance;
|
|
397
420
|
}
|
|
398
421
|
|
|
@@ -415,11 +438,11 @@
|
|
|
415
438
|
|
|
416
439
|
.ui-report__caption {
|
|
417
440
|
color: var(--text-dim);
|
|
418
|
-
font-family: var(--
|
|
441
|
+
font-family: var(--sans);
|
|
419
442
|
font-size: var(--text-2xs);
|
|
420
443
|
letter-spacing: 0;
|
|
421
444
|
line-height: 1.5;
|
|
422
|
-
text-transform:
|
|
445
|
+
text-transform: none;
|
|
423
446
|
}
|
|
424
447
|
|
|
425
448
|
.ui-evidence-grid {
|
|
@@ -446,7 +469,7 @@
|
|
|
446
469
|
|
|
447
470
|
.ui-evidence-item__meta {
|
|
448
471
|
color: var(--text-dim);
|
|
449
|
-
font-family: var(--
|
|
472
|
+
font-family: var(--sans);
|
|
450
473
|
font-size: var(--text-2xs);
|
|
451
474
|
letter-spacing: 0;
|
|
452
475
|
}
|
|
@@ -472,10 +495,10 @@
|
|
|
472
495
|
.ui-evidence-item__window,
|
|
473
496
|
.ui-evidence-item__source {
|
|
474
497
|
color: var(--text-dim);
|
|
475
|
-
font-family: var(--
|
|
498
|
+
font-family: var(--sans);
|
|
476
499
|
font-size: var(--text-2xs);
|
|
477
500
|
letter-spacing: 0;
|
|
478
|
-
text-transform:
|
|
501
|
+
text-transform: none;
|
|
479
502
|
}
|
|
480
503
|
|
|
481
504
|
.ui-evidence-item__value {
|
|
@@ -516,13 +539,13 @@
|
|
|
516
539
|
|
|
517
540
|
.ui-report__action-status {
|
|
518
541
|
color: var(--text-dim);
|
|
519
|
-
font-family: var(--
|
|
542
|
+
font-family: var(--sans);
|
|
520
543
|
font-size: var(--text-2xs);
|
|
521
544
|
grid-column: 2;
|
|
522
545
|
grid-row: 1;
|
|
523
|
-
letter-spacing:
|
|
546
|
+
letter-spacing: 0;
|
|
524
547
|
place-self: start end;
|
|
525
|
-
text-transform:
|
|
548
|
+
text-transform: none;
|
|
526
549
|
white-space: nowrap;
|
|
527
550
|
}
|
|
528
551
|
|
|
@@ -546,10 +569,10 @@
|
|
|
546
569
|
.ui-report__action-priority,
|
|
547
570
|
.ui-report__action-source {
|
|
548
571
|
color: var(--text-dim);
|
|
549
|
-
font-family: var(--
|
|
572
|
+
font-family: var(--sans);
|
|
550
573
|
font-size: var(--text-2xs);
|
|
551
574
|
letter-spacing: 0;
|
|
552
|
-
text-transform:
|
|
575
|
+
text-transform: none;
|
|
553
576
|
}
|
|
554
577
|
|
|
555
578
|
.ui-report__action-criteria {
|
|
@@ -613,10 +636,10 @@
|
|
|
613
636
|
|
|
614
637
|
.ui-compare__head {
|
|
615
638
|
color: var(--text-dim);
|
|
616
|
-
font-family: var(--
|
|
639
|
+
font-family: var(--sans);
|
|
617
640
|
font-size: var(--text-2xs);
|
|
618
|
-
letter-spacing:
|
|
619
|
-
text-transform:
|
|
641
|
+
letter-spacing: 0;
|
|
642
|
+
text-transform: none;
|
|
620
643
|
}
|
|
621
644
|
|
|
622
645
|
/* A chart is NOT a bronto component — it needs scales + data binding, which the
|
|
@@ -660,6 +683,7 @@
|
|
|
660
683
|
--line-strong: #b3b3b3;
|
|
661
684
|
|
|
662
685
|
inline-size: auto;
|
|
686
|
+
font-size: 11pt;
|
|
663
687
|
padding: 0;
|
|
664
688
|
}
|
|
665
689
|
|