2019-05-01 19:05:11 +02:00
|
|
|
/*
|
|
|
|
Copyright 2019 New Vector Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_ReactionsRow {
|
|
|
|
margin: 6px 0;
|
2019-06-07 16:57:30 +02:00
|
|
|
color: $primary-fg-color;
|
2021-05-13 11:56:51 +02:00
|
|
|
|
|
|
|
.mx_ReactionsRow_addReactionButton {
|
|
|
|
position: relative;
|
2021-05-17 11:01:24 +02:00
|
|
|
display: inline-block;
|
|
|
|
visibility: hidden; // show on hover of the .mx_EventTile
|
2021-05-13 14:59:10 +02:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2021-05-13 14:32:38 +02:00
|
|
|
vertical-align: middle;
|
2021-05-13 14:59:10 +02:00
|
|
|
margin-left: 4px;
|
2021-06-18 19:59:22 +02:00
|
|
|
margin-right: 4px;
|
2021-05-13 11:56:51 +02:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2021-05-13 14:59:10 +02:00
|
|
|
mask-size: 16px;
|
2021-05-13 11:56:51 +02:00
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
background-color: $tertiary-fg-color;
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/message-bar/emoji.svg');
|
|
|
|
}
|
2021-05-13 14:59:10 +02:00
|
|
|
|
|
|
|
&.mx_ReactionsRow_addReactionButton_active {
|
2021-05-17 11:01:24 +02:00
|
|
|
visibility: visible; // keep showing whilst the context menu is shown
|
2021-05-13 14:59:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover, &.mx_ReactionsRow_addReactionButton_active {
|
|
|
|
&::before {
|
|
|
|
background-color: $primary-fg-color;
|
|
|
|
}
|
|
|
|
}
|
2021-05-13 11:56:51 +02:00
|
|
|
}
|
2019-05-01 19:05:11 +02:00
|
|
|
}
|
2019-06-27 14:05:04 +02:00
|
|
|
|
2021-05-13 14:32:38 +02:00
|
|
|
.mx_EventTile:hover .mx_ReactionsRow_addReactionButton {
|
2021-05-17 11:01:24 +02:00
|
|
|
visibility: visible;
|
2021-05-13 14:32:38 +02:00
|
|
|
}
|
|
|
|
|
2019-06-27 14:05:04 +02:00
|
|
|
.mx_ReactionsRow_showAll {
|
|
|
|
text-decoration: none;
|
2021-05-13 14:59:10 +02:00
|
|
|
font-size: $font-12px;
|
|
|
|
line-height: $font-20px;
|
|
|
|
margin-left: 4px;
|
2021-05-13 14:32:38 +02:00
|
|
|
vertical-align: middle;
|
2019-06-27 14:05:04 +02:00
|
|
|
|
2021-05-13 14:59:10 +02:00
|
|
|
&:link, &:visited {
|
2021-05-13 15:13:00 +02:00
|
|
|
color: $tertiary-fg-color;
|
2021-05-13 14:59:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $primary-fg-color;
|
2019-06-27 14:05:04 +02:00
|
|
|
}
|
|
|
|
}
|