2019-05-01 20:05:11 +03:00
|
|
|
/*
|
2024-09-09 16:57:16 +03:00
|
|
|
Copyright 2019-2024 New Vector Ltd.
|
2019-05-01 20:05:11 +03:00
|
|
|
|
2024-09-09 16:57:16 +03:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2019-05-01 20:05:11 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_ReactionsRow {
|
2024-10-02 17:59:03 +03:00
|
|
|
color: var(--cpd-color-text-primary);
|
2021-05-13 12:56:51 +03:00
|
|
|
|
|
|
|
.mx_ReactionsRow_addReactionButton {
|
|
|
|
position: relative;
|
2021-05-17 12:01:24 +03:00
|
|
|
display: inline-block;
|
2022-07-27 16:39:29 +03:00
|
|
|
visibility: hidden; /* show on hover of the .mx_EventTile */
|
2021-05-13 15:59:10 +03:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2021-05-13 15:32:38 +03:00
|
|
|
vertical-align: middle;
|
2021-05-13 15:59:10 +03:00
|
|
|
margin-left: 4px;
|
2021-06-18 20:59:22 +03:00
|
|
|
margin-right: 4px;
|
2021-05-13 12:56:51 +03:00
|
|
|
|
|
|
|
&::before {
|
2022-12-12 14:24:14 +03:00
|
|
|
content: "";
|
2021-05-13 12:56:51 +03:00
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2021-05-13 15:59:10 +03:00
|
|
|
mask-size: 16px;
|
2021-05-13 12:56:51 +03:00
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
2021-08-12 12:53:54 +03:00
|
|
|
background-color: $tertiary-content;
|
2022-12-12 14:24:14 +03:00
|
|
|
mask-image: url("$(res)/img/element-icons/room/message-bar/emoji.svg");
|
2021-05-13 12:56:51 +03:00
|
|
|
}
|
2021-05-13 15:59:10 +03:00
|
|
|
|
|
|
|
&.mx_ReactionsRow_addReactionButton_active {
|
2022-07-27 16:39:29 +03:00
|
|
|
visibility: visible; /* keep showing whilst the context menu is shown */
|
2021-05-13 15:59:10 +03:00
|
|
|
}
|
|
|
|
|
2022-12-12 14:24:14 +03:00
|
|
|
&:hover,
|
|
|
|
&.mx_ReactionsRow_addReactionButton_active {
|
2021-05-13 15:59:10 +03:00
|
|
|
&::before {
|
2021-08-12 12:27:12 +03:00
|
|
|
background-color: $primary-content;
|
2021-05-13 15:59:10 +03:00
|
|
|
}
|
|
|
|
}
|
2021-05-13 12:56:51 +03:00
|
|
|
}
|
2019-05-01 20:05:11 +03:00
|
|
|
}
|
2019-06-27 15:05:04 +03:00
|
|
|
|
2021-05-13 15:32:38 +03:00
|
|
|
.mx_EventTile:hover .mx_ReactionsRow_addReactionButton {
|
2021-05-17 12:01:24 +03:00
|
|
|
visibility: visible;
|
2021-05-13 15:32:38 +03:00
|
|
|
}
|
|
|
|
|
2019-06-27 15:05:04 +03:00
|
|
|
.mx_ReactionsRow_showAll {
|
2022-01-07 12:40:53 +03:00
|
|
|
color: $tertiary-content;
|
2021-05-13 15:59:10 +03:00
|
|
|
|
2022-05-21 12:38:50 +03:00
|
|
|
&.mx_AccessibleButton_kind_link_inline {
|
|
|
|
font-size: $font-12px;
|
|
|
|
line-height: $font-20px;
|
|
|
|
margin-inline-start: $spacing-4;
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $primary-content;
|
|
|
|
}
|
2019-06-27 15:05:04 +03:00
|
|
|
}
|
|
|
|
}
|