123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- import { ColorPalette } from '../../base/styles';
-
- /**
- * Size for the Avatar.
- */
- export const AVATAR_SIZE = 50;
-
- /**
- * The base style of {@link Filmstrip} shared between narrow and wide versions.
- */
- const filmstrip = {
- flexGrow: 0
- };
-
- /**
- * The styles of the feature filmstrip common to both Web and native.
- */
- export default {
- /**
- * Dominant speaker indicator style.
- */
- dominantSpeakerIndicator: {
- color: ColorPalette.white,
- fontSize: 15
- },
-
- /**
- * Dominant speaker indicator background style.
- */
- dominantSpeakerIndicatorBackground: {
- backgroundColor: ColorPalette.blue,
- borderRadius: 15,
- left: 4,
- padding: 5,
- position: 'absolute',
- top: 4
- },
-
- /**
- * The style of the narrow {@link Filmstrip} version which displays
- * thumbnails in a row at the bottom of the screen.
- */
- filmstripNarrow: {
- ...filmstrip,
- flexDirection: 'row',
- justifyContent: 'flex-end',
- height: 90
- },
-
- /**
- * The style of the wide {@link Filmstrip} version which displays thumbnails
- * in a column on the short size of the screen.
- */
- filmstripWide: {
- ...filmstrip,
- bottom: 0,
- flexDirection: 'column',
- position: 'absolute',
- right: 0,
- top: 0
- },
-
- /**
- * Container of the {@link LocalThumbnail}.
- */
- localThumbnail: {
- alignContent: 'stretch',
- alignSelf: 'stretch',
- aspectRatio: 1,
- flexShrink: 0,
- flexDirection: 'row'
- },
-
- /**
- * Moderator indicator style.
- */
- moderatorIndicator: {
- backgroundColor: 'transparent',
- bottom: 4,
- color: ColorPalette.white,
- position: 'absolute',
- right: 4
- },
-
- /**
- * The style of the scrollview containing the remote thumbnails.
- */
- scrollView: {
- flexGrow: 0
- },
-
- /**
- * The style of a participant's Thumbnail which renders either the video or
- * the avatar of the associated participant.
- */
- thumbnail: {
- alignItems: 'stretch',
- backgroundColor: ColorPalette.appBackground,
- borderColor: '#424242',
- borderRadius: 3,
- borderStyle: 'solid',
- borderWidth: 1,
- flex: 1,
- justifyContent: 'center',
- margin: 2,
- overflow: 'hidden',
- position: 'relative'
- },
-
- /**
- * The thumbnail audio and video muted indicator style.
- */
- thumbnailIndicator: {
- backgroundColor: 'transparent',
- color: ColorPalette.white,
- paddingLeft: 1,
- paddingRight: 1,
- position: 'relative'
- },
-
- /**
- * The thumbnails indicator container.
- */
- thumbnailIndicatorContainer: {
- alignSelf: 'stretch',
- bottom: 4,
- flex: 1,
- flexDirection: 'row',
- left: 4,
- position: 'absolute'
- },
-
- /**
- * Pinned video thumbnail style.
- */
- thumbnailPinned: {
- borderColor: ColorPalette.blue,
- shadowColor: ColorPalette.black,
- shadowOffset: {
- height: 5,
- width: 5
- },
- shadowRadius: 5
- }
- };
|