This commit is contained in:
lostecho
2024-05-13 20:50:11 +08:00
parent 432ac9ba42
commit 0e31c0d985
20 changed files with 5426 additions and 187 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"id":"attachment-flow-plugin","name":"AttachFlow","version":"0.4.3","minAppVersion":"1.0.9","description":"This nifty plugin enables seamless management of attachments and referenced links directly from your documents. Taking advantage of an intuitive right-click menu, you can efficiently handle resources in both LIVE and READ modes.","author":"yaozhuwa","authorUrl":"https://github.com/Yaozhuwa","isDesktopOnly":false,"fundingUrl":"https://www.buymeacoffee.com/yaozhuwa"}

View File

@@ -0,0 +1,46 @@
.attachment-flow-center-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
}
.attachment-flow-log {
margin-bottom: 13px;
margin-top: 5px;
white-space: pre-line; /* enable line break when html parse text containing '\n' */
}
button.mod-warning {
background-color: var(--background-modifier-error);
color: var(--text-on-accent);
}
.af-scale-div {
position: fixed;
bottom: 0;
left: 50%;
transform: translateX(-50%);
color: #fff;
font-family: var(--default-font);
font-size: 20px;
background: rgba(0, 0, 0, 0.5);
padding: 5px;
}
.image-ready-resize {
cursor: nwse-resize;
outline: 6px solid #dfb0f283;
}
.image-ready-click-view {
cursor: zoom-in;
}
.image-in-drag-resize {
border: 2px solid blue;
box-sizing: border-box;
}
/* 点击查看的大图 */
#af-zoomed-image {
cursor: move;
}