Add emojiReact popup and call action code
This commit is contained in:
parent
6d48537d54
commit
1901d39871
4 changed files with 33 additions and 0 deletions
Binary file not shown.
Binary file not shown.
|
@ -2790,6 +2790,7 @@ a.status-card.compact:hover {
|
|||
.detailed-status__button {
|
||||
flex: 1 1 auto;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.column-settings__outer {
|
||||
|
|
|
@ -53,3 +53,35 @@
|
|||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.emoji-react-selector {
|
||||
position: absolute;
|
||||
bottom: 100%;
|
||||
display: flex;
|
||||
background-color: #fff;
|
||||
padding: 8px;
|
||||
border-radius: 9999px;
|
||||
box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
transition: 0.1s;
|
||||
|
||||
&__emoji {
|
||||
display: block;
|
||||
padding: 0 2px;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
|
||||
img {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.detailed-status__button--favourite:hover {
|
||||
.emoji-react-selector {
|
||||
opacity: 1;
|
||||
pointer-events: all;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue