-
如何用 CSS 调整两个列表块之间的间距?
2023-02-24 19:24段落的边距距
.protyle-wysiwyg>.p { margin: 18px 0px !important; /* 前一个数值为上下边距,后一个为左右边距 。!important用于覆盖任何其他声明 */ }
列表的边距
.protyle-wysiwyg>.list { margin: 18px 0px !important; /* 前一个数值为上下边距,后一个为左右边距。 !important用于覆盖任何其他声明 */ }
-
为什么思源笔记支持设置授权码却又要给提示?
2023-01-27 22:13两个原因都有 思源开始的定位是本地的、私人的,没有考虑公用电脑和在线使用问题。
不过可以试着修改。在安装目录查找
zh_CN.json
,然后再把相关文本改了。 -
如何筛选某个“父文档”下的文档
2023-01-25 12:05试试这个
SELECT * FROM blocks where root_id='20221104102915-czkd9s7' ORDER BY random() LIMIT 1
可以写多行,嵌入块右上角有个 ✏️ 一样的按钮。但是用
{{
不能换行,因为相当于多个内容块了,}}
包裹不了 -
建议:列表项块的复制剪切应包含子块
2022-12-24 11:07每一层确实是一个段落块,所以复制那个块就只能粘贴那个块。
可以试试:
- 左键框选多个段落。
- 按住 Ctrl 或 Shift 再点击左键多选。
- 鼠标放到块标上,软件会框选该块及其子块,然后再复制
-
当我假装怀旧在做 win98 主题时。。。呃,我的强迫症啊
2022-12-19 09:57跟思源一样。ob、joplin、logseq 这类用到 javascript 来编写的开源软件都有开发者模式。logseq 要容易些,它界面少。ob 的话打了插件是最复杂的
-
自定义随机头图
2022-12-15 15:37把最后一段代码粘贴到 js 代码片段里。再在
工作空间\data\snippets\assets\backgrounds
里装入图片。右键随机本地图片 -
2022-12-9 建议
2022-12-09 12:18我也吐槽过思源界面不太好看,但同时也拿不出更好看的方案 😂
改个 UI 对于两位老开发者来说不算难事,我挺喜欢他们其他项目的界面的。但他们的精力在产品功能上(思源笔记路线图 (github.com)),UI 是顾不上了。目前只能是依靠自定义主题了。
多扯几句。大部分的网页和软件都是左中右布局加黑白灰配色,再加点视觉识别色。这种样子可能没有性格,但是最保险。
再问最后一句,各位有没有好看的界面推荐下 💖 我想再抄几个
-
做的挺好看的,不怎么实用
2022-11-29 23:42- 没看懂,怎样才算支持自定义文件夹。大部分软件的查找快捷键应该是
ctrl+f
,不用一篇一篇找 - 这点确实没办法,每个软件都有自己个存储结构和格式。我用记事本打开.svg 也看不出红黄蓝绿来
- 重要的通知还是需要弹窗的,这个
强行
就说得有点强行了。而且图片刚刚好把关闭按钮
截在外面了,不过颜色确实与主色调太接近了,不够显眼。 - 审美这事儿,美丑各由人。我觉得界面算不上惊艳
- 没看懂,怎样才算支持自定义文件夹。大部分软件的查找快捷键应该是
-
导入其他软件 md 格式到思源,双链不起效
2022-11-29 21:15像
[[内容]]
这种链接格式在.md 文件里是不包含路径的。你得去看看那个软件里看有没有功能或插件能将[[内容 ]]
转化为 Markdown 的链接格式[内容](路径)
-
请问大纲中的「H2」有没有办法隐藏掉呢?
2022-11-29 16:09块标有个功能是悬停浮窗,彻底弃用不合适。我把它改成下面这个样子:
复制下列代码,到
设置-外观-代码片段
中使用。/* 大纲块标隐藏样式 */ /* 为大纲块标和折叠按钮调整位置 */ ul.b3-list.b3-list--background [data-subtype="h1"] .b3-list-item__toggle, ul.b3-list.b3-list--background [data-subtype="h2"] .b3-list-item__toggle, ul.b3-list.b3-list--background [data-subtype="h3"] .b3-list-item__toggle, ul.b3-list.b3-list--background [data-subtype="h4"] .b3-list-item__toggle, ul.b3-list.b3-list--background [data-subtype="h5"] .b3-list-item__toggle, ul.b3-list.b3-list--background [data-subtype="h6"] .b3-list-item__toggle { position: relative; left: 20px; } ul.b3-list.b3-list--background [data-subtype="h1"] svg.b3-list-item__graphic, ul.b3-list.b3-list--background [data-subtype="h2"] svg.b3-list-item__graphic, ul.b3-list.b3-list--background [data-subtype="h3"] svg.b3-list-item__graphic, ul.b3-list.b3-list--background [data-subtype="h4"] svg.b3-list-item__graphic, ul.b3-list.b3-list--background [data-subtype="h5"] svg.b3-list-item__graphic, ul.b3-list.b3-list--background [data-subtype="h6"] svg.b3-list-item__graphic { opacity: 0; position: relative; left: -20px; margin: 0 0 0 4px; transition: all 300ms ease-out; } /*----------------------*/ /* 为大纲块标添加悬停显示效果 */ .b3-list--background .b3-list-item:hover .b3-list-item__graphic.popover__block { opacity: 1 !important; } ul.b3-list.b3-list--background [data-subtype="h1"] svg.b3-list-item__graphic:hover, ul.b3-list.b3-list--background [data-subtype="h2"] svg.b3-list-item__graphic:hover, ul.b3-list.b3-list--background [data-subtype="h3"] svg.b3-list-item__graphic:hover, ul.b3-list.b3-list--background [data-subtype="h4"] svg.b3-list-item__graphic:hover, ul.b3-list.b3-list--background [data-subtype="h5"] svg.b3-list-item__graphic:hover, ul.b3-list.b3-list--background [data-subtype="h6"] svg.b3-list-item__graphic:hover { color: red; } /*----------------------*/ /* 为大纲标题项添加背景过渡效果 */ .b3-list--background .b3-list-item { transition: all 300ms ease-out; }
-
输入 excel 公式经常碰到各种问题,怎么才能不改变文本内容,如一句中包含两个 $ 符号,内容就会变。
2022-11-29 11:26跟 markdown 行内元素语法冲突了。
粘贴时用
粘贴转义文本
复制时用
复制纯文本