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 {
|
|
|
|
position: absolute;
|
|
|
|
visibility: hidden;
|
|
|
|
cursor: pointer;
|
2019-04-29 20:04:16 +08:00
|
|
|
display: flex;
|
|
|
|
height: 24px;
|
2020-03-31 22:26:23 +08:00
|
|
|
line-height: $font-24px;
|
2019-04-29 20:04:16 +08:00
|
|
|
border-radius: 4px;
|
2019-05-01 00:41:11 +08:00
|
|
|
background: $message-action-bar-bg-color;
|
2020-07-27 22:17:25 +08:00
|
|
|
top: -26px;
|
2019-04-29 20:04:16 +08:00
|
|
|
right: 8px;
|
2019-04-26 19:14:30 +08:00
|
|
|
user-select: none;
|
2019-06-13 00:23:11 +08:00
|
|
|
// Ensure the action bar appears above over things, like the read marker.
|
2019-06-12 21:41:45 +08:00
|
|
|
z-index: 1;
|
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;
|
|
|
|
}
|
|
|
|
|
2019-04-29 20:04:16 +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;
|
|
|
|
border: 1px solid $message-action-bar-border-color;
|
|
|
|
margin-left: -1px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border-color: $message-action-bar-hover-border-color;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
border-radius: 3px 0 0 3px;
|
|
|
|
}
|
2019-04-26 19:14:30 +08:00
|
|
|
|
2019-04-29 20:04:16 +08:00
|
|
|
&:last-child {
|
|
|
|
border-radius: 0 3px 3px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:only-child {
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
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 {
|
|
|
|
width: 27px;
|
|
|
|
}
|
|
|
|
|
2019-05-01 01:09:10 +08:00
|
|
|
.mx_MessageActionBar_maskButton::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
background-color: $message-action-bar-fg-color;
|
|
|
|
}
|
|
|
|
|
2019-06-19 21:45:01 +08:00
|
|
|
.mx_MessageActionBar_reactButton::after {
|
2020-07-07 00:28:54 +08:00
|
|
|
mask-image: url('$(res)/img/element-icons/room/message-bar/emoji.svg');
|
2019-06-19 21:45:01 +08:00
|
|
|
}
|
|
|
|
|
2019-04-29 22:16:16 +08:00
|
|
|
.mx_MessageActionBar_replyButton::after {
|
2020-07-07 00:28:54 +08:00
|
|
|
mask-image: url('$(res)/img/element-icons/room/message-bar/reply.svg');
|
2019-04-29 22:16:16 +08:00
|
|
|
}
|
|
|
|
|
2019-05-06 23:41:15 +08:00
|
|
|
.mx_MessageActionBar_editButton::after {
|
2020-07-07 00:28:54 +08:00
|
|
|
mask-image: url('$(res)/img/element-icons/room/message-bar/edit.svg');
|
2019-05-06 23:41:15 +08:00
|
|
|
}
|
|
|
|
|
2019-04-29 20:04:16 +08:00
|
|
|
.mx_MessageActionBar_optionsButton::after {
|
2020-07-07 00:28:54 +08:00
|
|
|
mask-image: url('$(res)/img/element-icons/context-menu.svg');
|
2019-04-29 20:04:16 +08:00
|
|
|
}
|