Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

styles.js 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. import { 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: 'white',
  12. left: 20,
  13. position: 'absolute',
  14. top: 1
  15. },
  16. /**
  17. * Dominant speaker indicator style.
  18. */
  19. dominantSpeakerIndicator: {
  20. color: 'white',
  21. fontSize: 15
  22. },
  23. /**
  24. * Dominant speaker indicator background style.
  25. */
  26. dominantSpeakerIndicatorBackground: {
  27. backgroundColor: ColorPalette.jitsiBlue,
  28. borderRadius: 15,
  29. bottom: 2,
  30. left: 1,
  31. padding: 5,
  32. position: 'absolute'
  33. },
  34. /**
  35. * Participants container style.
  36. */
  37. filmStrip: {
  38. alignSelf: 'stretch',
  39. bottom: 10,
  40. flex: 1,
  41. flexDirection: 'row',
  42. position: 'absolute',
  43. right: 5
  44. },
  45. /**
  46. * Moderator indicator style.
  47. */
  48. moderatorIndicator: {
  49. backgroundColor: 'transparent',
  50. color: 'white',
  51. left: 1,
  52. position: 'absolute',
  53. top: 1
  54. },
  55. /**
  56. * Video thumbnail style.
  57. */
  58. thumbnail: {
  59. alignItems: 'stretch',
  60. backgroundColor: 'black',
  61. borderColor: '#424242',
  62. borderStyle: 'solid',
  63. borderWidth: 1,
  64. flex: 1,
  65. justifyContent: 'center',
  66. overflow: 'hidden',
  67. position: 'relative'
  68. },
  69. /**
  70. * Pinned video thumbnail style.
  71. */
  72. thumbnailPinned: {
  73. borderColor: ColorPalette.jitsiBlue,
  74. shadowColor: 'black',
  75. shadowOffset: {
  76. height: 5,
  77. width: 5
  78. },
  79. shadowRadius: 5
  80. },
  81. /**
  82. * Video muted indicator style.
  83. */
  84. videoMutedIndicator: {
  85. backgroundColor: 'transparent',
  86. color: 'white',
  87. left: 35,
  88. position: 'absolute',
  89. top: 1
  90. }
  91. };