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