nice little border to select a conversation
This commit is contained in:
@@ -72,7 +72,6 @@ export default function FooterControls() {
|
|||||||
<Box
|
<Box
|
||||||
sx={{
|
sx={{
|
||||||
maxWidth: 100,
|
maxWidth: 100,
|
||||||
|
|
||||||
zIndex: 10,
|
zIndex: 10,
|
||||||
boxShadow: 10,
|
boxShadow: 10,
|
||||||
|
|
||||||
@@ -92,7 +91,16 @@ export default function FooterControls() {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{selectedConversation && (
|
{selectedConversation && (
|
||||||
<Stack direction={'column'} spacing={1}>
|
<Stack
|
||||||
|
direction={'column'}
|
||||||
|
spacing={1}
|
||||||
|
sx={{
|
||||||
|
bgcolor: blueGrey[200],
|
||||||
|
p: 1,
|
||||||
|
borderRadius: 2,
|
||||||
|
}}
|
||||||
|
alignItems={'center'}
|
||||||
|
>
|
||||||
<AvatarGroup
|
<AvatarGroup
|
||||||
variant={'rounded'}
|
variant={'rounded'}
|
||||||
sx={{
|
sx={{
|
||||||
@@ -122,35 +130,37 @@ export default function FooterControls() {
|
|||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
</AvatarGroup>
|
</AvatarGroup>
|
||||||
|
|
||||||
|
<Divider orientation="horizontal" flexItem />
|
||||||
|
|
||||||
|
<Tooltip title="Show video!">
|
||||||
|
<IconButton
|
||||||
|
sx={{
|
||||||
|
color: 'white',
|
||||||
|
}}
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
<FiVideoOff />
|
||||||
|
</IconButton>
|
||||||
|
</Tooltip>
|
||||||
|
|
||||||
|
{/* todo: not speaking mode, speaking mode, locked in mode */}
|
||||||
|
<Tooltip title="Speak or toggle by clicking here!">
|
||||||
|
<IconButton
|
||||||
|
sx={{
|
||||||
|
color: 'white',
|
||||||
|
}}
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
<FiSun />
|
||||||
|
</IconButton>
|
||||||
|
</Tooltip>
|
||||||
</Stack>
|
</Stack>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<Stack sx={{ mt: 'auto' }} spacing={1} direction={'column'} alignItems={'center'}>
|
<Stack sx={{ mt: 'auto' }} spacing={1} direction={'column'} alignItems={'center'}>
|
||||||
<Divider orientation="horizontal" flexItem />
|
<Divider orientation="horizontal" flexItem />
|
||||||
|
|
||||||
<Tooltip title="Show video!">
|
|
||||||
<IconButton
|
|
||||||
sx={{
|
|
||||||
color: 'white',
|
|
||||||
}}
|
|
||||||
size="small"
|
|
||||||
>
|
|
||||||
<FiVideoOff />
|
|
||||||
</IconButton>
|
|
||||||
</Tooltip>
|
|
||||||
|
|
||||||
{/* todo: not speaking mode, speaking mode, locked in mode */}
|
|
||||||
<Tooltip title="Speak or toggle by clicking here!">
|
|
||||||
<IconButton
|
|
||||||
sx={{
|
|
||||||
color: 'white',
|
|
||||||
}}
|
|
||||||
size="small"
|
|
||||||
>
|
|
||||||
<FiSun />
|
|
||||||
</IconButton>
|
|
||||||
</Tooltip>
|
|
||||||
|
|
||||||
<Divider orientation="horizontal" flexItem />
|
<Divider orientation="horizontal" flexItem />
|
||||||
|
|
||||||
<Tooltip title={'overlay mode'}>
|
<Tooltip title={'overlay mode'}>
|
||||||
|
|||||||
Reference in New Issue
Block a user