You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.js 747B

1234567891011121314151617181920212223242526272829303132333435
  1. // @flow
  2. import { ColorPalette, createStyleSheet } from '../../../base/styles';
  3. import BaseTheme from '../../../base/ui/components/BaseTheme';
  4. export const LIVE_LABEL_COLOR = ColorPalette.blue;
  5. /**
  6. * The styles of the React {@code Components} of the feature recording.
  7. */
  8. export default createStyleSheet({
  9. /**
  10. * Style for the recording indicator.
  11. */
  12. indicatorStyle: {
  13. marginRight: 4,
  14. marginLeft: 0,
  15. marginBottom: 0
  16. },
  17. /**
  18. * Style for the recording indicator.
  19. */
  20. indicatorLive: {
  21. backgroundColor: LIVE_LABEL_COLOR
  22. },
  23. /**
  24. * Style for the recording indicator.
  25. */
  26. indicatorRecording: {
  27. backgroundColor: BaseTheme.palette.iconError
  28. }
  29. });