@oxide/design-system 1.6.3--canary.021dabf.0 → 1.6.4--canary.a7b36bf.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 +33 -13
- package/package.json +1 -1
|
@@ -7,12 +7,6 @@
|
|
|
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
|
-
|
|
16
10
|
.asciidoc-body .line-through {
|
|
17
11
|
text-decoration: line-through;
|
|
18
12
|
}
|
|
@@ -65,7 +59,7 @@
|
|
|
65
59
|
word-wrap: break-word;
|
|
66
60
|
|
|
67
61
|
text-decoration: underline;
|
|
68
|
-
text-decoration-color:
|
|
62
|
+
text-decoration-color: var(--content-accent-tertiary);
|
|
69
63
|
}
|
|
70
64
|
|
|
71
65
|
/* Use semi-bold for strong */
|
|
@@ -280,8 +274,8 @@
|
|
|
280
274
|
.asciidoc-body h3 code,
|
|
281
275
|
.asciidoc-body h4 code,
|
|
282
276
|
.asciidoc-body h5 code,
|
|
283
|
-
.asciidoc-body table code
|
|
284
|
-
@apply text-
|
|
277
|
+
.asciidoc-body table code {
|
|
278
|
+
@apply text-secondary;
|
|
285
279
|
@apply ml-[1px] mr-[1px] rounded border px-[4px] py-[1px] align-[1px] bg-raise border-secondary;
|
|
286
280
|
}
|
|
287
281
|
|
|
@@ -302,6 +296,19 @@
|
|
|
302
296
|
@apply overflow-x-auto !text-[13px] text-mono-code;
|
|
303
297
|
}
|
|
304
298
|
|
|
299
|
+
.asciidoc-body h1 code,
|
|
300
|
+
.asciidoc-body h2 code,
|
|
301
|
+
.asciidoc-body h3 code,
|
|
302
|
+
.asciidoc-body h4 code,
|
|
303
|
+
.asciidoc-body h5 code {
|
|
304
|
+
@apply text-[0.825em];
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.asciidoc-body .paragraph > code,
|
|
308
|
+
.asciidoc-body p code {
|
|
309
|
+
@apply text-[0.825rem];
|
|
310
|
+
}
|
|
311
|
+
|
|
305
312
|
.asciidoc-body code {
|
|
306
313
|
font-feature-settings: 'calt' 0;
|
|
307
314
|
}
|
|
@@ -354,6 +361,23 @@
|
|
|
354
361
|
@apply my-[1.5rem] flex px-3 py-3;
|
|
355
362
|
}
|
|
356
363
|
|
|
364
|
+
.asciidoc-body .admonitionblock a {
|
|
365
|
+
text-decoration-color: var(--content-success-tertiary);
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.asciidoc-body .admonitionblock.tip a {
|
|
369
|
+
text-decoration-color: var(--base-purple-600);
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.asciidoc-body .admonitionblock.warning a {
|
|
373
|
+
text-decoration-color: var(--content-error-tertiary);
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.asciidoc-body .admonitionblock.caution a,
|
|
377
|
+
.asciidoc-body .admonitionblock.important a {
|
|
378
|
+
text-decoration-color: var(--content-notice-tertiary);
|
|
379
|
+
}
|
|
380
|
+
|
|
357
381
|
.asciidoc-body .admonitionblock strong {
|
|
358
382
|
@apply text-success;
|
|
359
383
|
}
|
|
@@ -371,10 +395,6 @@
|
|
|
371
395
|
@apply border-destructive-secondary;
|
|
372
396
|
}
|
|
373
397
|
|
|
374
|
-
.asciidoc-body .admonitionblock.tip .quoteblock {
|
|
375
|
-
border-color: var(--base-purple-500);
|
|
376
|
-
}
|
|
377
|
-
|
|
378
398
|
.asciidoc-body .admonitionblock.warning strong {
|
|
379
399
|
@apply text-destructive;
|
|
380
400
|
}
|
package/package.json
CHANGED