2018-11-12 23:09:51 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2018-2024 New Vector Ltd.
|
2018-11-12 23:09:51 +08:00
|
|
|
|
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.
|
2018-11-12 23:09:51 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_WhoIsTypingTile {
|
2022-07-27 21:39:29 +08:00
|
|
|
margin-left: -18px; /* offset padding from mx_RoomView_MessageList to center avatars */
|
2018-11-13 16:15:43 +08:00
|
|
|
padding-top: 18px;
|
2018-11-13 01:19:18 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2018-11-12 23:09:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* position the indicator in the same place horizontally as .mx_EventTile_avatar. */
|
2018-11-13 01:19:18 +08:00
|
|
|
.mx_WhoIsTypingTile_avatars {
|
2022-07-27 21:39:29 +08:00
|
|
|
flex: 0 0 82px; /* 18 (padding on message list) + 64 (padding on event lines) */
|
2018-11-12 23:09:51 +08:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2018-11-13 01:19:18 +08:00
|
|
|
.mx_WhoIsTypingTile_avatars > :not(:first-child) {
|
|
|
|
margin-left: -12px;
|
2018-11-12 23:09:51 +08:00
|
|
|
}
|
|
|
|
|
2020-02-12 03:06:07 +08:00
|
|
|
.mx_WhoIsTypingTile_avatars .mx_BaseAvatar {
|
2021-08-12 17:10:47 +08:00
|
|
|
border: 1px solid $background;
|
2020-02-12 03:06:07 +08:00
|
|
|
border-radius: 40px;
|
|
|
|
}
|
|
|
|
|
2018-11-13 01:19:18 +08:00
|
|
|
.mx_WhoIsTypingTile_remainingAvatarPlaceholder {
|
2019-02-24 11:18:21 +08:00
|
|
|
position: relative;
|
2018-11-12 23:09:51 +08:00
|
|
|
display: inline-block;
|
2022-01-10 16:42:34 +08:00
|
|
|
color: $primary-content;
|
|
|
|
background-color: $quinary-content;
|
2021-08-12 17:10:47 +08:00
|
|
|
border: 1px solid $background;
|
2018-11-12 23:09:51 +08:00
|
|
|
border-radius: 40px;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2020-03-31 22:26:23 +08:00
|
|
|
line-height: $font-24px;
|
2018-11-12 23:09:51 +08:00
|
|
|
font-size: 0.8em;
|
|
|
|
vertical-align: top;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2018-11-13 01:19:18 +08:00
|
|
|
.mx_WhoIsTypingTile_label {
|
|
|
|
flex: 1;
|
2023-06-29 18:30:25 +08:00
|
|
|
font: var(--cpd-font-body-md-semibold);
|
2020-07-16 21:38:23 +08:00
|
|
|
color: $roomtopic-color;
|
2018-11-12 23:09:51 +08:00
|
|
|
}
|
|
|
|
|
2018-11-14 01:30:14 +08:00
|
|
|
.mx_WhoIsTypingTile_label > span {
|
2019-01-01 07:22:40 +08:00
|
|
|
background-image: url("$(res)/img/typing-indicator-2x.gif");
|
2018-11-14 01:30:14 +08:00
|
|
|
background-size: 25px;
|
|
|
|
background-position: left bottom;
|
2018-11-13 01:19:18 +08:00
|
|
|
background-repeat: no-repeat;
|
2018-11-14 01:30:14 +08:00
|
|
|
padding-bottom: 15px;
|
|
|
|
display: block;
|
2018-11-13 01:19:18 +08:00
|
|
|
}
|
2018-11-12 23:09:51 +08:00
|
|
|
|
|
|
|
.mx_MatrixChat_useCompactLayout {
|
2018-11-13 01:19:18 +08:00
|
|
|
.mx_WhoIsTypingTile {
|
2018-11-13 16:15:43 +08:00
|
|
|
padding-top: 4px;
|
2018-11-12 23:09:51 +08:00
|
|
|
}
|
|
|
|
}
|