/* START mastodon emoji scaling by @eh5@eh5.me */
.account__header__content,
.reply-indicator__content,
.status__content:not(.status__content--collapsed) {
  overflow: unset;
}

.account__header__content .emojione,
.reply-indicator__content .emojione,
.status__content:not(.status__content--collapsed) .emojione {
  position: relative;
  z-index: 10;
  transform-origin: center;
  /* Animation duration */
  transition: 200ms ease-in-out;
}

.account__header__content .emojione:hover,
.reply-indicator__content .emojione:hover,
.status__content:not(.status__content--collapsed) .emojione:hover {
  z-index: 11;
  /* Scale up 2 times */
  transform: scale(5);
  /* shadows around image edges */
  filter: drop-shadow(0 0 1px #282c37);
}

.directory__card .account__header__content .emojione:hover {
  transform: unset;
}
/* END mastodon emoji scaling by @eh5@eh5.me */

/* START Replace "Post" with "Toot!" */
.compose-form__publish-button-wrapper button, .button[href = "/publish"] {
  text-indent: -9999px;
  line-height: 0; /* Collapse the original line */
}

.compose-form__publish-button-wrapper button:after, .button[href = "/publish"]:after {
  content:'Toot!'; 
  text-indent: 0;
  display: block;
  line-height: initial; /* New content takes up original line height */
}
/* END Replace "Post" with "Toot!" */

