Mastodon UI의 toot 열을 필요할 때만 발행
개요
화면이 작아서 4 열이 조금 너비가 많다고 생각하니?
마우스 오버했을 때만 넉넉하게 toot 하는 컬럼을 내고 싶습니다만.
방법
Firefox의 경우
userContent.css
에 다음 CSS를 추가하기 만하면됩니다. 했어: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 크롬에서도 동일한 확장 프로그램Stylish에서도 비슷한 작업을 수행할 수 있습니다.
Reference
이 문제에 관하여(Mastodon UI의 toot 열을 필요할 때만 발행), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kadopoly/items/24aad9f3d6d70f424481텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)