@cherry-markdown/cherry-markdown-dev 0.10.0-dev.202508190717.dd3d953 → 0.10.0-dev.202508191106.c86824f
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/README.md +2 -2
- package/dist/addons/advance/cherry-tapd-table-plugin.js +1 -1
- package/dist/addons/cherry-code-block-plantuml-plugin.js +1 -1
- package/dist/cherry-markdown.core.common.js +1 -1
- package/dist/cherry-markdown.core.js +1 -1
- package/dist/cherry-markdown.css +10 -1
- package/dist/cherry-markdown.engine.core.common.js +1 -1
- package/dist/cherry-markdown.engine.core.esm.js +1 -1
- package/dist/cherry-markdown.engine.core.js +1 -1
- package/dist/cherry-markdown.esm.js +1 -1
- package/dist/cherry-markdown.js +1 -1
- package/dist/cherry-markdown.min.css +1 -1
- package/dist/cherry-markdown.min.js +1 -1
- package/dist/fonts/ch-icon.eot +0 -0
- package/dist/fonts/ch-icon.ttf +0 -0
- package/dist/fonts/ch-icon.woff +0 -0
- package/dist/fonts/ch-icon.woff2 +0 -0
- package/package.json +1 -1
package/dist/cherry-markdown.css
CHANGED
|
@@ -5727,12 +5727,21 @@ div[data-code-wrap=wrap] div[data-type=codeBlock] code[class*=language-] {
|
|
|
5727
5727
|
color: var(--toolbar-btn-color);
|
|
5728
5728
|
background-color: var(--toolbar-bg);
|
|
5729
5729
|
display: inline-block;
|
|
5730
|
+
animation: pulse 2s infinite alternate;
|
|
5730
5731
|
}
|
|
5731
5732
|
.cherry-mask-code-block .expand-btn:hover {
|
|
5732
5733
|
color: var(--toolbar-btn-hover-color);
|
|
5733
5734
|
background-color: var(--toolbar-btn-hover-bg);
|
|
5734
5735
|
border-color: #eee;
|
|
5735
5736
|
}
|
|
5737
|
+
@keyframes pulse {
|
|
5738
|
+
0% {
|
|
5739
|
+
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
|
|
5740
|
+
}
|
|
5741
|
+
100% {
|
|
5742
|
+
box-shadow: 0 0 15px var(--primary-color);
|
|
5743
|
+
}
|
|
5744
|
+
}
|
|
5736
5745
|
|
|
5737
5746
|
.cherry-code-unExpand pre {
|
|
5738
5747
|
height: 240px;
|
|
@@ -5981,7 +5990,7 @@ div[data-code-wrap=wrap] div[data-type=codeBlock] code[class*=language-] {
|
|
|
5981
5990
|
[data-code-block-theme=coy] .cherry-previewer .cherry-expand-code-block,
|
|
5982
5991
|
[data-code-block-theme=coy] .cherry-previewer .cherry-unExpand-code-block,
|
|
5983
5992
|
[data-code-block-theme=coy] .cherry-previewer .cherry-edit-code-block {
|
|
5984
|
-
background-color:
|
|
5993
|
+
background-color: var(--primary-color);
|
|
5985
5994
|
}
|
|
5986
5995
|
@keyframes blink {
|
|
5987
5996
|
0% {
|