Files
jitsi-meet/react/features/filmstrip/components/native/styles.js
Lyubo Marinov 3aff4967f1 Keep buttons in their associated features
Contributing all buttons in one place goes against the designs that we
set out at the beginning of the project's rewrite and that multiple of
us have been following since then.
2018-05-15 14:12:38 -05:00

51 lines
1014 B
JavaScript

import { ColorPalette, createStyleSheet } from '../../../base/styles';
import { default 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
}
};
/**
* The styles of the feature filmstrip.
*/
export default createStyleSheet(platformIndependentStyles, {
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
},
/**
* Audio muted indicator style.
*/
thumbnailIndicator: indicator
});