Skip to content
Snippets Groups Projects
Unverified Commit b19db93b authored by Douglas Fabris's avatar Douglas Fabris Committed by GitHub
Browse files

Chore: ExportMessages missing icon (#27628)

parent 22ee46f7
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,8 @@ const ExportMessages: FC<ExportMessagesProps> = ({ rid }) => {
return (
<>
<VerticalBar.Header>
{t('Export_Messages')}
<VerticalBar.Icon name='mail' />
<VerticalBar.Text>{t('Export_Messages')}</VerticalBar.Text>
<VerticalBar.Close onClick={close} />
</VerticalBar.Header>
<VerticalBar.ScrollableContent>
......
......@@ -79,7 +79,7 @@ const OTR = ({ isOnline, onClickClose, onClickStart, onClickEnd, onClickRefresh,
{onClickClose && <VerticalBar.Close onClick={onClickClose} />}
</VerticalBar.Header>
<VerticalBar.ScrollableContent p='x24'>
<VerticalBar.ScrollableContent p='x24' color='default'>
<Box fontScale='h4'>{t('Off_the_record_conversation')}</Box>
{isOnline ? renderOTRState() : <Box fontScale='p2m'>{t('OTR_is_only_available_when_both_users_are_online')}</Box>}
</VerticalBar.ScrollableContent>
......
......@@ -6,13 +6,13 @@ import type { ReactNode, ReactElement, HTMLAttributes, Ref } from 'react';
export const VideoConfPopupContainer = styled('div', ({ position: _position, ...props }: { position?: number }) => props)`
width: 100%;
position: absolute;
box-shadow: 0px 0px 2px 0px ${Palette.shadow['shadow-elevation-2x'].toString()},
box-shadow: 0px 0px 2px 0px ${Palette.shadow['shadow-elevation-2x'].toString()};
0px 0px 12px 0px ${Palette.shadow['shadow-elevation-2y'].toString()};
background-color: ${Palette.surface['surface-light'].toString()};
border: 1px solid ${Palette.stroke['stroke-extra-light'].toString()}
border-radius: 0.25rem;
border: 1px solid ${Palette.stroke['stroke-extra-light'].toString()};
top: ${(p): string => (p.position ? `${p.position}px` : '0')};
left: -${(p): string => (p.position ? `${p.position}px` : '0')};
border-radius: 0.25rem;
`;
type VideoConfPopupProps = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment