Fix forwarding UI papercuts (#8482)
parent
2e9c2dd42b
commit
af78356c9d
|
@ -85,6 +85,10 @@ limitations under the License.
|
||||||
margin-top: 24px;
|
margin-top: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_ForwardList_resultsList {
|
||||||
|
padding-right: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
.mx_ForwardList_entry {
|
.mx_ForwardList_entry {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
|
|
@ -131,7 +131,7 @@ const Entry: React.FC<IEntryProps> = ({ room, type, content, matrixClient: cli,
|
||||||
<AccessibleTooltipButton
|
<AccessibleTooltipButton
|
||||||
className="mx_ForwardList_roomButton"
|
className="mx_ForwardList_roomButton"
|
||||||
onClick={jumpToRoom}
|
onClick={jumpToRoom}
|
||||||
title={_t("Open link")}
|
title={_t("Open room")}
|
||||||
yOffset={-20}
|
yOffset={-20}
|
||||||
alignment={Alignment.Top}
|
alignment={Alignment.Top}
|
||||||
>
|
>
|
||||||
|
@ -261,6 +261,7 @@ const ForwardDialog: React.FC<IProps> = ({ matrixClient: cli, event, permalinkCr
|
||||||
{ rooms.length > 0 ? (
|
{ rooms.length > 0 ? (
|
||||||
<div className="mx_ForwardList_results">
|
<div className="mx_ForwardList_results">
|
||||||
<TruncatedList
|
<TruncatedList
|
||||||
|
className="mx_ForwardList_resultsList"
|
||||||
truncateAt={truncateAt}
|
truncateAt={truncateAt}
|
||||||
createOverflowElement={overflowTile}
|
createOverflowElement={overflowTile}
|
||||||
getChildren={(start, end) => rooms.slice(start, end).map(room =>
|
getChildren={(start, end) => rooms.slice(start, end).map(room =>
|
||||||
|
|
|
@ -2555,7 +2555,7 @@
|
||||||
"You don't have permission to do this": "You don't have permission to do this",
|
"You don't have permission to do this": "You don't have permission to do this",
|
||||||
"Sending": "Sending",
|
"Sending": "Sending",
|
||||||
"Sent": "Sent",
|
"Sent": "Sent",
|
||||||
"Open link": "Open link",
|
"Open room": "Open room",
|
||||||
"Send": "Send",
|
"Send": "Send",
|
||||||
"Forward message": "Forward message",
|
"Forward message": "Forward message",
|
||||||
"Message preview": "Message preview",
|
"Message preview": "Message preview",
|
||||||
|
|
Loading…
Reference in New Issue