@oxide/design-system 1.4.7--canary.9b5b7a2.0 → 1.4.7--canary.3a50b9d.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.
|
@@ -633,6 +633,11 @@
|
|
|
633
633
|
@apply bg-raise p-4 rounded-lg my-8 px-6 py-5;
|
|
634
634
|
}
|
|
635
635
|
|
|
636
|
+
/* Boosting body text for long text readability */
|
|
637
|
+
.asciidoc-body p {
|
|
638
|
+
color: #c8cacb;
|
|
639
|
+
}
|
|
640
|
+
|
|
636
641
|
@media print {
|
|
637
642
|
html {
|
|
638
643
|
font-size: 14px !important;
|
|
@@ -717,20 +722,5 @@
|
|
|
717
722
|
color: var(--content-default) !important;
|
|
718
723
|
background-color: var(--surface-raise) !important;
|
|
719
724
|
}
|
|
720
|
-
|
|
721
|
-
.asciidoc-body .section-link-icon {
|
|
722
|
-
margin-left: 0.5rem;
|
|
723
|
-
display: none;
|
|
724
|
-
color: var(--text-accent-secondary);
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
.asciidoc-body .section-link:hover .section-link-icon {
|
|
728
|
-
display: block;
|
|
729
|
-
}
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
/* Boosting body text for long text readability */
|
|
733
|
-
.asciidoc-body p {
|
|
734
|
-
color: #c8cacb;
|
|
735
725
|
}
|
|
736
726
|
}
|
|
@@ -12,9 +12,6 @@ declare const AsciiDocBlocks: {
|
|
|
12
12
|
Table: ({ node }: {
|
|
13
13
|
node: _oxide_react_asciidoc.TableBlock;
|
|
14
14
|
}) => react_jsx_runtime.JSX.Element;
|
|
15
|
-
Section: ({ node }: {
|
|
16
|
-
node: _oxide_react_asciidoc.SectionBlock;
|
|
17
|
-
}) => react_jsx_runtime.JSX.Element;
|
|
18
15
|
};
|
|
19
16
|
|
|
20
17
|
type BadgeColor = 'default' | 'destructive' | 'notice' | 'neutral' | 'purple' | 'blue';
|