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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. import { ColorPalette, createStyleSheet } from '../../../base/styles';
  2. import { default as platformIndependentStyles } from '../styles';
  3. /**
  4. * The base/default style of indicators such as audioMutedIndicator,
  5. * moderatorIndicator, and videoMutedIndicator.
  6. */
  7. const indicator = {
  8. textShadowColor: ColorPalette.black,
  9. textShadowOffset: {
  10. height: -1,
  11. width: 0
  12. }
  13. };
  14. /**
  15. * The styles of the feature filmstrip.
  16. */
  17. export default createStyleSheet(platformIndependentStyles, {
  18. dominantSpeakerIndicator: {
  19. fontSize: 12
  20. },
  21. /**
  22. * Dominant speaker indicator background style.
  23. */
  24. dominantSpeakerIndicatorBackground: {
  25. borderRadius: 16,
  26. padding: 4
  27. },
  28. /**
  29. * Moderator indicator style.
  30. */
  31. moderatorIndicator: indicator,
  32. /**
  33. * Video thumbnail style.
  34. */
  35. thumbnail: {
  36. height: 80,
  37. width: 80
  38. },
  39. /**
  40. * Audio muted indicator style.
  41. */
  42. thumbnailIndicator: indicator
  43. });