Enlarge custom emojis on hover
This commit is contained in:
parent
94eaa3eed4
commit
646ea003dd
2 changed files with 11 additions and 0 deletions
|
@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Enlarge custom emojis on hover.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Disabled posting and reposting if current user doesn't have `create_post` permission.
|
- Disabled posting and reposting if current user doesn't have `create_post` permission.
|
||||||
|
|
|
@ -171,6 +171,13 @@ function getContent(): string {
|
||||||
height: 32px;
|
height: 32px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
width: 32px;
|
width: 32px;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
height: 48px;
|
||||||
|
transition: 100ms linear;
|
||||||
|
transition-delay: 0.5s;
|
||||||
|
width: 48px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue