fix(filmstrip) Minor style fixes (#12870)
This commit is contained in:
parent
d712a565f8
commit
6b8afbcceb
|
@ -147,7 +147,7 @@ const styles = (theme: Theme) => {
|
||||||
},
|
},
|
||||||
|
|
||||||
icon: {
|
icon: {
|
||||||
padding: '6px',
|
padding: '4px',
|
||||||
borderRadius: '4px',
|
borderRadius: '4px',
|
||||||
|
|
||||||
'&.status-high': {
|
'&.status-high': {
|
||||||
|
|
|
@ -103,7 +103,7 @@ export const ConnectionIndicatorIcon = ({
|
||||||
<span className = { emptyIconWrapperClassName }>
|
<span className = { emptyIconWrapperClassName }>
|
||||||
<Icon
|
<Icon
|
||||||
className = { clsx(classes.icon, colorClass) }
|
className = { clsx(classes.icon, colorClass) }
|
||||||
size = { 12 }
|
size = { 16 }
|
||||||
src = { IconConnection } />
|
src = { IconConnection } />
|
||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
|
|
|
@ -853,6 +853,7 @@ class Filmstrip extends PureComponent <IProps, IState> {
|
||||||
{ ...actions }>
|
{ ...actions }>
|
||||||
<Icon
|
<Icon
|
||||||
aria-label = { t('toolbar.accessibilityLabel.toggleFilmstrip') }
|
aria-label = { t('toolbar.accessibilityLabel.toggleFilmstrip') }
|
||||||
|
size = { 24 }
|
||||||
src = { icon } />
|
src = { icon } />
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -337,7 +337,7 @@ const defaultStyles = (theme: Theme) => {
|
||||||
|
|
||||||
activeSpeaker: {
|
activeSpeaker: {
|
||||||
'& .active-speaker-indicator': {
|
'& .active-speaker-indicator': {
|
||||||
boxShadow: `inset 0px 0px 0px 4px ${theme.palette.link01Active} !important`
|
boxShadow: `inset 0px 0px 0px 3px ${theme.palette.action01Hover} !important`
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ export const styles = (theme: Theme) => {
|
||||||
height: '24px',
|
height: '24px',
|
||||||
position: 'absolute' as const,
|
position: 'absolute' as const,
|
||||||
borderRadius: '4px',
|
borderRadius: '4px',
|
||||||
top: 'calc(-24px - 3px)',
|
top: 'calc(-24px - 2px)',
|
||||||
left: 'calc(50% - 16px)',
|
left: 'calc(50% - 16px)',
|
||||||
opacity: 0,
|
opacity: 0,
|
||||||
transition: 'opacity .3s',
|
transition: 'opacity .3s',
|
||||||
|
@ -51,7 +51,7 @@ export const styles = (theme: Theme) => {
|
||||||
|
|
||||||
toggleVerticalFilmstripContainer: {
|
toggleVerticalFilmstripContainer: {
|
||||||
transform: 'rotate(-90deg)',
|
transform: 'rotate(-90deg)',
|
||||||
left: 'calc(-24px - 3px - 4px)',
|
left: 'calc(-24px - 2px - 4px)',
|
||||||
top: 'calc(50% - 12px)'
|
top: 'calc(50% - 12px)'
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue