@oxide/design-system 6.1.0 → 6.1.1-canary.ca702ad
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/dist/asciidoc.css +7 -1
- package/package.json +1 -1
- package/styles/tailwind.css +9 -0
package/dist/asciidoc.css
CHANGED
|
@@ -163,10 +163,16 @@
|
|
|
163
163
|
}
|
|
164
164
|
|
|
165
165
|
/* Fix overflow text in mermaid */
|
|
166
|
-
|
|
166
|
+
code svg {
|
|
167
167
|
line-height: 1 !important;
|
|
168
168
|
}
|
|
169
169
|
|
|
170
|
+
/* Prevent asciidoc styles from leaking into mermaid SVG output */
|
|
171
|
+
code svg,
|
|
172
|
+
code svg * {
|
|
173
|
+
all: revert-layer;
|
|
174
|
+
}
|
|
175
|
+
|
|
170
176
|
p {
|
|
171
177
|
@apply text-sans-lg 800:mb-3 mb-[1.25rem] !leading-[1.5];
|
|
172
178
|
}
|
package/package.json
CHANGED
package/styles/tailwind.css
CHANGED
|
@@ -138,3 +138,12 @@ Make sure disabled buttons don't get the pointer cursor.
|
|
|
138
138
|
@utility shadow-tooltip {
|
|
139
139
|
box-shadow: var(--shadow-tooltip);
|
|
140
140
|
}
|
|
141
|
+
|
|
142
|
+
::-moz-selection {
|
|
143
|
+
/* Code for Firefox */
|
|
144
|
+
@apply text-accent bg-accent;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
::selection {
|
|
148
|
+
@apply text-accent bg-accent;
|
|
149
|
+
}
|