さっきのアレンジして、フローティングでボタン類出るようにしたよ。DTP鯖勢は「コンパクト」テーマを選んでみて。
コミットはこちら。
https://github.com/noellabo/mastodon/commit/f2490fb42ec5fb316b7e08eb98c94d445841a5fd
手順はこちら。
git remote add noellabo https://github.com/noellabo/mastodon.git
git fetch noellabo
git cherry-pick f2490fb42ec5fb316b7e08eb98c94d445841a5fd
RAILS_ENV=production bundle exec rails assets:precompile
#dtp
@yamo というわけで、タイムラインのボタン類隠して、hoverで出すヤツ、インスタンス側で実装してみたよ。便利っしょ。
スマートフォン・タブレットでも、一応境目のとこタッチするとアクションバー出てくるけど、これは知らないと気がつかないw
https://dtp-mstdn.jp/@yamo/100582768111033234
https://dtp-mstdn.jp/@yamo/100582761050876194
#dtp
さっきの続きで、もう少しバーを大きくしたヤツ。
カスタムCSSはこちら。
.status__action-bar {
position: absolute;
opacity: 0;
bottom: -1px;
left: 0;
right: 0;
justify-content: center;
max-height: 0px;
}
.status__action-bar:hover {
opacity: 0.9;
background-color: black;
max-height: none;
padding: 7px 0;
z-index: 2;
}
commitは前のあてた上でこれ。
https://github.com/dtp-mstdn-jp/mastodon/commit/24a0486b03183ed9e1e419a591277636455b4e60
手順。
git fetch noellabo
git cherry-pick 24a0486b03183ed9e1e419a591277636455b4e60
RAILS_ENV=production bundle exec rails assets:precompile #dtp