Add extra add reactions button to encourage more diverse reactions to content

This commit is contained in:
Michael Telatynski 2021-05-13 10:56:51 +01:00
parent 3af0138e9d
commit b5fa4d88bf
3 changed files with 59 additions and 2 deletions

View file

@ -17,6 +17,26 @@ limitations under the License.
.mx_ReactionsRow {
margin: 6px 0;
color: $primary-fg-color;
.mx_ReactionsRow_addReactionButton {
position: relative;
display: inline-block;
width: 16px;
height: 16px;
vertical-align: sub;
&::before {
content: '';
position: absolute;
height: 100%;
width: 100%;
mask-size: cover;
mask-repeat: no-repeat;
mask-position: center;
background-color: $tertiary-fg-color;
mask-image: url('$(res)/img/element-icons/room/message-bar/emoji.svg');
}
}
}
.mx_ReactionsRow_showAll {