-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support custom default doc icons #12721
Comments
需要不增加菜单选项的方案 |
具体怎么加?你可以说说你的想法。 |
This comment was marked as outdated.
This comment was marked as outdated.
先实现以下三点:
然后再使用以下 CSS 片段: /* 笔记本 */
.layout-tab-container > .file-tree > .fn__flex-1 > ul.b3-list[data-url] > li.b3-list-item[data-type="navigation-root"]:not([data-icon]) > .b3-list-item__icon {
color: transparent;
}
.layout-tab-container > .file-tree > .fn__flex-1 > ul.b3-list[data-url] > li.b3-list-item[data-type="navigation-root"]:not([data-icon]) > .b3-list-item__icon::before {
color: black;
content: "🗃"; /* 笔记本图标自定义 */
position: absolute;
}
/* 文档 */
.layout-tab-container > .file-tree > .fn__flex-1 li.b3-list-item[data-node-id]:not([data-count="0"]):not([data-icon]) > .b3-list-item__icon {
color: transparent;
}
.layout-tab-container > .file-tree > .fn__flex-1 li.b3-list-item[data-node-id]:not([data-count="0"]):not([data-icon]) > .b3-list-item__icon::before {
color: black;
content: "📑"; /* 文档图标自定义 */
position: absolute;
}
/* 子文档 */
.layout-tab-container > .file-tree > .fn__flex-1 li.b3-list-item[data-node-id][data-count="0"]:not([data-icon]) > .b3-list-item__icon {
color: transparent;
}
.layout-tab-container > .file-tree > .fn__flex-1 li.b3-list-item[data-node-id][data-count="0"]:not([data-icon]) > .b3-list-item__icon::before {
color: black;
content: "📄"; /* 子文档图标自定义 */
position: absolute;
} |
感觉这样太过复杂,不如直接替换表情方便 |
只是新增一个属性而已,比你的方案简单。 第一点是已有功能的问题,始终都要修的。第三点也是在计划之中的更改。总的来说只是新增了第二点。 |
但用css伪元素代替表情变得麻烦,而且自定义表情怎么用伪类实现(这里的自定义指自定义表情图片)?光靠css较麻烦。 而我的方案,只需把以前代码中的常量改为配置变量即可,实现起来较为简单,而且如果插件或代码片段想实时自定义图标也只需动态修改配置变量即可。而css方案需要用户自己实现,且不好实现,可能存在兼容性等问题。 |
用 background-image 。 这种自定义的需求只能让用户自己实现了。 |
public static readonly SIYUAN_IMAGE_FILE: string = "1f4c4";
public static readonly SIYUAN_IMAGE_NOTE: string = "1f5c3";
public static readonly SIYUAN_IMAGE_FOLDER: string = "1f4d1"; 这里允许赋值比较简单吧。 |
能支持用自定义表情吗? |
把这几个放到 siyuan.storage 里面,后续优插件进行修改如何? |
very nice |
改成功了,舒服了,不过emoji要用Unicode的编码,有点麻烦 设置方法
我的自定义文档图标
把下面代码放进代码片段 siyuan.storage["local-images"].folder = '1F4C1'
siyuan.storage["local-images"].note = '1F5C2' |
请问直接将下面的代码放到"外观"选项中的CSS中就可以吗? |
放在js片段 |
可用,感谢! |
放在js片段中刷新后可以生效,但关闭重启思源笔记,图标自定义失效了。请问怎么解决?谢谢 |
你打开开发者工具之后重启思源,看看有没有报错 |
建议将SIYUAN_IMAGE_FOLDER,SIYUAN_IMAGE_FILE等开放出来,用户可以自定义默认文件夹等图标
In what scenarios do you need this feature?
目前思源默认的笔记本,文件夹和文件图标用户无法自定义。
建议把这三个常量开放出来用户可以自定义
https://github.com/siyuan-note/siyuan/blob/4ef5d90af38666278473734be75c2f77da164661/app/src/constants.ts#L642
类似这种配置效果
关联帖子 https://ld246.com/article/1728246523163
Describe the optimal solution
笔记本,文件夹和文件默认图标用户可以自定义。
Describe the candidate solution
No response
Other information
No response
The text was updated successfully, but these errors were encountered: