2019-09-05 18:10:45 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2019-09-05 18:10:45 +08:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2019-09-05 18:10:45 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_MessageComposerFormatBar {
|
|
|
|
display: none;
|
2021-10-25 17:56:55 +08:00
|
|
|
width: calc(32px * 6);
|
2021-10-20 23:19:54 +08:00
|
|
|
height: 32px;
|
2019-09-05 18:10:45 +08:00
|
|
|
position: absolute;
|
|
|
|
cursor: pointer;
|
2021-10-20 23:19:54 +08:00
|
|
|
border-radius: 8px;
|
2021-10-21 00:07:31 +08:00
|
|
|
background-color: $background;
|
2024-03-13 21:38:32 +08:00
|
|
|
border: var(--cpd-border-width-1) solid var(--cpd-color-border-disabled);
|
2019-09-05 18:10:45 +08:00
|
|
|
user-select: none;
|
2022-07-27 21:39:29 +08:00
|
|
|
/* equal to z-index of mx_ReplyPreview and mx_RoomView_statusArea (1000) */
|
|
|
|
/* but as it appears after them in the DOM, will appear on top. */
|
2019-09-23 20:06:59 +08:00
|
|
|
z-index: 1000;
|
2019-09-05 18:10:45 +08:00
|
|
|
|
|
|
|
&.mx_MessageComposerFormatBar_shown {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
> * {
|
|
|
|
white-space: nowrap;
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
2021-10-20 23:19:54 +08:00
|
|
|
margin: 2px;
|
2019-09-05 18:10:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageComposerFormatBar_button {
|
2021-10-20 23:19:54 +08:00
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
2019-09-05 18:10:45 +08:00
|
|
|
box-sizing: border-box;
|
2021-03-22 23:05:22 +08:00
|
|
|
vertical-align: middle;
|
2022-02-25 21:20:06 +08:00
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
&:hover {
|
2024-03-13 21:38:32 +08:00
|
|
|
background: var(--cpd-color-bg-subtle-secondary);
|
2022-02-25 21:20:06 +08:00
|
|
|
border-radius: 6px;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
2019-09-05 18:10:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageComposerFormatBar_button::after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
2024-10-04 20:42:23 +08:00
|
|
|
mask-size: 20px;
|
2024-03-13 21:38:32 +08:00
|
|
|
background-color: var(--cpd-color-icon-secondary);
|
2021-10-20 23:19:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageComposerFormatBar_button:hover::after {
|
2024-03-13 21:38:32 +08:00
|
|
|
background-color: var(--cpd-color-icon-primary);
|
2019-09-05 18:10:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageComposerFormatBar_buttonIconBold::after {
|
2024-10-04 20:42:23 +08:00
|
|
|
mask-image: url("@vector-im/compound-design-tokens/icons/bold.svg");
|
2019-09-05 18:10:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageComposerFormatBar_buttonIconItalic::after {
|
2024-10-04 20:42:23 +08:00
|
|
|
mask-image: url("@vector-im/compound-design-tokens/icons/italic.svg");
|
2019-09-05 18:10:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageComposerFormatBar_buttonIconStrikethrough::after {
|
2024-10-04 20:42:23 +08:00
|
|
|
mask-image: url("@vector-im/compound-design-tokens/icons/strikethrough.svg");
|
2019-09-05 18:10:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageComposerFormatBar_buttonIconQuote::after {
|
2024-10-04 20:42:23 +08:00
|
|
|
mask-image: url("@vector-im/compound-design-tokens/icons/quote.svg");
|
2019-09-05 18:10:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_MessageComposerFormatBar_buttonIconCode::after {
|
2024-10-04 20:42:23 +08:00
|
|
|
mask-image: url("@vector-im/compound-design-tokens/icons/inline-code.svg");
|
2019-09-05 18:10:45 +08:00
|
|
|
}
|
2021-10-25 17:56:55 +08:00
|
|
|
|
|
|
|
.mx_MessageComposerFormatBar_buttonIconInsertLink::after {
|
2024-10-04 20:42:23 +08:00
|
|
|
mask-image: url("@vector-im/compound-design-tokens/icons/link.svg");
|
2021-10-25 17:56:55 +08:00
|
|
|
}
|
2019-09-05 18:10:45 +08:00
|
|
|
}
|
2019-09-05 19:22:42 +08:00
|
|
|
|
|
|
|
.mx_MessageComposerFormatBar_buttonTooltip {
|
|
|
|
white-space: nowrap;
|
2020-03-31 22:26:23 +08:00
|
|
|
font-size: $font-13px;
|
2023-06-29 18:30:25 +08:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2019-09-05 21:09:37 +08:00
|
|
|
min-width: 54px;
|
|
|
|
text-align: center;
|
2019-09-05 19:22:42 +08:00
|
|
|
}
|