/*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;
}

/* 彩虹按钮
button.button.button--block {
    background: linear-gradient(to right, red, orange, yellow, green, cyan, blue);
}
*/

/* 长图限制补丁 by bgme */
.status .media-gallery {
  max-height: 512px;
}

@media screen and (max-width: 889px) {
  .status .media-gallery {
    max-height: 200vw;
  }
}

