与卡片堆叠在一起


9

有没有一种方法可以使列表彼此堆叠,而在列表中各有其自身的列表,而不是在页面上运行每个列表?

Answers:



2

我只是通过插件Fashionally和一些CSS调整来做到这一点。

只需添加


@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("trello.com") {

    .list {
       margin: 0 5px 13px 10px;
    }
    #board {
       flex-wrap: wrap;  
       overflow: auto;
    }
}

到时尚的栏目并应用于以https://trello.com开头的URL

为我工作。


1

不,如果您尝试将一个列表拖到另一个列表下,它将迅速回到其原始位置。
每个卡列表就是这样,一个垂直列表将自动增长到浏览器选项卡的高度,并根据需要添加滚动条。


0

如果您摆弄小窗口大小,Trello会突然在2个或更多可选的堆叠视图之间切换。不幸的是,当前的行为是非常不可预测的。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.