This commit is contained in:
oscar.plaisant@icloud.com
2024-01-07 19:26:57 +01:00
parent 489c2cd097
commit 14378a3bec
268 changed files with 81843 additions and 109871 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1,7 +1,7 @@
{
"id": "obsidian-markmind",
"name": "obsidian markmind",
"version": "1.8.2",
"version": "1.8.8",
"minAppVersion": "0.9.12",
"description": "This is a mindmapoutline and pdf annotate tool for obsidian.",
"author": "Mark",

View File

@@ -2,6 +2,8 @@
font-family: 'myFont';
src:url('http://cdn.ghost-jack.top/chinese.ttf');
} */
.mm-handdraw-theme {
font-family: 'myFont';
}
@@ -1306,6 +1308,9 @@
width: 20px;
height: 20px;
font-size: 14px;
text-align: center;
cursor: pointer;
z-index: 20;
}
.mm-node-note-tab {
@@ -1315,9 +1320,9 @@
max-width: 500px;
max-height: 400px;
border-radius: 5px;
background-color: wheat;
background-color: #FFD;
color: #333;
overflow: auto;
overflow: hidden;
z-index: 6000;
display: none;
}
@@ -1326,9 +1331,41 @@
padding: 10px;
box-sizing: border-box;
font-size: 14px;
white-space: pre-wrap;
position: absolute;
left: 0;
top: 20px;
right: 0;
bottom: 0;
overflow-y: auto;
/* white-space: pre-wrap; */
}
.mm-node-note-container h1,
.mm-node-note-container h2,
.mm-node-note-container h3,
.mm-node-note-container h4,
.mm-node-note-container h5,
.mm-node-note-container h6 {
margin-block-start: 0;
}
.mm-node-note-container ul,
.mm-node-note-container ol {
margin: 6px;
}
.mm-node-note-container ul li,
.mm-node-note-container ol li {
line-height: 20px;
}
.mm-node-note-container img {
max-width: 100%;
}
.block-language-mindmap {
height: 600px;
}
@@ -1936,4 +1973,59 @@ th {
.mm-translate-text {
margin-bottom: 8px;
font-size: 14px;
}
/* 点击 a 标签 */
.mm-link-menu {
position: absolute;
width: 30px;
height: 30px;
background-color: #333;
border: 1px solid #000;
border-radius: 3px;
z-index: 1000;
cursor: pointer;
}
/* .mm-link-menu:before {
width: 0;
height: 0;
border: 10px solid transparent;
border-bottom-color: #333;
position: absolute;
top: -20px;
right: 20px;
} */
.mm-link-menu svg {
fill: #ccc;
margin-left: 7px;
margin-top: 7px;
}
.theme-light .mm-link-menu {
background-color: #fff;
border: 1px solid #333;
}
.theme-light .mm-link-menu svg {
fill: #333;
}
/* 遮挡文字节点 */
.mm-node-cover {
position: absolute;
z-index: 1000;
left: 2px;
top: 2px;
bottom: 2px;
right: 2px;
background-color: #ccc;
border-radius: 2px;
}
.mm-node-cover:hover {
opacity: 0;
background-color: transparent;
}