0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Vivaldi Socialをcssでちょっといじる

Last updated at Posted at 2023-07-07

マストドン系SNS、Vivaldi Socialというものがあります。
Vivaldiというブラウザのチームが運営しているfediverseのひとつです。
で、書き込み欄が結構かさばってたので、マウスオーバーで出てくるようにcssでちょっといじりました。
例によってstylusなどの拡張機能で適用することができます。
公開範囲選択の時に勝手に引っ込んだりして不便な場合もあります。

動画
https://social.vivaldi.net/@koke1024/110671008641214093

.drawer {
    animation-duration: 0.5s;
    position: absolute;
    z-index: 2;
    height: 65px;
}
.drawer__header {
    background-color: #222;
    border-radius: 8px;
}

.drawer:hover {
    animation-name: appear;
    height: 600px
}


@keyframes appear {
    0% {
        height: 65px;
    }
    100% {
        height: 600px;
    }
}

.drawer__inner {
    border-radius: 5px;
    border: #888 solid 4px;
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?