@refrakt-md/plan 0.9.3 → 0.9.4
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/index.js +1 -1
- package/package.json +8 -8
- package/styles/default.css +4 -8
- package/styles/minimal.css +5 -7
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@refrakt-md/plan",
|
|
3
3
|
"description": "Planning runes for refrakt.md — specs, work items, bugs, decisions, and milestones",
|
|
4
|
-
"version": "0.9.
|
|
4
|
+
"version": "0.9.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@markdoc/markdoc": "0.4.0",
|
|
36
|
-
"@refrakt-md/behaviors": "0.9.
|
|
37
|
-
"@refrakt-md/content": "0.9.
|
|
38
|
-
"@refrakt-md/highlight": "0.9.
|
|
39
|
-
"@refrakt-md/html": "0.9.
|
|
40
|
-
"@refrakt-md/runes": "0.9.
|
|
41
|
-
"@refrakt-md/transform": "0.9.
|
|
42
|
-
"@refrakt-md/types": "0.9.
|
|
36
|
+
"@refrakt-md/behaviors": "0.9.4",
|
|
37
|
+
"@refrakt-md/content": "0.9.4",
|
|
38
|
+
"@refrakt-md/highlight": "0.9.4",
|
|
39
|
+
"@refrakt-md/html": "0.9.4",
|
|
40
|
+
"@refrakt-md/runes": "0.9.4",
|
|
41
|
+
"@refrakt-md/transform": "0.9.4",
|
|
42
|
+
"@refrakt-md/types": "0.9.4",
|
|
43
43
|
"reflect-metadata": "^0.2.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
package/styles/default.css
CHANGED
|
@@ -481,11 +481,7 @@
|
|
|
481
481
|
Copy-to-clipboard button on code blocks
|
|
482
482
|
-------------------------------------------------------------------------- */
|
|
483
483
|
|
|
484
|
-
.rf-
|
|
485
|
-
position: relative;
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
.rf-copy-btn {
|
|
484
|
+
.rf-codeblock__copy {
|
|
489
485
|
position: absolute;
|
|
490
486
|
top: 0.25rem;
|
|
491
487
|
right: 0.25rem;
|
|
@@ -504,16 +500,16 @@
|
|
|
504
500
|
transition: opacity 0.15s ease;
|
|
505
501
|
}
|
|
506
502
|
|
|
507
|
-
.rf-
|
|
503
|
+
.rf-codeblock:hover .rf-codeblock__copy {
|
|
508
504
|
opacity: 1;
|
|
509
505
|
}
|
|
510
506
|
|
|
511
|
-
.rf-
|
|
507
|
+
.rf-codeblock__copy:hover {
|
|
512
508
|
color: var(--rf-color-text, #212529);
|
|
513
509
|
border-color: var(--rf-color-muted, #6c757d);
|
|
514
510
|
}
|
|
515
511
|
|
|
516
|
-
.rf-
|
|
512
|
+
.rf-codeblock__copy--copied {
|
|
517
513
|
color: var(--rf-color-success, #51cf66);
|
|
518
514
|
border-color: var(--rf-color-success, #51cf66);
|
|
519
515
|
}
|
package/styles/minimal.css
CHANGED
|
@@ -357,14 +357,12 @@
|
|
|
357
357
|
page-break-inside: avoid;
|
|
358
358
|
}
|
|
359
359
|
|
|
360
|
-
.rf-
|
|
360
|
+
.rf-codeblock__copy { display: none; }
|
|
361
361
|
}
|
|
362
362
|
|
|
363
363
|
/* Copy-to-clipboard */
|
|
364
364
|
|
|
365
|
-
.rf-
|
|
366
|
-
|
|
367
|
-
.rf-copy-btn {
|
|
365
|
+
.rf-codeblock__copy {
|
|
368
366
|
position: absolute;
|
|
369
367
|
top: 0.25rem;
|
|
370
368
|
right: 0.25rem;
|
|
@@ -383,6 +381,6 @@
|
|
|
383
381
|
transition: opacity 0.15s ease;
|
|
384
382
|
}
|
|
385
383
|
|
|
386
|
-
.rf-
|
|
387
|
-
.rf-
|
|
388
|
-
.rf-
|
|
384
|
+
.rf-codeblock:hover .rf-codeblock__copy { opacity: 1; }
|
|
385
|
+
.rf-codeblock__copy:hover { color: #333; border-color: #999; }
|
|
386
|
+
.rf-codeblock__copy--copied { color: #22863a; border-color: #22863a; }
|