mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-04-14 23:30:16 +00:00
Only display Picture-in-Picture button when feature is available Moved conference timer before title Created new always-on container for labels Moved recording labels to always-on Updated expanded label to support new always-on labels Added raised hands counter label Added speaker - earpiece toggle button Lifted state up
36 lines
747 B
JavaScript
36 lines
747 B
JavaScript
// @flow
|
|
|
|
import { ColorPalette, createStyleSheet } from '../../../base/styles';
|
|
import BaseTheme from '../../../base/ui/components/BaseTheme';
|
|
|
|
export const LIVE_LABEL_COLOR = ColorPalette.blue;
|
|
|
|
/**
|
|
* The styles of the React {@code Components} of the feature recording.
|
|
*/
|
|
export default createStyleSheet({
|
|
|
|
/**
|
|
* Style for the recording indicator.
|
|
*/
|
|
indicatorStyle: {
|
|
marginRight: 4,
|
|
marginLeft: 0,
|
|
marginBottom: 0
|
|
},
|
|
|
|
/**
|
|
* Style for the recording indicator.
|
|
*/
|
|
indicatorLive: {
|
|
backgroundColor: LIVE_LABEL_COLOR
|
|
},
|
|
|
|
/**
|
|
* Style for the recording indicator.
|
|
*/
|
|
indicatorRecording: {
|
|
backgroundColor: BaseTheme.palette.iconError
|
|
}
|
|
});
|