2021-02-23 19:06:01 +01:00
|
|
|
/*
|
2021-06-22 20:11:12 +02:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2021-02-23 19:06:01 +01:00
|
|
|
Copyright 2021 Michael Weimann <mail@michael-weimann.eu>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
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;
|
|
|
|
background: $primary-fg-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageContextMenu_iconCollapse::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/message/chevron-up.svg');
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageContextMenu_iconReport::before {
|
2021-05-25 13:36:26 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/warning-badge.svg');
|
2021-02-23 18:49:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageContextMenu_iconLink::before {
|
2021-06-22 20:11:12 +02:00
|
|
|
mask-image: url('$(res)/img/element-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_iconForward::before {
|
2021-05-25 13:36:26 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/message/fwd.svg');
|
2021-02-23 18:49:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageContextMenu_iconRedact::before {
|
2021-05-25 13:36:26 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/trashcan.svg');
|
2021-02-23 18:49:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageContextMenu_iconResend::before {
|
2021-06-22 20:11:12 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/retry.svg');
|
2021-02-23 18:49:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageContextMenu_iconSource::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/format-bar/code.svg');
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageContextMenu_iconQuote::before {
|
2021-05-25 13:36:26 +02:00
|
|
|
mask-image: url('$(res)/img/element-icons/room/format-bar/quote.svg');
|
2021-02-23 18:49:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageContextMenu_iconPin::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/pin-upright.svg');
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageContextMenu_iconUnpin::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/pin.svg');
|
|
|
|
}
|
|
|
|
}
|