Files
element-web/res/css/views/context_menus/_MessageContextMenu.pcss
T

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

114 lines
3.4 KiB
Plaintext
Raw Normal View History

2021-02-23 19:06:01 +01:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
2021-02-23 19:06:01 +01:00
Copyright 2021 Michael Weimann <mail@michael-weimann.eu>
2024-09-09 14:57:16 +01:00
Copyright 2015, 2016 OpenMarket Ltd
2021-02-23 19:06:01 +01: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.
2021-02-23 19:06:01 +01:00
*/
2021-02-23 18:49:11 +01:00
.mx_MessageContextMenu {
.mx_IconizedContextMenu_icon {
width: 16px;
height: 16px;
display: block;
&::before {
content: "";
width: 16px;
height: 16px;
display: block;
mask-position: center;
mask-size: contain;
mask-repeat: no-repeat;
}
}
.mx_MessageContextMenu_iconCollapse::before {
2024-10-21 11:36:31 +01:00
mask-image: url("@vector-im/compound-design-tokens/icons/chevron-up.svg");
2021-02-23 18:49:11 +01:00
}
.mx_MessageContextMenu_iconReport::before {
mask-image: url("@vector-im/compound-design-tokens/icons/error.svg");
2021-02-23 18:49:11 +01:00
}
.mx_MessageContextMenu_iconLink::before {
mask-image: url("@vector-im/compound-design-tokens/icons/link.svg");
2021-02-23 18:49:11 +01:00
}
.mx_MessageContextMenu_iconPermalink::before {
2021-05-25 13:36:26 +02:00
mask-image: url("$(res)/img/element-icons/room/share.svg");
2021-02-23 18:49:11 +01:00
}
.mx_MessageContextMenu_iconUnhidePreview::before {
2021-06-22 20:11:12 +02:00
mask-image: url("$(res)/img/element-icons/settings/appearance.svg");
2021-02-23 18:49:11 +01:00
}
.mx_MessageContextMenu_iconOpenInMapSite::before {
mask-image: url("$(res)/img/external-link.svg");
}
2021-12-08 14:56:48 +00:00
.mx_MessageContextMenu_iconEndPoll::before {
mask-image: url("@vector-im/compound-design-tokens/icons/check.svg");
2021-12-08 14:56:48 +00:00
}
2021-02-23 18:49:11 +01:00
.mx_MessageContextMenu_iconForward::before {
mask-image: url("@vector-im/compound-design-tokens/icons/forward.svg");
2021-02-23 18:49:11 +01:00
}
.mx_MessageContextMenu_iconRedact::before {
mask-image: url("@vector-im/compound-design-tokens/icons/delete.svg");
2021-02-23 18:49:11 +01:00
}
.mx_MessageContextMenu_iconResend::before {
mask-image: url("@vector-im/compound-design-tokens/icons/restart.svg");
2021-02-23 18:49:11 +01:00
}
.mx_MessageContextMenu_iconSource::before {
mask-image: url("@vector-im/compound-design-tokens/icons/inline-code.svg");
2021-02-23 18:49:11 +01:00
}
.mx_MessageContextMenu_iconQuote::before {
mask-image: url("@vector-im/compound-design-tokens/icons/quote.svg");
2021-02-23 18:49:11 +01:00
}
.mx_MessageContextMenu_iconPin::before {
mask-image: url("@vector-im/compound-design-tokens/icons/pin.svg");
2021-02-23 18:49:11 +01:00
}
.mx_MessageContextMenu_iconUnpin::before {
mask-image: url("@vector-im/compound-design-tokens/icons/unpin.svg");
2021-02-23 18:49:11 +01:00
}
.mx_MessageContextMenu_iconCopy::before {
height: 16px;
mask-image: url($copy-button-url);
2022-07-01 11:29:19 +02:00
position: relative;
width: 16px;
}
.mx_MessageContextMenu_iconEdit::before {
mask-image: url("$(res)/img/element-icons/room/message-bar/edit.svg");
}
.mx_MessageContextMenu_iconReply::before {
mask-image: url("@vector-im/compound-design-tokens/icons/reply.svg");
}
.mx_MessageContextMenu_iconReplyInThread::before {
mask-image: url("@vector-im/compound-design-tokens/icons/threads.svg");
}
.mx_MessageContextMenu_iconReact::before {
mask-image: url("$(res)/img/element-icons/room/message-bar/emoji.svg");
}
.mx_MessageContextMenu_iconViewInRoom::before {
mask-image: url("$(res)/img/element-icons/view-in-room.svg");
}
.mx_MessageContextMenu_jumpToEvent::before {
mask-image: url("$(res)/img/element-icons/child-relationship.svg");
}
2021-02-23 18:49:11 +01:00
}