-
[js] 一键编辑思源图片,思源里也可以编辑图片了
2025-04-14 08:593.1.27 文档处于只读模式时,也能触发进入图片编辑,编辑成功后返回能看到修改的图片,但重新载入文档后,图片丢失(文档未引用),实际图片还在。
-
有没有合并顶栏与标签栏的代码片段
2025-02-24 15:43提取自 QYL 主题。
/*隐藏顶栏,只在桌面端生效*/ @media only screen and (min-width:768px) { .toolbar { margin-bottom: -32px; opacity: 0; transition: all 200ms; transform: translateY(-30px); z-index: 8; border-bottom-right-radius: var(--b3-border-radius); border-bottom-left-radius: var(--b3-border-radius); box-shadow: var(--b3-point-shadow); } .toolbar:hover { opacity: 1; transform: translateY(0px); transition: all 200ms; } }