siyuan-themes-tsundoku

a simple and beautiful theme for siyuan-note

GPL-3.0 License

Stars
81

Bot releases are visible (Hide)

siyuan-themes-tsundoku - v1.4.9

Published by github-actions[bot] almost 2 years ago

siyuan-themes-tsundoku - v1.4.8.1

Published by github-actions[bot] almost 2 years ago

siyuan-themes-tsundoku - v1.4.8

Published by github-actions[bot] almost 2 years ago

siyuan-themes-tsundoku - v1.4.7.1

Published by github-actions[bot] almost 2 years ago

siyuan-themes-tsundoku - v1.4.7

Published by github-actions[bot] almost 2 years ago

siyuan-themes-tsundoku - v1.4.6

Published by github-actions[bot] almost 2 years ago

siyuan-themes-tsundoku -

Published by Achuan-2 almost 2 years ago

siyuan-themes-tsundoku - 适配至思源笔记v1.2.31归档

Published by Achuan-2 about 3 years ago

siyuan-themes-tsundoku - 适配至思源笔记v1.1.83归档

Published by Achuan-2 over 3 years ago

0.3.9/2021-4-7

  • 更改 code 字体为 JetBrainsMono 字体

  • 安卓端黑色主题图片透明度不变

  • 黑色主题行内代码样式更改

  • 借鉴了 notion 主题,终于让代码块能真正原地编辑了,代码语言类型也可以在右上方固定不会随着滚动条而移动了,而且还可以直接编辑!了了一大梦啊。不过目前 markdown 图表可能有点小问题,自己不用就不管了,也办法单独调整。

  • 增大两个列表块 ul、ol、待办列表的间距

    .vditor .vditor-reset ul+ul,
    .vditor .vditor-reset ol+ol, 
    .vditor .vditor-reset ol+ul,
    .vditor .vditor-reset ul+ol{
        margin-top: 1em;
    }
    
  • 优化表格 br显示

    .vditor-ir__br {
        /* transition: opacity 0.5s ease 1s; */
        opacity: 0;
    }
    /* .vditor-ir__br:hover {
        transition: opacity 400ms ease 0s;`
        opacity: 1;
    } */
    
    table td:hover .vditor-ir__br{
        opacity: 1;
    }