2019-04-26 19:14:30 +08:00
|
|
|
/*
|
|
|
|
Copyright 2019 New Vector Ltd
|
2019-07-11 21:44:52 +08:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2019-04-26 19:14:30 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_MessageActionBar {
|
2022-05-16 23:44:05 +08:00
|
|
|
--MessageActionBar-size-button: 28px;
|
|
|
|
--MessageActionBar-size-box: 32px; // 28px + 2px (margin) * 2
|
2022-06-08 18:52:25 +08:00
|
|
|
--MessageActionBar-item-hover-background: $panel-actions;
|
|
|
|
--MessageActionBar-item-hover-borderRadius: 6px;
|
|
|
|
--MessageActionBar-item-hover-zIndex: 1;
|
2022-05-16 23:44:05 +08:00
|
|
|
|
2019-04-26 19:14:30 +08:00
|
|
|
position: absolute;
|
|
|
|
visibility: hidden;
|
|
|
|
cursor: pointer;
|
2019-04-29 20:04:16 +08:00
|
|
|
display: flex;
|
2022-05-16 23:44:05 +08:00
|
|
|
height: var(--MessageActionBar-size-box);
|
2020-03-31 22:26:23 +08:00
|
|
|
line-height: $font-24px;
|
2021-05-19 17:25:54 +08:00
|
|
|
border-radius: 8px;
|
2021-08-12 17:10:47 +08:00
|
|
|
background: $background;
|
2021-05-19 17:25:54 +08:00
|
|
|
border: 1px solid $input-border-color;
|
2021-05-19 18:17:34 +08:00
|
|
|
top: -32px;
|
2019-04-29 20:04:16 +08:00
|
|
|
right: 8px;
|
2019-04-26 19:14:30 +08:00
|
|
|
user-select: none;
|
2022-05-04 22:35:04 +08:00
|
|
|
// Ensure the action bar appears above other things like the read marker
|
|
|
|
// and sender avatar (for small screens)
|
|
|
|
z-index: 10;
|
2019-04-26 19:14:30 +08:00
|
|
|
|
2019-07-11 21:44:52 +08:00
|
|
|
// Adds a previous event safe area so that you can't accidentally hover the
|
|
|
|
// previous event while trying to mouse into the action bar or from the
|
|
|
|
// react button to its tooltip.
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
2019-07-12 00:31:05 +08:00
|
|
|
// tooltip safe mousing area + tooltip overhang +
|
|
|
|
// action bar + action bar offset from event
|
|
|
|
width: calc(10px + 48px + 100% + 8px);
|
2019-07-11 21:44:52 +08:00
|
|
|
// safe area + action bar
|
|
|
|
height: calc(20px + 100%);
|
2020-08-14 02:24:11 +08:00
|
|
|
top: -12px;
|
2019-07-12 00:31:05 +08:00
|
|
|
left: -58px;
|
2019-07-11 21:44:52 +08:00
|
|
|
z-index: -1;
|
|
|
|
cursor: initial;
|
|
|
|
}
|
|
|
|
|
2022-04-06 00:15:31 +08:00
|
|
|
>* {
|
2019-07-04 17:07:22 +08:00
|
|
|
white-space: nowrap;
|
2019-04-29 20:04:16 +08:00
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
2021-05-19 17:25:54 +08:00
|
|
|
margin: 2px;
|
2019-04-29 20:04:16 +08:00
|
|
|
|
|
|
|
&:hover {
|
2022-06-08 18:52:25 +08:00
|
|
|
background: var(--MessageActionBar-item-hover-background);
|
|
|
|
border-radius: var(--MessageActionBar-item-hover-borderRadius);
|
|
|
|
z-index: var(--MessageActionBar-item-hover-zIndex);
|
2019-04-29 20:04:16 +08:00
|
|
|
}
|
2019-04-26 19:14:30 +08:00
|
|
|
}
|
|
|
|
}
|
2019-04-29 20:04:16 +08:00
|
|
|
|
2019-07-04 17:07:22 +08:00
|
|
|
.mx_MessageActionBar_maskButton {
|
2022-05-16 23:44:05 +08:00
|
|
|
width: var(--MessageActionBar-size-button);
|
|
|
|
height: var(--MessageActionBar-size-button);
|
2022-03-12 01:51:38 +08:00
|
|
|
|
|
|
|
&:disabled,
|
|
|
|
&[disabled] {
|
|
|
|
cursor: not-allowed;
|
|
|
|
opacity: .75;
|
|
|
|
}
|
2019-07-04 17:07:22 +08:00
|
|
|
|
2022-06-08 17:08:49 +08:00
|
|
|
&::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
mask-size: 18px;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
background-color: $secondary-content;
|
|
|
|
}
|
2021-05-19 17:25:54 +08:00
|
|
|
|
2022-06-08 17:08:49 +08:00
|
|
|
&:hover::after {
|
|
|
|
background-color: $primary-content;
|
|
|
|
}
|
2019-05-01 01:09:10 +08:00
|
|
|
|
2022-06-08 17:08:49 +08:00
|
|
|
&.mx_MessageActionBar_reactButton::after {
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/message-bar/emoji.svg');
|
|
|
|
}
|
2019-06-19 21:45:01 +08:00
|
|
|
|
2022-06-08 17:08:49 +08:00
|
|
|
&.mx_MessageActionBar_replyButton::after {
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/message-bar/reply.svg');
|
|
|
|
}
|
2019-04-29 22:16:16 +08:00
|
|
|
|
2022-06-08 17:08:49 +08:00
|
|
|
&.mx_MessageActionBar_threadButton {
|
|
|
|
&::after {
|
|
|
|
mask-image: url('$(res)/img/element-icons/message/thread.svg');
|
|
|
|
}
|
2021-08-10 20:30:12 +08:00
|
|
|
|
2022-06-08 17:08:49 +08:00
|
|
|
.mx_Indicator {
|
|
|
|
background: $links;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
}
|
|
|
|
}
|
2022-04-06 00:15:31 +08:00
|
|
|
|
2022-06-08 17:08:49 +08:00
|
|
|
&.mx_MessageActionBar_editButton::after {
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/message-bar/edit.svg');
|
|
|
|
}
|
2019-05-06 23:41:15 +08:00
|
|
|
|
2022-06-08 17:08:49 +08:00
|
|
|
&.mx_MessageActionBar_optionsButton::after {
|
|
|
|
mask-image: url('$(res)/img/element-icons/context-menu.svg');
|
|
|
|
}
|
2021-04-22 06:16:05 +08:00
|
|
|
|
2022-06-08 17:08:49 +08:00
|
|
|
&.mx_MessageActionBar_resendButton::after {
|
|
|
|
mask-image: url('$(res)/img/element-icons/retry.svg');
|
|
|
|
}
|
2021-04-22 06:16:05 +08:00
|
|
|
|
2022-06-08 17:08:49 +08:00
|
|
|
&.mx_MessageActionBar_cancelButton::after {
|
|
|
|
mask-image: url('$(res)/img/element-icons/trashcan.svg');
|
|
|
|
}
|
2021-07-17 05:55:07 +08:00
|
|
|
|
2022-06-08 17:08:49 +08:00
|
|
|
&.mx_MessageActionBar_downloadButton {
|
|
|
|
&::after {
|
|
|
|
mask-size: 14px;
|
|
|
|
mask-image: url('$(res)/img/download.svg');
|
2022-06-08 19:16:24 +08:00
|
|
|
}
|
2021-07-17 05:55:07 +08:00
|
|
|
|
2022-06-08 19:16:24 +08:00
|
|
|
&.mx_MessageActionBar_downloadSpinnerButton::after {
|
|
|
|
background-color: transparent; // hide the download icon mask
|
2022-06-08 17:08:49 +08:00
|
|
|
}
|
|
|
|
}
|
2021-09-27 18:20:37 +08:00
|
|
|
|
2022-06-08 17:08:49 +08:00
|
|
|
&.mx_MessageActionBar_expandMessageButton::after {
|
|
|
|
mask-size: 12px;
|
|
|
|
mask-image: url('$(res)/img/element-icons/expand-message.svg');
|
|
|
|
}
|
2021-09-27 18:20:37 +08:00
|
|
|
|
2022-06-08 17:08:49 +08:00
|
|
|
&.mx_MessageActionBar_collapseMessageButton::after {
|
|
|
|
mask-size: 12px;
|
|
|
|
mask-image: url('$(res)/img/element-icons/collapse-message.svg');
|
|
|
|
}
|
2022-01-19 18:39:33 +08:00
|
|
|
|
2022-06-08 17:53:58 +08:00
|
|
|
&.mx_MessageActionBar_viewInRoomButton::after {
|
2022-06-08 17:08:49 +08:00
|
|
|
mask-image: url('$(res)/img/element-icons/view-in-room.svg');
|
|
|
|
}
|
2022-01-19 18:39:33 +08:00
|
|
|
|
2022-06-08 17:53:58 +08:00
|
|
|
&.mx_MessageActionBar_copyLinkButton::after {
|
2022-06-08 17:08:49 +08:00
|
|
|
mask-image: url('$(res)/img/element-icons/link.svg');
|
|
|
|
}
|
2021-07-17 05:55:07 +08:00
|
|
|
}
|