/******************************************************************************\
 *                                              Web Client: Embiggen Emojos   *
from https://github.com/psydwannabe/mastodon-snippets/blob/master/CSS/embiggen-emojos.css
from https://plush.city/@mawr/102981490435139198
\******************************************************************************/

/* Emojos in the "reply" box that appears above the status update text box when 
 * you click the "reply" button on a toot  */
.reply-indicator__content .emojione, 

/* Emojos in toots across the rest of the entire web client */
.status__content .emojione {
	width: 25px;	/* Stock is 20px */
	height: 25px;	/* Stock is 20px */
}

/* Emojos in the "Emoji Mart" (pop-out from emoji button) in compose window */
/* @eldang disabling this bit because it makes the picker take even longer to scroll through
.emoji-mart-category .emoji-mart-emoji span {
	width: 33px !important; /* stock: 20px; defined inline */
	height: 33px !important; /* stock: 20px; defined inline */
}
*/

/* remove the "I don't like it" reporting option. see https://github.com/hometown-fork/hometown/issues/1202 */
.report-dialog-modal__container > div > label.dialog-option:nth-child(1) {
  display: none !important;
}

/* indicate media without a description
initial code by Paul (https://linernotes.club/@balrogboogie), expanded upon by FiXato (https://contact.fixato.org)
related discussions: https://dragonscave.space/@Mayana/106443499687608116.
Feel free to reuse it; it's public domain (https://linernotes.club/@balrogboogie/106681622019395866) */
.media-gallery__item-thumbnail img:not([alt]),
.audio-player__canvas:not([title]),
.video-player video:not([title]), 
.media-gallery__gifv video:not([title])
 {
    border: 3px dashed fuchsia;
    box-sizing: border-box;
}