2019-05-01 18:05:11 +01:00
|
|
|
/*
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2019-2024 New Vector Ltd.
|
2019-05-01 18:05:11 +01:00
|
|
|
|
2025-01-06 11:18:54 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-09 14:57:16 +01:00
|
|
|
Please see LICENSE files in the repository root for full details.
|
2019-05-01 18:05:11 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.mx_ReactionsRow {
|
2024-10-02 16:59:03 +02:00
|
|
|
color: var(--cpd-color-text-primary);
|
2021-05-13 10:56:51 +01:00
|
|
|
|
|
|
|
|
.mx_ReactionsRow_addReactionButton {
|
2021-05-17 10:01:24 +01:00
|
|
|
display: inline-block;
|
2022-07-27 14:39:29 +01:00
|
|
|
visibility: hidden; /* show on hover of the .mx_EventTile */
|
2026-01-05 17:14:51 +00:00
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
padding: var(--cpd-space-1x);
|
2021-05-13 13:32:38 +01:00
|
|
|
vertical-align: middle;
|
2021-05-13 13:59:10 +01:00
|
|
|
margin-left: 4px;
|
2021-06-18 18:59:22 +01:00
|
|
|
margin-right: 4px;
|
2021-05-13 10:56:51 +01:00
|
|
|
|
2026-01-05 17:14:51 +00:00
|
|
|
svg {
|
|
|
|
|
height: inherit;
|
|
|
|
|
width: inherit;
|
|
|
|
|
color: $tertiary-content;
|
2021-05-13 10:56:51 +01:00
|
|
|
}
|
2021-05-13 13:59:10 +01:00
|
|
|
|
|
|
|
|
&.mx_ReactionsRow_addReactionButton_active {
|
2022-07-27 14:39:29 +01:00
|
|
|
visibility: visible; /* keep showing whilst the context menu is shown */
|
2021-05-13 13:59:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
|
&.mx_ReactionsRow_addReactionButton_active {
|
2026-01-05 17:14:51 +00:00
|
|
|
svg {
|
|
|
|
|
color: $primary-content;
|
2021-05-13 13:59:10 +01:00
|
|
|
}
|
|
|
|
|
}
|
2021-05-13 10:56:51 +01:00
|
|
|
}
|
2019-05-01 18:05:11 +01:00
|
|
|
}
|
2019-06-27 13:05:04 +01:00
|
|
|
|
2021-05-13 13:32:38 +01:00
|
|
|
.mx_EventTile:hover .mx_ReactionsRow_addReactionButton {
|
2021-05-17 10:01:24 +01:00
|
|
|
visibility: visible;
|
2021-05-13 13:32:38 +01:00
|
|
|
}
|
|
|
|
|
|
2019-06-27 13:05:04 +01:00
|
|
|
.mx_ReactionsRow_showAll {
|
2022-01-07 10:40:53 +01:00
|
|
|
color: $tertiary-content;
|
2021-05-13 13:59:10 +01:00
|
|
|
|
2022-05-21 09:38:50 +00: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 13:05:04 +01:00
|
|
|
}
|
|
|
|
|
}
|