@oxide/design-system 1.8.0--canary.7d8d904.0 → 1.8.0--canary.4f06403.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 +8 -15
- package/package.json +1 -1
|
@@ -7,6 +7,12 @@
|
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
@layer components {
|
|
10
|
+
.accent-link {
|
|
11
|
+
@apply text-accent-secondary hover:text-accent;
|
|
12
|
+
text-decoration: underline;
|
|
13
|
+
text-decoration-color: var(--content-accent-tertiary);
|
|
14
|
+
}
|
|
15
|
+
|
|
10
16
|
.asciidoc-body .line-through {
|
|
11
17
|
text-decoration: line-through;
|
|
12
18
|
}
|
|
@@ -278,8 +284,8 @@
|
|
|
278
284
|
.asciidoc-body h3 code,
|
|
279
285
|
.asciidoc-body h4 code,
|
|
280
286
|
.asciidoc-body h5 code,
|
|
281
|
-
.asciidoc-body table code {
|
|
282
|
-
@apply text-secondary;
|
|
287
|
+
.asciidoc-body table code .inline-code {
|
|
288
|
+
@apply text-[0.825rem] text-secondary;
|
|
283
289
|
@apply ml-[1px] mr-[1px] rounded border px-[4px] py-[1px] align-[1px] bg-raise border-secondary;
|
|
284
290
|
}
|
|
285
291
|
|
|
@@ -300,19 +306,6 @@
|
|
|
300
306
|
@apply overflow-x-auto !text-[13px] text-mono-code;
|
|
301
307
|
}
|
|
302
308
|
|
|
303
|
-
.asciidoc-body h1 code,
|
|
304
|
-
.asciidoc-body h2 code,
|
|
305
|
-
.asciidoc-body h3 code,
|
|
306
|
-
.asciidoc-body h4 code,
|
|
307
|
-
.asciidoc-body h5 code {
|
|
308
|
-
@apply text-[0.825em];
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
.asciidoc-body .paragraph > code,
|
|
312
|
-
.asciidoc-body p code {
|
|
313
|
-
@apply text-[0.825rem];
|
|
314
|
-
}
|
|
315
|
-
|
|
316
309
|
.asciidoc-body code {
|
|
317
310
|
font-feature-settings: 'calt' 0;
|
|
318
311
|
}
|
package/package.json
CHANGED