Fix: Emoji cause topics being cut off in new room header (#11865)
* Order of buttons on the right should be Video Call, Voice Call, Threads, Facepile * Fix 26326: Emoji cause topics being cut off in new room header
This commit is contained in:
parent
eca08db05a
commit
f6ef476f79
2 changed files with 15 additions and 9 deletions
|
@ -55,6 +55,11 @@ limitations under the License.
|
||||||
height: 0;
|
height: 0;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: all var(--transition-standard) ease 0.1s;
|
transition: all var(--transition-standard) ease 0.1s;
|
||||||
|
/* Emojis are rendered a bit bigger than text in the timeline
|
||||||
|
Make them compact/the same size as text here */
|
||||||
|
.mx_Emoji {
|
||||||
|
font-size: inherit;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_RoomHeader:hover .mx_RoomHeader_topic {
|
.mx_RoomHeader:hover .mx_RoomHeader_topic {
|
||||||
|
|
|
@ -193,6 +193,15 @@ export default function RoomHeader({
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
|
<Tooltip label={!videoCallDisabledReason ? _t("voip|video_call") : videoCallDisabledReason!}>
|
||||||
|
<IconButton
|
||||||
|
disabled={!!videoCallDisabledReason}
|
||||||
|
aria-label={!videoCallDisabledReason ? _t("voip|video_call") : videoCallDisabledReason!}
|
||||||
|
onClick={videoCallClick}
|
||||||
|
>
|
||||||
|
<VideoCallIcon />
|
||||||
|
</IconButton>
|
||||||
|
</Tooltip>
|
||||||
{!useElementCallExclusively && (
|
{!useElementCallExclusively && (
|
||||||
<Tooltip label={!voiceCallDisabledReason ? _t("voip|voice_call") : voiceCallDisabledReason!}>
|
<Tooltip label={!voiceCallDisabledReason ? _t("voip|voice_call") : voiceCallDisabledReason!}>
|
||||||
<IconButton
|
<IconButton
|
||||||
|
@ -204,15 +213,7 @@ export default function RoomHeader({
|
||||||
</IconButton>
|
</IconButton>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
)}
|
)}
|
||||||
<Tooltip label={!videoCallDisabledReason ? _t("voip|video_call") : videoCallDisabledReason!}>
|
|
||||||
<IconButton
|
|
||||||
disabled={!!videoCallDisabledReason}
|
|
||||||
aria-label={!videoCallDisabledReason ? _t("voip|video_call") : videoCallDisabledReason!}
|
|
||||||
onClick={videoCallClick}
|
|
||||||
>
|
|
||||||
<VideoCallIcon />
|
|
||||||
</IconButton>
|
|
||||||
</Tooltip>
|
|
||||||
<Tooltip label={_t("common|threads")}>
|
<Tooltip label={_t("common|threads")}>
|
||||||
<IconButton
|
<IconButton
|
||||||
indicator={notificationColorToIndicator(threadNotifications)}
|
indicator={notificationColorToIndicator(threadNotifications)}
|
||||||
|
|
Loading…
Reference in a new issue