mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 13:27:49 +00:00
Rearrange recording feature files
This commit is contained in:
committed by
Zoltan Bettenbuk
parent
2b1cb75e40
commit
71edea8aac
26
react/features/recording/components/native/styles.js
Normal file
26
react/features/recording/components/native/styles.js
Normal file
@@ -0,0 +1,26 @@
|
||||
// @flow
|
||||
|
||||
import { ColorPalette, createStyleSheet } from '../../../base/styles';
|
||||
|
||||
export const LIVE_LABEL_COLOR = ColorPalette.blue;
|
||||
export const REC_LABEL_COLOR = ColorPalette.red;
|
||||
|
||||
/**
|
||||
* The styles of the React {@code Components} of the feature recording.
|
||||
*/
|
||||
export default createStyleSheet({
|
||||
|
||||
/**
|
||||
* Style for the recording indicator.
|
||||
*/
|
||||
indicatorLive: {
|
||||
backgroundColor: LIVE_LABEL_COLOR
|
||||
},
|
||||
|
||||
/**
|
||||
* Style for the recording indicator.
|
||||
*/
|
||||
indicatorRecording: {
|
||||
backgroundColor: REC_LABEL_COLOR
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user