Tweak timeline card layout (#7743)
parent
76cafb7aa9
commit
81f2b19d32
|
@ -28,31 +28,43 @@ limitations under the License.
|
||||||
|
|
||||||
.mx_BaseCard_header {
|
.mx_BaseCard_header {
|
||||||
margin: 5px 0 9px 0;
|
margin: 5px 0 9px 0;
|
||||||
|
|
||||||
.mx_BaseCard_close {
|
.mx_BaseCard_close {
|
||||||
margin: 8px;
|
margin: 8px;
|
||||||
right: 0;
|
right: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_AutoHideScrollbar {
|
.mx_AutoHideScrollbar {
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
width: calc(100% - 10px);
|
width: calc(100% - 10px);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Style to optimize the layout for the right panel area
|
.mx_NewRoomIntro {
|
||||||
|
margin-left: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
.mx_EventTile_content {
|
.mx_EventTile_content {
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_EventTile:not([data-layout="bubble"]) .mx_EventTile_line {
|
.mx_EventTile:not([data-layout="bubble"]) .mx_EventTile_line {
|
||||||
padding-left: 36px;
|
padding-left: 36px;
|
||||||
padding-right: 36px;
|
padding-right: 36px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_EventTile:not([data-layout="bubble"]) .mx_ReactionsRow {
|
||||||
|
padding-left: 36px;
|
||||||
|
padding-right: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
.mx_GroupLayout .mx_EventTile > .mx_SenderProfile {
|
.mx_GroupLayout .mx_EventTile > .mx_SenderProfile {
|
||||||
margin-left: 36px;
|
margin-left: 36px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_EventTile:not([data-layout="bubble"]) .mx_EventTile_avatar {
|
.mx_EventTile:not([data-layout="bubble"]) .mx_EventTile_avatar {
|
||||||
top: 12px;
|
top: 12px;
|
||||||
left: 0px;
|
left: -3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_CallEvent_wrapper {
|
.mx_CallEvent_wrapper {
|
||||||
|
@ -62,6 +74,7 @@ limitations under the License.
|
||||||
margin: 4px;
|
margin: 4px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_EventTile:not([data-layout="bubble"]) .mx_MessageTimestamp {
|
.mx_EventTile:not([data-layout="bubble"]) .mx_MessageTimestamp {
|
||||||
right: -4px;
|
right: -4px;
|
||||||
left: auto;
|
left: auto;
|
||||||
|
@ -70,18 +83,32 @@ limitations under the License.
|
||||||
.mx_EventTile:not([data-layout="bubble"]) .mx_EventTile_msgOption {
|
.mx_EventTile:not([data-layout="bubble"]) .mx_EventTile_msgOption {
|
||||||
margin-right: 2px;
|
margin-right: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_EventListSummary:not([data-layout=bubble]) .mx_EventTile_line {
|
||||||
|
padding-left: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
.mx_GroupLayout .mx_EventTile .mx_EventTile_line {
|
.mx_GroupLayout .mx_EventTile .mx_EventTile_line {
|
||||||
padding-bottom: 8px;
|
padding-bottom: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_EventTile_readAvatars {
|
.mx_EventTile_readAvatars {
|
||||||
top: -10px;
|
top: -10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
// mx_EventTile_info
|
|
||||||
.mx_EventTile:not([data-layout="bubble"]).mx_EventTile_info .mx_EventTile_line {
|
.mx_EventTile:not([data-layout="bubble"]).mx_EventTile_info .mx_EventTile_line {
|
||||||
padding-left: 36px;
|
padding-left: 36px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_EventTile:not([data-layout="bubble"]).mx_EventTile_info .mx_EventTile_avatar {
|
.mx_EventTile:not([data-layout="bubble"]).mx_EventTile_info .mx_EventTile_avatar {
|
||||||
left: 18px;
|
left: 18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_WhoIsTypingTile {
|
||||||
|
margin-left: -12px; // undo padding on the message list
|
||||||
|
}
|
||||||
|
|
||||||
|
.mx_WhoIsTypingTile_avatars {
|
||||||
|
flex-basis: 48px; // 12 (padding on message list) + 36 (padding on event lines)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -286,7 +286,7 @@ $left-gutter: 64px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_EventListSummary:not([data-layout=bubble]) .mx_EventTile_line {
|
.mx_EventListSummary:not([data-layout=bubble]) .mx_EventTile_line {
|
||||||
padding-left: calc($left-gutter);
|
padding-left: $left-gutter;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* all the overflow-y: hidden; are to trap Zalgos -
|
/* all the overflow-y: hidden; are to trap Zalgos -
|
||||||
|
|
|
@ -23,7 +23,7 @@ limitations under the License.
|
||||||
|
|
||||||
/* position the indicator in the same place horizontally as .mx_EventTile_avatar. */
|
/* position the indicator in the same place horizontally as .mx_EventTile_avatar. */
|
||||||
.mx_WhoIsTypingTile_avatars {
|
.mx_WhoIsTypingTile_avatars {
|
||||||
flex: 0 0 83px; // 18 + 65
|
flex: 0 0 82px; // 18 (padding on message list) + 64 (padding on event lines)
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue