fix(filmstrip) Minor style fixes (#12870)

pull/12874/head jitsi-meet_8278
Robert Pintilii 2 years ago committed by GitHub
parent d712a565f8
commit 6b8afbcceb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      react/features/connection-indicator/components/web/ConnectionIndicator.tsx
  2. 2
      react/features/connection-indicator/components/web/ConnectionIndicatorIcon.js
  3. 1
      react/features/filmstrip/components/web/Filmstrip.tsx
  4. 2
      react/features/filmstrip/components/web/Thumbnail.tsx
  5. 4
      react/features/filmstrip/components/web/styles.ts

@ -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…
Cancel
Save