siyuan-themes-tsundoku

a simple and beautiful theme for siyuan-note

GPL-3.0 License

Stars
81

Bot releases are hidden (Show)

siyuan-themes-tsundoku - v1.6.6 扩展菜单修复 / 2023.04.18

Published by Achuan-2 over 1 year ago

  • 🐛 siyuan v2.8.4 菜单 DOM 结构变更, 新增 .b3-menu__items 层, 修复扩展菜单样式
  • 🐛 表格扩展功能失效
siyuan-themes-tsundoku - v1.6.5 修复缺陷 / 2023.04.09

Published by Achuan-2 over 1 year ago

  • 🐛 开启【高亮隐藏】后悬浮不显示文本
siyuan-themes-tsundoku - v1.6.4 修复缺陷 / 2023.04.03

Published by Achuan-2 over 1 year ago

siyuan-themes-tsundoku - v1.6.3 新窗口打开支持 Green 主题 / 2023.03.24

Published by Achuan-2 over 1 year ago

  • 新窗口打开支持Green主题
  • 🐛 dark 主题 select 按钮修复
  • 🐛 修复思源新功能【新窗口打开】console会报错的问题
  • 🐛 link icon 修复asset 文件样式
  • 💄 列表中不显示三级标题、一级标题不居中
  • 🔥 取消鼠标滚轮缩小功能
  • 🔥 继续杀掉默认主题的待办列表完成样式
siyuan-themes-tsundoku - v1.6.2 Green主题完善 / 2023.03.06

Published by Achuan-2 over 1 year ago

  • 🐛 Green 主题字体大小选项栏背景色修复
  • 💄 搜索面板预览不显示link icon
siyuan-themes-tsundoku - v1.6.1 完善样式 / 2023.03.05

Published by Achuan-2 over 1 year ago

  • 💄 Update pdf 双链样式
  • 💄 超链接太长break all 换行
  • ⚡️ 取消2.7.7 更新的待办列表完成样式
  • 📝 添加FAQ
  • 🐛 Dark主题字体大小选项栏背景色修复
  • 🐛 fix :标签样式被字体样式覆盖 #66
siyuan-themes-tsundoku - v1.6.0 修复缺陷/ 2023.02.23

Published by Achuan-2 over 1 year ago

siyuan-themes-tsundoku - v1.5.9 导出代码块优化 / 2023.02.21

Published by Achuan-2 over 1 year ago

siyuan-themes-tsundoku - v1.5.8 Ctrl+滚轮单独调整页面大小/ 2023.02.18

Published by Achuan-2 over 1 year ago

  • 🐛 Fix 后缀为html的网页link icon显示为html文件icon
  • 🐛 Dark 主题嵌入块颜色错误
  • 💄 修改color1和color3颜色
  • ✨ Ctrl+滚轮单独调整页面大小(使用开发者工具清除缓存可以复位)
siyuan-themes-tsundoku - v1.5.7 修复缺陷 / 2023.02.13

Published by Achuan-2 over 1 year ago

  • 🔥 思源2.7.5更新了悬浮面板,因此去掉了【展开左右树面板】按钮
  • 🔥 思源2.7.5更新了【新窗口置顶】,去除了块菜单增强中的【在新窗口打开】
  • 💄 高亮文本导出样式调整为只有绿色下划线
  • 🐛 fix 导出时使用的是Dark主题的link icon
  • 🐛 fix 不能用编辑Markdown源码
  • 🐛 fix 列表转脑图导出pdf 列表偏移
siyuan-themes-tsundoku - v1.5.6 完善主题三合一,修复缺陷/ 2023.02.12

Published by Achuan-2 over 1 year ago

  • 🐛日历面板样式适应主题

  • 🎨重构src图标文件夹,根据使用放置在不同文件夹。

  • 💄主题按钮完善

    • 思源明亮模式只支持选择light和green,暗黑模式只支持选择dark主题
    • 从暗黑模式切换为明亮模式,根据之前的明亮模式选择自动更改为green主题/light主题(需要将明亮模式和暗黑模式都设置为使用Tsundoku主题)
    • 从明亮模式切换为暗黑模式,自动更改为dark主题
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;
    }