Jitsi Meet - Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
jitsi-meet/react/features/filmstrip/components/native/styles.js

51 lines
1.0 KiB

import { ColorPalette, createStyleSheet } from '../../../base/styles';
import { styles as platformIndependentStyles } from '../styles';
/**
* The base/default style of indicators such as audioMutedIndicator,
* moderatorIndicator, and videoMutedIndicator.
*/
const indicator = {
textShadowColor: ColorPalette.black,
textShadowOffset: {
height: -1,
width: 0
}
};
/**
* Native-specific styles for the filmstrip.
*/
export const styles = createStyleSheet(platformIndependentStyles, {
/**
* Audio muted indicator style.
*/
thumbnailIndicator: indicator,
dominantSpeakerIndicator: {
fontSize: 12
},
/**
* Dominant speaker indicator background style.
*/
dominantSpeakerIndicatorBackground: {
borderRadius: 16,
padding: 4
},
/**
* Moderator indicator style.
*/
moderatorIndicator: indicator,
/**
* Video thumbnail style.
*/
thumbnail: {
height: 80,
width: 80
}
});