2019-05-02 01:05:11 +08: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 22:57:30 +08:00
|
|
|
color: $primary-fg-color;
|
2021-05-13 17:56:51 +08:00
|
|
|
|
|
|
|
.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');
|
|
|
|
}
|
|
|
|
}
|
2019-05-02 01:05:11 +08:00
|
|
|
}
|
2019-06-27 20:05:04 +08:00
|
|
|
|
|
|
|
.mx_ReactionsRow_showAll {
|
|
|
|
text-decoration: none;
|
2020-03-31 22:26:23 +08:00
|
|
|
font-size: $font-10px;
|
2019-06-27 20:05:04 +08:00
|
|
|
font-weight: 600;
|
|
|
|
margin-left: 6px;
|
|
|
|
vertical-align: top;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:link,
|
|
|
|
&:visited {
|
|
|
|
color: $accent-color;
|
|
|
|
}
|
|
|
|
}
|