mastodon userstyle

use this to hide the drawer on the left-hand side of the mastodon advanced web interface until you hover over it

the drawer will stay active if either the search input or the post textarea are active or contain content

instructions

userstyle

@-moz-document url-prefix("https://mastodon.ie/deck") {
  .drawer {
    width: 32px;
    transition-property: width;
    transition-duration: 250ms;
    transition-delay: 0ms;
  }

  .drawer:hover,
  .drawer:has(*:focus),
  .drawer:has(textarea:not(:placeholder-shown)),
  .drawer:has(.search__input:not(:placeholder-shown)) {
    width: 350px;
  }


  .drawer > * {
    min-width: 320px;
    transition-property: opacity;
    transition-duration: 200ms;
    transition-delay: 100ms;
    opacity: 0;
  }

  .drawer:hover > *,
  .drawer:has(*:focus) > *,
  .drawer:has(textarea:not(:placeholder-shown)) > *,
  .drawer:has(.search__input:not(:placeholder-shown)) > * {
    opacity: 1;
  }
}