A new userstyle to resize emoji
resize mastodon emoji by ryanho
Details
Authorryanho
LicenseCC Zero
Categorymoe.pastwind.top
Created
Updated
Size927 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name pastwind.top - 2023/7/12 下午1:56:03
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document domain("moe.pastwind.top") {
/* 在此插入程式碼…… */
.detailed-status .status__content .emojione {
height: 32px;
width: auto;
}
.status__content .emojione {
height: 32px;
width: auto;
}
.emojione:hover {
width: auto !important;
/* set the width and height of the expanded emojo here */
height: 50px !important;
transition: all 0.3s ease-in-out !important;
/* the 0.3s is the animation time for growing the emojo, it can be set to 0 */;
}
.emojione {
transition: all 0.2s ease-in-out;
/* the 0.2s is the animation time for shrinking the emojo, it can be set to 0 */;
}
}