请问怎么做看板页呢?

我在知乎,还有其他地方,看到有朋友的截图里面,带有看板页面,请问这个是怎么实现的呢?

找到 custom.css

  • logseq 文件夹查找 → custom.css
  • logseq 右上角菜单 → 所有文件 → custom.css

复制下方 css 到 custom.css

添加标签到对应位置 (#kanban #kanban-small……)

  • xxxx #kanban-small
    • 第一列
    • 第二列
      • “列内块”
    • 第三列

搭配模版功能体验更佳。

感谢 cannibalox ,牛牛牛

试用cannibalox的logtools plugin 和以上的kanban css,试验了几天,均不能成功,谁知道何解?郁闷

@hooyoo25

试试这个代码,来自英文区的sawhney用户:

div[data-refs-self*="kanban"]>.block-children-container.flex {
            width: 100%;
        }
            div[data-refs-self*="kanban"]>.block-children-container.flex>.block-children.w-full {
                display: inline-flex;
                position: relative;
                overflow-x: auto;
                overflow-y: hidden;
                margin: 0 10px;
            }
                div[data-refs-self*="kanban"]>.block-children-container.flex>.block-children.w-full>div.ls-block {
                    display: inline-block;
                    padding: 0;
                    width: inherit;
                    min-width: 200px;
                    margin-right: 10px;
                   }

    /* remove left border for kanbanized */
            [data-refs-self*="kanban"] .block-children-left-border {
                opacity: 0;
            }
        /* fix modal list not appearing*/
            .block-children {
                overflow: visible !important;
            } 
            .ls-block[data-refs-self*="kanban"] .absolute-modal,
            .ls-block[data-refs-self*="kanban"] #ui__ac {
                min-height: 80px;
            }
  
         ```