@oxide/design-system 2.1.1--canary.c8a08c2.0 → 2.1.1--canary.cdce78f.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 +10 -10
- package/package.json +1 -1
|
@@ -46,11 +46,6 @@
|
|
|
46
46
|
@apply mb-2 mt-2 pl-[0.75rem] border-success-secondary;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
.admonitionblock p,
|
|
50
|
-
.admonitionblock blockquote {
|
|
51
|
-
@apply text-success;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
49
|
.admonition-content .paragraph {
|
|
55
50
|
@apply mb-1 last:mb-0;
|
|
56
51
|
}
|
|
@@ -400,6 +395,11 @@
|
|
|
400
395
|
color: var(--base-purple-800);
|
|
401
396
|
}
|
|
402
397
|
|
|
398
|
+
.admonitionblock,
|
|
399
|
+
.admonitionblock blockquote {
|
|
400
|
+
@apply text-success;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
403
|
.admonitionblock.tip,
|
|
404
404
|
.admonitionblock.tip blockquote {
|
|
405
405
|
background-color: var(--base-purple-200);
|
|
@@ -674,6 +674,11 @@
|
|
|
674
674
|
.paragraph.lead p {
|
|
675
675
|
font-size: 1.25rem;
|
|
676
676
|
}
|
|
677
|
+
|
|
678
|
+
a:not(:is(h1, h2, h3, h4, h5, h6) a) {
|
|
679
|
+
text-decoration-color: color-mix(in srgb, currentColor 60%, transparent);
|
|
680
|
+
@apply underline text-accent-secondary;
|
|
681
|
+
}
|
|
677
682
|
}
|
|
678
683
|
|
|
679
684
|
#footnotes p a {
|
|
@@ -692,11 +697,6 @@
|
|
|
692
697
|
@apply ml-[1px] mr-[1px] rounded border px-[3px] align-[1px] border-secondary;
|
|
693
698
|
}
|
|
694
699
|
|
|
695
|
-
a:not(:is(h1, h2, h3, h4, h5, h6) a) {
|
|
696
|
-
text-decoration-color: color-mix(in srgb, currentColor 60%, transparent);
|
|
697
|
-
@apply underline text-accent-secondary;
|
|
698
|
-
}
|
|
699
|
-
|
|
700
700
|
@media screen and (min-width: 720px) {
|
|
701
701
|
.animated-accordion[data-state='open'].hydrated {
|
|
702
702
|
animation: accordionSlideDown 300ms cubic-bezier(0.87, 0, 0.13, 1);
|
package/package.json
CHANGED