fix(filmstrip) Minor style fixes (#12870)

This commit is contained in:
Robert Pintilii 2023-02-07 10:10:28 +02:00 committed by GitHub
parent d712a565f8
commit 6b8afbcceb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 5 deletions

View File

@ -147,7 +147,7 @@ const styles = (theme: Theme) => {
},
icon: {
padding: '6px',
padding: '4px',
borderRadius: '4px',
'&.status-high': {

View File

@ -103,7 +103,7 @@ export const ConnectionIndicatorIcon = ({
<span className = { emptyIconWrapperClassName }>
<Icon
className = { clsx(classes.icon, colorClass) }
size = { 12 }
size = { 16 }
src = { IconConnection } />
</span>
);

View File

@ -853,6 +853,7 @@ class Filmstrip extends PureComponent <IProps, IState> {
{ ...actions }>
<Icon
aria-label = { t('toolbar.accessibilityLabel.toggleFilmstrip') }
size = { 24 }
src = { icon } />
</button>
</div>

View File

@ -337,7 +337,7 @@ const defaultStyles = (theme: Theme) => {
activeSpeaker: {
'& .active-speaker-indicator': {
boxShadow: `inset 0px 0px 0px 4px ${theme.palette.link01Active} !important`
boxShadow: `inset 0px 0px 0px 3px ${theme.palette.action01Hover} !important`
}
},

View File

@ -20,7 +20,7 @@ export const styles = (theme: Theme) => {
height: '24px',
position: 'absolute' as const,
borderRadius: '4px',
top: 'calc(-24px - 3px)',
top: 'calc(-24px - 2px)',
left: 'calc(50% - 16px)',
opacity: 0,
transition: 'opacity .3s',
@ -51,7 +51,7 @@ export const styles = (theme: Theme) => {
toggleVerticalFilmstripContainer: {
transform: 'rotate(-90deg)',
left: 'calc(-24px - 3px - 4px)',
left: 'calc(-24px - 2px - 4px)',
top: 'calc(50% - 12px)'
},