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 891B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import { createStyleSheet } from '../../../base/styles';
  2. import { styles as platformIndependentStyles } from '../styles';
  3. /**
  4. * Web-specific styles for the film strip.
  5. */
  6. export const styles = createStyleSheet(platformIndependentStyles, {
  7. /**
  8. * Audio muted indicator style.
  9. */
  10. audioMutedIndicator: {
  11. textShadow: '1px 1px 2px black'
  12. },
  13. /**
  14. * Dominant speaker indicator background style.
  15. */
  16. dominantSpeakerIndicatorBackground: {
  17. height: 15,
  18. width: 15
  19. },
  20. /**
  21. * Moderator indicator style.
  22. */
  23. moderatorIndicator: {
  24. textShadow: '1px 1px 2px black'
  25. },
  26. /**
  27. * Video thumbnail style.
  28. */
  29. thumbnail: {
  30. height: 120,
  31. width: 120
  32. },
  33. /**
  34. * Video muted indicator style.
  35. */
  36. videoMutedIndicator: {
  37. textShadow: '1px 1px 2px black'
  38. }
  39. });