Skip to content

Commit

Permalink
fix(moderation) fix ui styles for advanced moderation context menu (j…
Browse files Browse the repository at this point in the history
  • Loading branch information
quitrk authored and basil committed Aug 24, 2021
1 parent 476cea1 commit f4cb6a0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 16 deletions.
32 changes: 17 additions & 15 deletions react/features/participants-pane/components/FooterContextMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ import { MuteEveryonesVideoDialog } from '../../video-menu/components';

import {
ContextMenu,
ContextMenuItem
ContextMenuItem,
ContextMenuItemGroup
} from './web/styled';

const useStyles = makeStyles(() => {
Expand All @@ -33,11 +34,11 @@ const useStyles = makeStyles(() => {
right: 0,
top: '-8px',
transform: 'translateY(-100%)',
width: '238px'
width: '283px'
},
text: {
marginLeft: '52px',
lineHeight: '40px'
color: '#C2C2C2',
padding: '10px 16px 10px 52px'
},
paddedAction: {
marginLeft: '36px;'
Expand Down Expand Up @@ -74,17 +75,18 @@ export const FooterContextMenu = ({ onMouseLeave }: Props) => {
<ContextMenu
className = { classes.contextMenu }
onMouseLeave = { onMouseLeave }>
<ContextMenuItem
id = 'participants-pane-context-menu-stop-video'
onClick = { muteAllVideo }>
<Icon
size = { 20 }
src = { IconVideoOff } />
<span>{ t('participantsPane.actions.stopEveryonesVideo') }</span>
</ContextMenuItem>

<ContextMenuItemGroup>
<ContextMenuItem
id = 'participants-pane-context-menu-stop-video'
onClick = { muteAllVideo }>
<Icon
size = { 20 }
src = { IconVideoOff } />
<span>{ t('participantsPane.actions.stopEveryonesVideo') }</span>
</ContextMenuItem>
</ContextMenuItemGroup>
{ isModerationSupported && !allModerators ? (
<>
<ContextMenuItemGroup>
<div className = { classes.text }>
{t('participantsPane.actions.allow')}
</div>
Expand All @@ -106,7 +108,7 @@ export const FooterContextMenu = ({ onMouseLeave }: Props) => {
<span>{ t('participantsPane.actions.startModeration') }</span>
</ContextMenuItem>
)}
</>
</ContextMenuItemGroup>
) : undefined
}
</ContextMenu>
Expand Down
2 changes: 1 addition & 1 deletion react/features/participants-pane/components/web/styled.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const ContextMenuItem = styled.div`
cursor: pointer;
display: flex;
min-height: 40px;
padding: 8px 16px;
padding: 10px 16px;
& > *:not(:last-child) {
margin-right: 16px;
Expand Down

0 comments on commit f4cb6a0

Please sign in to comment.