/*mastodon长图补丁 v2.1 by Shioko*/
.image-loader {
	align-items:center;
}
.zoomable-image {
	display: flex;
    height:auto;
	max-height: 100%;
    width: auto;
    max-width: 95%;
	overflow: auto !important;
	align-items:center;
}
.zoomable-image:hover {
	align-items: flex-start;
}

.zoomable-image img {
	max-height: 100%;
    max-width:95%;
}
.zoomable-image img:hover {
	max-height: 2000%;
    max-width:95%;
}


/*hashtag style by @slashine@slashine.onl and @flyover@pullopen.xyz*/
.mention.hashtag.status-link{
background-color: #93AEFD36;
padding: 0px 5px;
text-align: center;
text-decoration: none;
display: inline-block;
border-style: dashed;
border-color: #93AEFD;
border-width: 0.5px;
border-radius: 5px;
}
.mention.hashtag.status-link:hover{
background-color: #cdd2f54f;
}


label[for=user_invite_request_attributes_text]:after {
  content: '⚠️ 请使用中文告诉我们加入本社区的理由，请使用至少10个汉字描述理由。如被批准，您会收到一封欢迎邮件。如没有按照上述要求填写，注册会被拒绝。';
}


/* 表情包放大 */
/* START mastodon emoji scaling by @eh5@eh5.me */

.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(2);
  /* shadows around image edges */
  filter: drop-shadow(0 0 1px rgba(255,255,255,0.25));
}

.directory__card .account__header__content .emojione:hover {
  transform: unset;
}

/* END mastodon emoji scaling by @eh5@eh5.me */



