|
|
@@ -4,17 +4,6 @@ import { BoxModel, ColorPalette } from '../../base/styles';
|
|
4
|
4
|
* Film strip related styles common to both Web and native.
|
|
5
|
5
|
*/
|
|
6
|
6
|
export const styles = {
|
|
7
|
|
- /**
|
|
8
|
|
- * Audio muted indicator style.
|
|
9
|
|
- */
|
|
10
|
|
- audioMutedIndicator: {
|
|
11
|
|
- backgroundColor: 'transparent',
|
|
12
|
|
- color: ColorPalette.white,
|
|
13
|
|
- left: 20,
|
|
14
|
|
- position: 'absolute',
|
|
15
|
|
- top: 1
|
|
16
|
|
- },
|
|
17
|
|
-
|
|
18
|
7
|
/**
|
|
19
|
8
|
* Dominant speaker indicator style.
|
|
20
|
9
|
*/
|
|
|
@@ -29,10 +18,10 @@ export const styles = {
|
|
29
|
18
|
dominantSpeakerIndicatorBackground: {
|
|
30
|
19
|
backgroundColor: ColorPalette.blue,
|
|
31
|
20
|
borderRadius: 15,
|
|
32
|
|
- bottom: 2,
|
|
33
|
|
- left: 1,
|
|
|
21
|
+ left: 4,
|
|
34
|
22
|
padding: 5,
|
|
35
|
|
- position: 'absolute'
|
|
|
23
|
+ position: 'absolute',
|
|
|
24
|
+ top: 4
|
|
36
|
25
|
},
|
|
37
|
26
|
|
|
38
|
27
|
/**
|
|
|
@@ -63,10 +52,10 @@ export const styles = {
|
|
63
|
52
|
*/
|
|
64
|
53
|
moderatorIndicator: {
|
|
65
|
54
|
backgroundColor: 'transparent',
|
|
|
55
|
+ bottom: 4,
|
|
66
|
56
|
color: ColorPalette.white,
|
|
67
|
|
- left: 1,
|
|
68
|
57
|
position: 'absolute',
|
|
69
|
|
- top: 1
|
|
|
58
|
+ right: 4
|
|
70
|
59
|
},
|
|
71
|
60
|
|
|
72
|
61
|
/**
|
|
|
@@ -76,14 +65,40 @@ export const styles = {
|
|
76
|
65
|
alignItems: 'stretch',
|
|
77
|
66
|
backgroundColor: ColorPalette.appBackground,
|
|
78
|
67
|
borderColor: '#424242',
|
|
|
68
|
+ borderRadius: 3,
|
|
79
|
69
|
borderStyle: 'solid',
|
|
80
|
70
|
borderWidth: 1,
|
|
81
|
71
|
flex: 1,
|
|
82
|
72
|
justifyContent: 'center',
|
|
|
73
|
+ marginLeft: 2,
|
|
|
74
|
+ marginRight: 2,
|
|
83
|
75
|
overflow: 'hidden',
|
|
84
|
76
|
position: 'relative'
|
|
85
|
77
|
},
|
|
86
|
78
|
|
|
|
79
|
+ /**
|
|
|
80
|
+ * The thumbnail audio and video muted indicator style.
|
|
|
81
|
+ */
|
|
|
82
|
+ thumbnailIndicator: {
|
|
|
83
|
+ backgroundColor: 'transparent',
|
|
|
84
|
+ color: ColorPalette.white,
|
|
|
85
|
+ paddingLeft: 1,
|
|
|
86
|
+ paddingRight: 1,
|
|
|
87
|
+ position: 'relative'
|
|
|
88
|
+ },
|
|
|
89
|
+
|
|
|
90
|
+ /**
|
|
|
91
|
+ * The thumbnails indicator container.
|
|
|
92
|
+ */
|
|
|
93
|
+ thumbnailIndicatorContainer: {
|
|
|
94
|
+ alignSelf: 'stretch',
|
|
|
95
|
+ bottom: 4,
|
|
|
96
|
+ flex: 1,
|
|
|
97
|
+ flexDirection: 'row',
|
|
|
98
|
+ left: 4,
|
|
|
99
|
+ position: 'absolute'
|
|
|
100
|
+ },
|
|
|
101
|
+
|
|
87
|
102
|
/**
|
|
88
|
103
|
* Pinned video thumbnail style.
|
|
89
|
104
|
*/
|
|
|
@@ -95,16 +110,5 @@ export const styles = {
|
|
95
|
110
|
width: 5
|
|
96
|
111
|
},
|
|
97
|
112
|
shadowRadius: 5
|
|
98
|
|
- },
|
|
99
|
|
-
|
|
100
|
|
- /**
|
|
101
|
|
- * Video muted indicator style.
|
|
102
|
|
- */
|
|
103
|
|
- videoMutedIndicator: {
|
|
104
|
|
- backgroundColor: 'transparent',
|
|
105
|
|
- color: ColorPalette.white,
|
|
106
|
|
- left: 35,
|
|
107
|
|
- position: 'absolute',
|
|
108
|
|
- top: 1
|
|
109
|
113
|
}
|
|
110
|
114
|
};
|