@oxide/design-system 2.1.1--canary.2b7369b.0 → 2.1.1--canary.c8a08c2.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/components/dist/asciidoc.css +23 -29
- package/package.json +1 -1
|
@@ -6,14 +6,22 @@
|
|
|
6
6
|
* Copyright Oxide Computer Company
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
-
@layer
|
|
9
|
+
@layer utility {
|
|
10
|
+
.text-mono-code {
|
|
11
|
+
@apply !text-[0.825em] !normal-case;
|
|
12
|
+
font-feature-settings: 'calt' 0;
|
|
13
|
+
letter-spacing: 0;
|
|
14
|
+
}
|
|
15
|
+
|
|
10
16
|
.accent-link {
|
|
11
17
|
@apply text-accent-secondary hover:text-accent;
|
|
12
18
|
text-decoration: underline;
|
|
13
|
-
text-decoration-color:
|
|
19
|
+
text-decoration-color: color-mix(in srgb, currentColor 60%, transparent);
|
|
14
20
|
}
|
|
21
|
+
}
|
|
15
22
|
|
|
16
|
-
|
|
23
|
+
@layer components {
|
|
24
|
+
.asciidoc-body {
|
|
17
25
|
.line-through {
|
|
18
26
|
text-decoration: line-through;
|
|
19
27
|
}
|
|
@@ -168,7 +176,12 @@
|
|
|
168
176
|
|
|
169
177
|
ul,
|
|
170
178
|
ol {
|
|
171
|
-
@apply mb-4 list-disc text-mono-sm
|
|
179
|
+
@apply mb-4 list-disc text-mono-sm;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
li::marker,
|
|
183
|
+
ol::marker {
|
|
184
|
+
color: color-mix(in srgb, currentColor 60%, transparent);
|
|
172
185
|
}
|
|
173
186
|
|
|
174
187
|
ul p,
|
|
@@ -273,12 +286,6 @@
|
|
|
273
286
|
@apply normal-case text-default;
|
|
274
287
|
}
|
|
275
288
|
|
|
276
|
-
.text-mono-code {
|
|
277
|
-
@apply !text-[0.825em] !normal-case;
|
|
278
|
-
font-feature-settings: 'calt' 0;
|
|
279
|
-
letter-spacing: 0;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
289
|
.inline-code {
|
|
283
290
|
@apply text-secondary;
|
|
284
291
|
@apply ml-[1px] mr-[1px] rounded border px-[4px] py-[1px] align-[1px] text-[0.825em] bg-raise border-secondary;
|
|
@@ -365,20 +372,7 @@
|
|
|
365
372
|
}
|
|
366
373
|
|
|
367
374
|
.admonitionblock a {
|
|
368
|
-
text-decoration-color:
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
.admonitionblock.tip a {
|
|
372
|
-
text-decoration-color: var(--base-purple-600);
|
|
373
|
-
}
|
|
374
|
-
|
|
375
|
-
.admonitionblock.warning a {
|
|
376
|
-
text-decoration-color: var(--content-error-tertiary);
|
|
377
|
-
}
|
|
378
|
-
|
|
379
|
-
.admonitionblock.caution a,
|
|
380
|
-
.admonitionblock.important a {
|
|
381
|
-
text-decoration-color: var(--content-notice-tertiary);
|
|
375
|
+
text-decoration-color: color-mix(in srgb, currentColor 60%, transparent);
|
|
382
376
|
}
|
|
383
377
|
|
|
384
378
|
.admonitionblock strong {
|
|
@@ -425,16 +419,16 @@
|
|
|
425
419
|
@apply text-destructive bg-destructive-secondary border-destructive-tertiary;
|
|
426
420
|
}
|
|
427
421
|
|
|
428
|
-
.admonitionblock.caution
|
|
429
|
-
.admonitionblock.important
|
|
422
|
+
.admonitionblock.caution,
|
|
423
|
+
.admonitionblock.important {
|
|
430
424
|
@apply text-notice;
|
|
431
425
|
}
|
|
432
426
|
|
|
433
|
-
.admonitionblock.warning
|
|
427
|
+
.admonitionblock.warning {
|
|
434
428
|
@apply text-destructive;
|
|
435
429
|
}
|
|
436
430
|
|
|
437
|
-
.admonitionblock.tip
|
|
431
|
+
.admonitionblock.tip {
|
|
438
432
|
color: var(--base-purple-800);
|
|
439
433
|
}
|
|
440
434
|
|
|
@@ -699,7 +693,7 @@
|
|
|
699
693
|
}
|
|
700
694
|
|
|
701
695
|
a:not(:is(h1, h2, h3, h4, h5, h6) a) {
|
|
702
|
-
text-decoration-color:
|
|
696
|
+
text-decoration-color: color-mix(in srgb, currentColor 60%, transparent);
|
|
703
697
|
@apply underline text-accent-secondary;
|
|
704
698
|
}
|
|
705
699
|
|
package/package.json
CHANGED