Gk0Wk / TiddlySeq

Logseq-like tiddlywiki5 template plugin.
https://gk0wk.github.io/TiddlySeq
MIT License
35 stars 8 forks source link

PageTOC插件目录加载问题 #1

Closed Zhaoyang-Song closed 2 years ago

Zhaoyang-Song commented 2 years ago

TiddlyWiki在使用PageTOC插件生成目录时,如果目录过长,无法滑动拉至更往后的内容。

举个例子,假设h1有100个,可能屏幕上只显示前20个,无法通过上下滑动或者其他办法得到目录后面的内容,也就无法完成查看和跳转。

此加载问题的文件类型是Markdown,非TW原生格式。(并未试过原生格式是否存在该问题)

fcnaud commented 2 years ago

我也遇到了类似的问题,你修改下样式文件就可以了,给这个div加个高度。

  1. 打开插件的样式文件

image

  1. 找到这里,给这个class添加如下内容

image

    height: 300px;
    overflow: auto;
  1. 最终结果,其他的地方也类似

image

Zhaoyang-Song commented 2 years ago

收到,十分感谢

---原始邮件--- 发件人: @.> 发送时间: 2022年9月2日(周五) 下午2:06 收件人: @.>; 抄送: @.**@.>; 主题: Re: [Gk0Wk/TiddlySeq] PageTOC插件目录加载问题 (Issue #1)

我也遇到了类似的问题,你修改下样式文件就可以了,给这个div加个高度。

打开插件的样式文件

找到这里,给这个class添加如下内容

height: 300px; overflow: auto;
最终结果,其他的地方也类似

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>

Gk0Wk commented 2 years ago

TW 原生插件写起来还是太麻烦了,后面计划换成用 React 写,所以这个暂时就不修了。

Gk0Wk commented 2 years ago

不对呀,之前似乎已经修复了哈哈:

.gk0wk-tiddlertoc-viewbuttonpopup {
  border-radius: 3px;
  background: <<colour page-background>>;
  width: min(90vw, 300px);
  <<box-shadow "#00000070 0 2px 6px">>
  filter: contrast(90%);
  padding: 0;
  overflow-y: auto;
  max-height: 80vh;
}