mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-18 08:13:17 +00:00
add theme linernotes_dark
This commit is contained in:
parent
79f25fa452
commit
ae42207b8d
35 changed files with 1613 additions and 0 deletions
23
app/javascript/styles/mods/display_emojizoom.css
Normal file
23
app/javascript/styles/mods/display_emojizoom.css
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
Emoji hover zoom:
|
||||
- makes emoji grow in size when moused over
|
||||
|
||||
author: noiob
|
||||
license: CC0 - Public Domain
|
||||
source: https://userstyles.org/styles/150165
|
||||
*/
|
||||
|
||||
.emojione:hover
|
||||
{
|
||||
width: 50px !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 */;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue