mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-17 08:57:49 +00:00
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.
51 lines
1014 B
JavaScript
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
|
|
});
|