@oxide/design-system 1.4.7--canary.9b5b7a2.0 → 1.4.7--canary.7cf163e.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 +15 -15
- package/package.json +1 -1
|
@@ -633,6 +633,21 @@
|
|
|
633
633
|
@apply bg-raise p-4 rounded-lg my-8 px-6 py-5;
|
|
634
634
|
}
|
|
635
635
|
|
|
636
|
+
.asciidoc-body .section-link-icon {
|
|
637
|
+
margin-left: 0.5rem;
|
|
638
|
+
display: none;
|
|
639
|
+
color: var(--text-accent-secondary);
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.asciidoc-body .section-link:hover .section-link-icon {
|
|
643
|
+
display: block;
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
/* Boosting body text for long text readability */
|
|
647
|
+
.asciidoc-body p {
|
|
648
|
+
color: #c8cacb;
|
|
649
|
+
}
|
|
650
|
+
|
|
636
651
|
@media print {
|
|
637
652
|
html {
|
|
638
653
|
font-size: 14px !important;
|
|
@@ -717,20 +732,5 @@
|
|
|
717
732
|
color: var(--content-default) !important;
|
|
718
733
|
background-color: var(--surface-raise) !important;
|
|
719
734
|
}
|
|
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
735
|
}
|
|
736
736
|
}
|
package/package.json
CHANGED