Files
element-web/res/css/views/messages/_ReactionsRowButton.pcss
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
852 B
Plaintext
Raw Normal View History

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