@oxide/design-system 2.1.1--canary.2b7369b.0 → 2.1.1--canary.14f0443.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 +14 -22
- package/package.json +1 -1
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
.accent-link {
|
|
11
11
|
@apply text-accent-secondary hover:text-accent;
|
|
12
12
|
text-decoration: underline;
|
|
13
|
-
text-decoration-color:
|
|
13
|
+
text-decoration-color: color-mix(in srgb, currentColor 60%, transparent);
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
.asciidoc-body {
|
|
17
17
|
.line-through {
|
|
18
18
|
text-decoration: line-through;
|
|
19
19
|
}
|
|
@@ -168,7 +168,12 @@
|
|
|
168
168
|
|
|
169
169
|
ul,
|
|
170
170
|
ol {
|
|
171
|
-
@apply mb-4 list-disc text-mono-sm
|
|
171
|
+
@apply mb-4 list-disc text-mono-sm;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
li::marker,
|
|
175
|
+
ol::marker {
|
|
176
|
+
color: color-mix(in srgb, currentColor 60%, transparent);
|
|
172
177
|
}
|
|
173
178
|
|
|
174
179
|
ul p,
|
|
@@ -365,20 +370,7 @@
|
|
|
365
370
|
}
|
|
366
371
|
|
|
367
372
|
.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);
|
|
373
|
+
text-decoration-color: color-mix(in srgb, currentColor 60%, transparent);
|
|
382
374
|
}
|
|
383
375
|
|
|
384
376
|
.admonitionblock strong {
|
|
@@ -425,16 +417,16 @@
|
|
|
425
417
|
@apply text-destructive bg-destructive-secondary border-destructive-tertiary;
|
|
426
418
|
}
|
|
427
419
|
|
|
428
|
-
.admonitionblock.caution
|
|
429
|
-
.admonitionblock.important
|
|
420
|
+
.admonitionblock.caution,
|
|
421
|
+
.admonitionblock.important {
|
|
430
422
|
@apply text-notice;
|
|
431
423
|
}
|
|
432
424
|
|
|
433
|
-
.admonitionblock.warning
|
|
425
|
+
.admonitionblock.warning {
|
|
434
426
|
@apply text-destructive;
|
|
435
427
|
}
|
|
436
428
|
|
|
437
|
-
.admonitionblock.tip
|
|
429
|
+
.admonitionblock.tip {
|
|
438
430
|
color: var(--base-purple-800);
|
|
439
431
|
}
|
|
440
432
|
|
|
@@ -699,7 +691,7 @@
|
|
|
699
691
|
}
|
|
700
692
|
|
|
701
693
|
a:not(:is(h1, h2, h3, h4, h5, h6) a) {
|
|
702
|
-
text-decoration-color:
|
|
694
|
+
text-decoration-color: color-mix(in srgb, currentColor 60%, transparent);
|
|
703
695
|
@apply underline text-accent-secondary;
|
|
704
696
|
}
|
|
705
697
|
|
package/package.json
CHANGED