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:
parent
fe4683df10
commit
a59f889f79
1 changed files with 9 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue