Skip to content

Commit 4820588

Browse files
committed
Reformat PR-touched files with prettier
Applies the prettier config from sof-js/package.json (semi: false, singleQuote: true, printWidth: 110) to the JavaScript and CSS files modified in this branch. No functional changes.
1 parent c347138 commit 4820588

13 files changed

Lines changed: 987 additions & 990 deletions

File tree

sof-js/public/app.css

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
:root {
1111
color-scheme: light;
1212

13-
--font-display: "Fraunces", "Times New Roman", serif;
14-
--font-sans: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
15-
--font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
13+
--font-display: 'Fraunces', 'Times New Roman', serif;
14+
--font-sans: 'IBM Plex Sans', ui-sans-serif, system-ui, sans-serif;
15+
--font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
1616

1717
--color-paper: #f4f0e6;
1818
--color-paper-raised: #fbf8f0;
@@ -63,16 +63,15 @@ body {
6363
background: var(--color-paper);
6464
color: var(--color-ink);
6565
font-family: var(--font-sans);
66-
font-feature-settings: "ss01", "cv11";
66+
font-feature-settings: 'ss01', 'cv11';
6767
-webkit-font-smoothing: antialiased;
6868
}
6969

7070
body {
7171
min-height: 100vh;
7272
/* Blueprint grid - fine inner grid + darker major grid + noise overlay. */
7373
background-color: var(--color-paper);
74-
background-image:
75-
radial-gradient(rgba(20, 24, 28, 0.035) 1px, transparent 1px),
74+
background-image: radial-gradient(rgba(20, 24, 28, 0.035) 1px, transparent 1px),
7675
linear-gradient(to right, rgba(20, 24, 28, 0.05) 1px, transparent 1px),
7776
linear-gradient(to bottom, rgba(20, 24, 28, 0.05) 1px, transparent 1px);
7877
background-size:
@@ -281,7 +280,7 @@ pre {
281280
}
282281

283282
pre::before {
284-
content: "◐ ◐ ◐";
283+
content: '◐ ◐ ◐';
285284
position: absolute;
286285
top: 0.5rem;
287286
right: 0.75rem;
@@ -337,7 +336,7 @@ textarea {
337336
box-sizing: border-box;
338337
}
339338

340-
input[type="checkbox"] {
339+
input[type='checkbox'] {
341340
accent-color: var(--color-accent);
342341
}
343342

@@ -515,7 +514,7 @@ hr {
515514
}
516515

517516
.section-head::before {
518-
content: "";
517+
content: '';
519518
position: absolute;
520519
left: 0;
521520
bottom: -1px;
@@ -700,7 +699,7 @@ hr {
700699
}
701700

702701
.resource-list li a::after {
703-
content: "→";
702+
content: '→';
704703
color: var(--color-ink-mute);
705704
margin-left: 0.5rem;
706705
}
@@ -759,11 +758,11 @@ table.op-def .op-def__input {
759758
max-width: 45vw;
760759
}
761760

762-
table.op-def .op-def__input input[type="text"],
763-
table.op-def .op-def__input input[type="number"],
764-
table.op-def .op-def__input input[type="date"],
765-
table.op-def .op-def__input input[type="datetime-local"],
766-
table.op-def .op-def__input input[type="time"],
761+
table.op-def .op-def__input input[type='text'],
762+
table.op-def .op-def__input input[type='number'],
763+
table.op-def .op-def__input input[type='date'],
764+
table.op-def .op-def__input input[type='datetime-local'],
765+
table.op-def .op-def__input input[type='time'],
767766
table.op-def .op-def__input select {
768767
width: 100%;
769768
max-width: 100%;
@@ -788,12 +787,12 @@ table.op-def .op-def__input select {
788787
display: none;
789788
}
790789

791-
.multiply-row:last-child > .btn[hx-ext="multiply"] {
790+
.multiply-row:last-child > .btn[hx-ext='multiply'] {
792791
display: inline-flex;
793792
}
794793

795794
/* The "-" only makes sense when there is more than one row to remove. */
796-
.multiply-row:last-child:not(:only-child) > .btn[hx-ext="remove"] {
795+
.multiply-row:last-child:not(:only-child) > .btn[hx-ext='remove'] {
797796
display: inline-flex;
798797
}
799798

0 commit comments

Comments
 (0)