element-web-Github/res/css/views/rooms/_WhoIsTypingTile.pcss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
1.6 KiB
Plaintext
Raw Normal View History

/*
Copyright 2018-2024 New Vector Ltd.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details.
*/
.mx_WhoIsTypingTile {
margin-left: -18px; /* offset padding from mx_RoomView_MessageList to center avatars */
padding-top: 18px;
2018-11-13 01:19:18 +08:00
display: flex;
align-items: center;
}
/* position the indicator in the same place horizontally as .mx_EventTile_avatar. */
2018-11-13 01:19:18 +08:00
.mx_WhoIsTypingTile_avatars {
flex: 0 0 82px; /* 18 (padding on message list) + 64 (padding on event lines) */
text-align: center;
}
2018-11-13 01:19:18 +08:00
.mx_WhoIsTypingTile_avatars > :not(:first-child) {
margin-left: -12px;
}
.mx_WhoIsTypingTile_avatars .mx_BaseAvatar {
border: 1px solid $background;
border-radius: 40px;
}
2018-11-13 01:19:18 +08:00
.mx_WhoIsTypingTile_remainingAvatarPlaceholder {
position: relative;
display: inline-block;
2022-01-10 16:42:34 +08:00
color: $primary-content;
background-color: $quinary-content;
border: 1px solid $background;
border-radius: 40px;
width: 24px;
height: 24px;
line-height: $font-24px;
font-size: 0.8em;
vertical-align: top;
text-align: center;
}
2018-11-13 01:19:18 +08:00
.mx_WhoIsTypingTile_label {
flex: 1;
font: var(--cpd-font-body-md-semibold);
color: $roomtopic-color;
}
2018-11-14 01:30:14 +08:00
.mx_WhoIsTypingTile_label > span {
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
}
.mx_MatrixChat_useCompactLayout {
2018-11-13 01:19:18 +08:00
.mx_WhoIsTypingTile {
padding-top: 4px;
}
}