Mastodon の UI の toot カラムを必要なときだけ出す
概要
画面が小さくて4カラムはちょっと幅とりすぎだと思うかた
マウスオーバーしたときだけ ニョッキリ toot するカラムを出したい と思うんですが。
方法
Firefox なら userContent.css
に次の CSS を追加するだけで OK です (あるいはアドオンの Stylish を使えばいいかと)。やったね:
userContent.css
@-moz-document url-prefix(https://pawoo.net/web/timelines/)
{
.drawer:first-child
{
max-width: 1em;
transition: ease-in-out 0.2s max-width;
}
.drawer:first-child:hover
{
max-width: 100%;
}
}
(※ http://pawoo.net/web/timelines/
は参加してるインスタンスの URL に適宜書き換えてください)
Google Chrome でも同じ拡張機能 Stylish で同じようなことができると思います。
Author And Source
この問題について(Mastodon の UI の toot カラムを必要なときだけ出す), 我々は、より多くの情報をここで見つけました https://qiita.com/kadopoly/items/24aad9f3d6d70f424481著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .