2019-05-02 01:05:11 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2019-2024 New Vector Ltd.
|
2019-05-02 01:05:11 +08:00
|
|
|
|
2024-09-09 21:57:16 +08: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-02 01:05:11 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_ReactionsRowButton {
|
2019-07-05 23:17:17 +08:00
|
|
|
display: inline-flex;
|
2021-05-13 20:32:38 +08:00
|
|
|
line-height: $font-20px;
|
|
|
|
padding: 1px 6px;
|
2023-07-13 01:46:49 +08:00
|
|
|
border: 1px solid $quinary-content;
|
2019-05-02 01:05:11 +08:00
|
|
|
border-radius: 10px;
|
2023-07-13 01:46:49 +08:00
|
|
|
background-color: $secondary-hairline-color;
|
2019-05-11 01:09:32 +08:00
|
|
|
user-select: none;
|
2023-09-01 18:16:24 +08:00
|
|
|
align-items: center;
|
2019-05-02 01:05:11 +08:00
|
|
|
|
|
|
|
&:hover {
|
2023-07-13 01:46:49 +08:00
|
|
|
border-color: $quinary-content;
|
2019-05-02 01:05:11 +08:00
|
|
|
}
|
2019-05-02 18:48:32 +08:00
|
|
|
|
|
|
|
&.mx_ReactionsRowButton_selected {
|
2023-07-13 01:46:49 +08:00
|
|
|
background-color: $accent-300;
|
|
|
|
border-color: $accent-800;
|
2019-05-02 18:48:32 +08:00
|
|
|
}
|
2019-07-05 23:17:17 +08:00
|
|
|
|
2021-04-30 10:55:58 +08:00
|
|
|
&.mx_AccessibleButton_disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
2020-04-12 07:12:58 +08:00
|
|
|
.mx_ReactionsRowButton_content {
|
|
|
|
max-width: 100px;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
padding-right: 4px;
|
|
|
|
}
|
2019-07-05 23:17:17 +08:00
|
|
|
}
|