|
@@ -67,6 +67,15 @@ const toolbar = {
|
67
|
67
|
* The (conference) Toolbox/Toolbar related styles.
|
68
|
68
|
*/
|
69
|
69
|
export const styles = createStyleSheet({
|
|
70
|
+ /**
|
|
71
|
+ * The audio only (secondary) toolbar icon style.
|
|
72
|
+ */
|
|
73
|
+ audioOnlyIcon: {
|
|
74
|
+ ...smallIcon,
|
|
75
|
+ color: ColorPalette.white,
|
|
76
|
+ transform: [ { rotate: '135deg' } ]
|
|
77
|
+ },
|
|
78
|
+
|
70
|
79
|
/**
|
71
|
80
|
* The toolbar button icon style.
|
72
|
81
|
*/
|
|
@@ -115,6 +124,14 @@ export const styles = createStyleSheet({
|
115
|
124
|
opacity: 0.7
|
116
|
125
|
},
|
117
|
126
|
|
|
127
|
+ /**
|
|
128
|
+ * The secondary toolbar icon style.
|
|
129
|
+ */
|
|
130
|
+ secondaryToolbarIcon: {
|
|
131
|
+ ...smallIcon,
|
|
132
|
+ color: ColorPalette.white
|
|
133
|
+ },
|
|
134
|
+
|
118
|
135
|
/**
|
119
|
136
|
* The style of the root/top-level Container of Toolbar that contains
|
120
|
137
|
* toolbars.
|
|
@@ -133,13 +150,5 @@ export const styles = createStyleSheet({
|
133
|
150
|
whiteIcon: {
|
134
|
151
|
...icon,
|
135
|
152
|
color: ColorPalette.white
|
136
|
|
- },
|
137
|
|
-
|
138
|
|
- /**
|
139
|
|
- * The secondary toolbar icon style.
|
140
|
|
- */
|
141
|
|
- secondaryToolbarIcon: {
|
142
|
|
- ...smallIcon,
|
143
|
|
- color: ColorPalette.white
|
144
|
153
|
}
|
145
|
154
|
});
|