Fix padding and border-radius issue of the right panel for chat aka mx_ThreadPanel (#8307)

* Specify the correct padding to the chat panel aka mx_ThreadPanel

Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com>

* Add border to the right chat panel

Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com>
This commit is contained in:
Suguru Hirahara 2022-04-13 15:33:54 +00:00 committed by GitHub
parent fe4683df10
commit a59f889f79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,6 +39,7 @@ limitations under the License.
overflow: hidden;
position: relative; // offset parent for jump to bottom button
flex: 1;
border-radius: 8px;
}
.mx_AutoHideScrollbar {
@ -124,4 +125,12 @@ limitations under the License.
.mx_WhoIsTypingTile_avatars {
flex-basis: 48px; // 12 (padding on message list) + 36 (padding on event lines)
}
&.mx_BaseCard {
// For a chat timeline on the right panel when the widget is maximised
// TODO: rename ThreadPanel
&.mx_ThreadPanel {
padding-right: 8px; // .mx_RightPanel padding
}
}
}