Skip to content

适配至思源笔记v1.1.83归档

Compare
Choose a tag to compare
@Achuan-2 Achuan-2 released this 08 Apr 03:16
· 904 commits to main since this release

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;
    }