Zoom on emojis on hover
This commit is contained in:
parent
c62b0360ff
commit
6f41fb295e
4 changed files with 68 additions and 0 deletions
|
|
@ -735,6 +735,20 @@ body.layout-single-column {
|
|||
|
||||
|
||||
|
||||
/* Zoom on emojis on hover (in post content only */
|
||||
.layout-single-column .status__content { /* So the emoji doesn't clip out when zoomed on. */
|
||||
overflow: visible;
|
||||
}
|
||||
.layout-single-column .status__content .emojione {
|
||||
transition: transform .8s .8s;
|
||||
}
|
||||
.layout-single-column .status__content .emojione:hover {
|
||||
transform: scale(2.5);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/* 💬 Posts
|
||||
-------- */
|
||||
.layout-single-column .reply-indicator__content,
|
||||
|
|
@ -1204,6 +1218,9 @@ body.layout-single-column {
|
|||
.layout-single-column .detailed-status__wrapper .status__prepend-icon-wrapper {
|
||||
width: 46px;
|
||||
}
|
||||
.layout-single-column .status__prepend .muted .emojione {
|
||||
opacity: 1;
|
||||
}
|
||||
.layout-single-column .status-card,
|
||||
.layout-single-column .status-card.compact {
|
||||
background-color: var(--color-content-secondary-bg);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue