Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. import { BoxModel, ColorPalette } from '../../base/styles';
  2. /**
  3. * Film strip related styles common to both Web and native.
  4. */
  5. export const styles = {
  6. /**
  7. * Audio muted indicator style.
  8. */
  9. audioMutedIndicator: {
  10. backgroundColor: 'transparent',
  11. color: ColorPalette.white,
  12. left: 20,
  13. position: 'absolute',
  14. top: 1
  15. },
  16. /**
  17. * Dominant speaker indicator style.
  18. */
  19. dominantSpeakerIndicator: {
  20. color: ColorPalette.white,
  21. fontSize: 15
  22. },
  23. /**
  24. * Dominant speaker indicator background style.
  25. */
  26. dominantSpeakerIndicatorBackground: {
  27. backgroundColor: ColorPalette.blue,
  28. borderRadius: 15,
  29. bottom: 2,
  30. left: 1,
  31. padding: 5,
  32. position: 'absolute'
  33. },
  34. /**
  35. * The style of the Container which represents the very film strip.
  36. */
  37. filmStrip: {
  38. alignItems: 'flex-end',
  39. alignSelf: 'stretch',
  40. bottom: BoxModel.margin,
  41. flex: 1,
  42. flexDirection: 'column',
  43. left: 0,
  44. position: 'absolute',
  45. right: 0
  46. },
  47. /**
  48. * The style of the content container of the ScrollView which is placed
  49. * inside filmStrip and which contains the participants' thumbnails in order
  50. * to allow scrolling through them if they do not fit within the display.
  51. */
  52. filmStripScrollViewContentContainer: {
  53. paddingHorizontal: BoxModel.padding
  54. },
  55. /**
  56. * Moderator indicator style.
  57. */
  58. moderatorIndicator: {
  59. backgroundColor: 'transparent',
  60. color: ColorPalette.white,
  61. left: 1,
  62. position: 'absolute',
  63. top: 1
  64. },
  65. /**
  66. * Video thumbnail style.
  67. */
  68. thumbnail: {
  69. alignItems: 'stretch',
  70. backgroundColor: ColorPalette.appBackground,
  71. borderColor: '#424242',
  72. borderStyle: 'solid',
  73. borderWidth: 1,
  74. flex: 1,
  75. justifyContent: 'center',
  76. overflow: 'hidden',
  77. position: 'relative'
  78. },
  79. /**
  80. * Pinned video thumbnail style.
  81. */
  82. thumbnailPinned: {
  83. borderColor: ColorPalette.blue,
  84. shadowColor: ColorPalette.black,
  85. shadowOffset: {
  86. height: 5,
  87. width: 5
  88. },
  89. shadowRadius: 5
  90. },
  91. /**
  92. * Video muted indicator style.
  93. */
  94. videoMutedIndicator: {
  95. backgroundColor: 'transparent',
  96. color: ColorPalette.white,
  97. left: 35,
  98. position: 'absolute',
  99. top: 1
  100. }
  101. };