fcr-ui-scene 3.8.1-beta → 3.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (226) hide show
  1. package/lib/base.js +2 -2
  2. package/lib/creator/provider-initializer.browser.js +8 -7
  3. package/lib/creator/provider-initializer.electron.js +8 -8
  4. package/lib/electron/asar-validation.d.ts +12 -0
  5. package/lib/electron/asar-validation.js +115 -0
  6. package/lib/electron/bootstrap-sdk.js +20 -12
  7. package/lib/electron/default-options.js +2 -1
  8. package/lib/electron/env.d.ts +1 -0
  9. package/lib/electron/env.js +6 -4
  10. package/lib/electron/exit-codes.js +11 -11
  11. package/lib/electron/hang-detection/manager.js +4 -4
  12. package/lib/electron/ipc-protocol.js +12 -12
  13. package/lib/electron/process-manager/event-manager.js +30 -30
  14. package/lib/electron/process-manager/index.js +88 -88
  15. package/lib/electron/process-manager/state-manager.js +57 -57
  16. package/lib/electron/process-manager/types.js +16 -16
  17. package/lib/electron/sdk-helper.js +3 -3
  18. package/lib/electron/window-proxy/browser-window-proxy.js +13 -13
  19. package/lib/electron/window-proxy/main-process-handler.js +14 -14
  20. package/lib/fragments/annotation/style.css +9 -9
  21. package/lib/fragments/annotation/toolbar/components/item/style.css +45 -45
  22. package/lib/fragments/annotation/toolbar/components/panel/style.css +24 -24
  23. package/lib/fragments/annotation/toolbar/components/tips/style.css +19 -19
  24. package/lib/fragments/annotation/toolbar/style.css +55 -55
  25. package/lib/fragments/whiteboard/cursor.css +77 -77
  26. package/lib/fragments/whiteboard/style.css +4 -4
  27. package/lib/global.css +62 -62
  28. package/lib/global.d.ts +27 -27
  29. package/lib/index.js +9 -1
  30. package/lib/modules/action-bar/components/chat/index.css +88 -88
  31. package/lib/modules/action-bar/components/more/index.css +114 -114
  32. package/lib/modules/action-bar/components/notification-bar/components/interpreter/index.css +58 -58
  33. package/lib/modules/action-bar/components/notification-bar/components/virtual-image/index.css +56 -56
  34. package/lib/modules/action-bar/components/notification-bar/index.css +74 -74
  35. package/lib/modules/action-bar/components/participants/index.css +21 -21
  36. package/lib/modules/action-bar/components/record/index.css +39 -39
  37. package/lib/modules/action-bar/components/trigger-output-language/index.css +86 -86
  38. package/lib/modules/action-bar/components/trigger-subscribe-language/guide-tooltip/index.css +22 -22
  39. package/lib/modules/action-bar/index.css +358 -358
  40. package/lib/modules/action-bar/main-scene/store.base.d.ts +3 -2
  41. package/lib/modules/action-bar/main-scene/store.base.js +29 -57
  42. package/lib/modules/action-bar/main-scene/view.js +3 -3
  43. package/lib/modules/audio-stream/index.js +3 -3
  44. package/lib/modules/caption/draggable-container/index.css +10 -10
  45. package/lib/modules/caption/view.css +158 -158
  46. package/lib/modules/chat/components/chat-bar/index.css +89 -89
  47. package/lib/modules/chat/components/chat-select/index.css +185 -185
  48. package/lib/modules/chat/index.css +124 -124
  49. package/lib/modules/components/apps/app-item/index.css +49 -49
  50. package/lib/modules/components/apps/index.css +9 -9
  51. package/lib/modules/components/caption-menu/index.css +58 -58
  52. package/lib/modules/components/caption-menu/steps/index.css +73 -73
  53. package/lib/modules/components/control-bar/components/loading/index.css +76 -76
  54. package/lib/modules/components/control-bar/components/progress/style.css +51 -51
  55. package/lib/modules/components/control-bar/components/switch-theme/index.css +101 -101
  56. package/lib/modules/components/control-bar/index.css +99 -99
  57. package/lib/modules/components/device-control/index.css +177 -177
  58. package/lib/modules/components/leave-meeting/components/index.css +151 -151
  59. package/lib/modules/components/leave-meeting/style.css +9 -9
  60. package/lib/modules/components/member-window/components/member-actions/store.js +22 -22
  61. package/lib/modules/components/member-window/index.css +502 -502
  62. package/lib/modules/components/security-menu/index.css +42 -42
  63. package/lib/modules/components/tab-frame/index.css +40 -40
  64. package/lib/modules/components/toolbar/components/item/style.css +94 -94
  65. package/lib/modules/components/toolbar/components/panel/style.css +86 -86
  66. package/lib/modules/components/toolbar/style.css +85 -85
  67. package/lib/modules/connection-gateway/components/computer/index.css +12 -12
  68. package/lib/modules/connection-gateway/components/phone/components/callinfo/index.css +36 -36
  69. package/lib/modules/connection-gateway/components/phone/components/calling/index.css +72 -72
  70. package/lib/modules/connection-gateway/components/phone/components/remeber/index.css +10 -10
  71. package/lib/modules/connection-gateway/components/phone/components/useing/index.css +46 -46
  72. package/lib/modules/connection-gateway/components/phone/index.css +49 -49
  73. package/lib/modules/connection-gateway/index.css +6 -6
  74. package/lib/modules/control-bar/components/meeting-details/index.css +133 -133
  75. package/lib/modules/control-bar/components/more-actions/index.css +103 -103
  76. package/lib/modules/control-bar/components/share-audio/index.css +90 -90
  77. package/lib/modules/control-bar/components/share-state-nav/index.css +79 -79
  78. package/lib/modules/control-bar/index.css +340 -340
  79. package/lib/modules/control-bar/index.js +4 -4
  80. package/lib/modules/device-pretest/index.css +123 -123
  81. package/lib/modules/dialog/components/confirm/index.css +24 -24
  82. package/lib/modules/dialog/components/dialog-container/index.css +112 -112
  83. package/lib/modules/dialog/dialogs/confirm/index.css +24 -24
  84. package/lib/modules/dialog/dialogs/connection-gateway/tabs.d.ts +1 -0
  85. package/lib/modules/dialog/dialogs/connection-gateway/tabs.js +27 -14
  86. package/lib/modules/dialog/dialogs/device-setting/index.css +26 -26
  87. package/lib/modules/dialog/dialogs/interpreter/index.css +30 -30
  88. package/lib/modules/dialog/dialogs/mute-all/index.css +20 -20
  89. package/lib/modules/dialog/dialogs/system-preference/index.css +52 -52
  90. package/lib/modules/dialog/dialogs/widget/index.js +4 -4
  91. package/lib/modules/dialog/index.css +56 -56
  92. package/lib/modules/event-toast/index.css +25 -25
  93. package/lib/modules/interpreter/action/add-btn/index.css +4 -4
  94. package/lib/modules/interpreter/action/delete-btn/index.css +14 -14
  95. package/lib/modules/interpreter/action/switch-btn/index.css +3 -3
  96. package/lib/modules/interpreter/dialog-content/index.css +33 -33
  97. package/lib/modules/interpreter/footer/index.css +11 -11
  98. package/lib/modules/interpreter/index.css +4 -4
  99. package/lib/modules/interpreter/interpreter-list/index.css +8 -8
  100. package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/index.css +46 -46
  101. package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-user/index.css +46 -46
  102. package/lib/modules/interpreter/interpreter-list/interpreter-item/index.css +32 -32
  103. package/lib/modules/interpreter/loading-wrapper/index.css +53 -53
  104. package/lib/modules/invite/components/pstn-invite.js +1 -1
  105. package/lib/modules/invite/components/voip-invite.css +26 -26
  106. package/lib/modules/invite/index.css +331 -331
  107. package/lib/modules/layout/components/CommonVideoRenderer.js +4 -4
  108. package/lib/modules/layout/components/index.css +653 -653
  109. package/lib/modules/layout/index.css +59 -59
  110. package/lib/modules/layout/store.base.js +5 -5
  111. package/lib/modules/layout/type.js +5 -5
  112. package/lib/modules/notification/index.css +77 -77
  113. package/lib/modules/notification/interpreter-status/index.css +76 -76
  114. package/lib/modules/participant/components/confirm-input/index.css +4 -4
  115. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.css +83 -83
  116. package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.css +87 -87
  117. package/lib/modules/participant/index.css +102 -102
  118. package/lib/modules/participant/store.base.js +175 -175
  119. package/lib/modules/pc-audio-connect/index.css +12 -12
  120. package/lib/modules/pc-audio-connect/main-scene/index.d.ts +2 -1
  121. package/lib/modules/pc-audio-connect/main-scene/index.js +5 -4
  122. package/lib/modules/pc-audio-connect/main-scene/store.d.ts +3 -0
  123. package/lib/modules/pc-audio-connect/main-scene/store.js +44 -7
  124. package/lib/modules/phone-audio-connect/components/callinfo/index.css +36 -36
  125. package/lib/modules/phone-audio-connect/components/calling/index.css +72 -72
  126. package/lib/modules/phone-audio-connect/components/remeber/index.css +10 -10
  127. package/lib/modules/phone-audio-connect/components/useing/index.css +46 -46
  128. package/lib/modules/phone-audio-connect/index.css +56 -56
  129. package/lib/modules/secondary-window/store.js +7 -7
  130. package/lib/modules/setting/audio-settings/index.css +195 -195
  131. package/lib/modules/setting/audio-whiteList/audio-device-adaptation.js +14 -14
  132. package/lib/modules/setting/audio-whiteList/audio-whiteList-manager.js +6 -6
  133. package/lib/modules/setting/caption_and_transcribing/index.css +88 -88
  134. package/lib/modules/setting/general-settings/index.css +41 -41
  135. package/lib/modules/setting/index.css +112 -112
  136. package/lib/modules/setting/minutes-settings/index.css +65 -65
  137. package/lib/modules/setting/state/index.css +207 -207
  138. package/lib/modules/setting/storage-settings/index.css +91 -91
  139. package/lib/modules/setting/translate-settings/index.css +47 -47
  140. package/lib/modules/setting/video-settings/index.css +357 -357
  141. package/lib/modules/share-screen/components/control-bar/index.css +75 -75
  142. package/lib/modules/share-screen/components/selection/index.css +73 -73
  143. package/lib/modules/share-screen/components/share-state-bar/index.css +76 -76
  144. package/lib/modules/share-screen/index.js +10 -10
  145. package/lib/modules/share-screen/store.base.js +2 -2
  146. package/lib/modules/state-bar/assets/fcr_grid_big.svg +3 -3
  147. package/lib/modules/state-bar/assets/fcr_listontop_big.svg +3 -3
  148. package/lib/modules/state-bar/index.css +706 -706
  149. package/lib/modules/state-bar/main-scene/store.base.js +2 -2
  150. package/lib/modules/state-bar/meeting-detail.css +137 -137
  151. package/lib/modules/state-bar/meeting-network-state.css +150 -150
  152. package/lib/modules/state-bar/waiting-scene/store.base.js +2 -2
  153. package/lib/modules/subtitles-history/components/settings/index.css +5 -5
  154. package/lib/modules/subtitles-history/index.css +129 -129
  155. package/lib/modules/video-window/components/members/index.css +51 -51
  156. package/lib/modules/video-window/components/speaking/index.css +86 -86
  157. package/lib/modules/video-window/components/topControl/index.css +35 -35
  158. package/lib/modules/video-window/index.css +21 -21
  159. package/lib/modules/video-window/popover-watcher.js +3 -3
  160. package/lib/modules/video-window/store.js +10 -10
  161. package/lib/modules/waiting-room-layout/index.css +96 -96
  162. package/lib/modules/whiteboard/components/control-bar/index.css +52 -52
  163. package/lib/modules/whiteboard/components/loading/index.css +76 -76
  164. package/lib/modules/whiteboard/components/multi-window/index.css +63 -63
  165. package/lib/modules/whiteboard/components/pagination/index.css +228 -228
  166. package/lib/modules/whiteboard/components/progress/style.css +51 -51
  167. package/lib/modules/whiteboard/components/switch-theme/index.css +99 -99
  168. package/lib/modules/whiteboard/components/toolbar/style.css +591 -591
  169. package/lib/modules/whiteboard/style.css +140 -140
  170. package/lib/modules/widget/index.css +9 -9
  171. package/lib/modules/widget/index.d.ts +1 -0
  172. package/lib/modules/widget/index.js +16 -1
  173. package/lib/modules/widget/store.base.d.ts +1 -0
  174. package/lib/modules/widget/store.base.js +12 -0
  175. package/lib/modules/widget/store.electron.js +5 -0
  176. package/lib/modules/widget/web-widget.d.ts +6 -1
  177. package/lib/modules/widget/web-widget.js +66 -22
  178. package/lib/object-manager.js +8 -8
  179. package/lib/plugins/module-dev-plugin.js +11 -11
  180. package/lib/providers/ability-provider.js +17 -17
  181. package/lib/providers/app-list-provider.d.ts +1 -1
  182. package/lib/providers/app-list-provider.js +9 -7
  183. package/lib/providers/board-share/bar-control/base.d.ts +1 -1
  184. package/lib/providers/board-share/bar-control/browser.d.ts +1 -1
  185. package/lib/providers/board-share/bar-control/electron.d.ts +1 -1
  186. package/lib/providers/board-share/struct.js +6 -6
  187. package/lib/providers/device-stream-provider.d.ts +1 -1
  188. package/lib/providers/dialog/provider.base.js +2 -2
  189. package/lib/providers/dialog/type.js +3 -3
  190. package/lib/providers/multi-display-provider.js +4 -4
  191. package/lib/providers/privilege-provider.js +7 -7
  192. package/lib/providers/screen-share/provider.base.js +23 -23
  193. package/lib/providers/screen-share/stream-state-sync.js +18 -18
  194. package/lib/providers/screen-share/struct.js +24 -24
  195. package/lib/providers/widget-provider.d.ts +13 -2
  196. package/lib/providers/widget-provider.js +60 -9
  197. package/lib/providers/window/main-window.js +2 -2
  198. package/lib/providers/window/provider.js +5 -5
  199. package/lib/providers/window/renderer-window.js +2 -2
  200. package/lib/scenes/main-scene.js +1 -0
  201. package/lib/schema.js +26 -26
  202. package/lib/shared-data/app-list-data.d.ts +0 -3
  203. package/lib/shared-data/app-list-data.js +3 -30
  204. package/lib/shared-data/meeting-time.js +8 -8
  205. package/lib/shared-data/setting.js +3 -3
  206. package/lib/shared-data/video-window.d.ts +1 -1
  207. package/lib/shared-data/video-window.js +1 -1
  208. package/lib/shared-data/widget-data.d.ts +0 -1
  209. package/lib/type.d.ts +1 -0
  210. package/lib/type.js +23 -21
  211. package/lib/ui-scene-switch.js +2 -2
  212. package/lib/utilities/constant.js +6 -6
  213. package/lib/utilities/renderer.js +8 -8
  214. package/lib/utilities/shared-storage.js +2 -2
  215. package/lib/utilities/tools.js +14 -14
  216. package/package.json +83 -79
  217. package/public/assets/fcr_chat_reddot.svg +5 -5
  218. package/public/assets/fcr_grid_big.svg +3 -3
  219. package/public/assets/fcr_leave2.svg +58 -58
  220. package/public/assets/fcr_listontop_big.svg +3 -3
  221. package/public/assets/step-gradient.svg +10 -10
  222. package/public/fragment.html +10 -10
  223. package/public/index.html +107 -183
  224. package/public/index.vite.html +109 -0
  225. package/public/js/init.js +75 -0
  226. package/public/{meeting-manager.js → js/meeting-manager.js} +405 -405
@@ -1,653 +1,653 @@
1
- .fcr-layout {
2
- display: flex;
3
- flex-flow: row nowrap;
4
- align-items: stretch;
5
- gap: 3px;
6
- background-color: var(--fcr_web_ui_scene_fill3);
7
- height: 100%;
8
- overflow: hidden;
9
- min-width: 825px;
10
- min-height: 460px;
11
- }
12
-
13
- .fcr-layout-aside {
14
- display: none;
15
- position: relative;
16
- }
17
-
18
- .fcr-layout-aside-active {
19
- display: flex;
20
- z-index: 12;
21
- }
22
-
23
- .fcr-layout-aside-handler {
24
- position: absolute;
25
- right: calc(100% + 3px);
26
- width: 8px;
27
- height: 100%;
28
- color: var(--fcr_ui_scene_icontext2);
29
- display: flex;
30
- align-items: center;
31
- justify-content: center;
32
- cursor: ew-resize;
33
- /* background-color: var(--fcr_ui_scene_video); */
34
- }
35
-
36
- .fcr-layout-aside-body {
37
- flex: 1;
38
- display: flex;
39
- flex-wrap: wrap;
40
- gap: 3px;
41
- align-items: stretch;
42
- position: relative;
43
- overflow: hidden;
44
- }
45
-
46
- .fcr-layout-aside-body-column {
47
- flex: 1;
48
- background-color: var(--fcr_mobile_ui_scene_color_popup_block1);
49
- display: flex;
50
- flex-flow: column nowrap;
51
- align-items: stretch;
52
- position: relative;
53
- overflow: hidden;
54
- }
55
-
56
- .fcr-layout-side-body-translate {
57
- flex: 0;
58
- }
59
-
60
- .fcr-layout-aside-body-up {
61
- flex: 1;
62
- }
63
-
64
- .fcr-layout-aside-body-divider {
65
- position: absolute;
66
- width: 100%;
67
- cursor: ns-resize;
68
- }
69
-
70
- .fcr-layout-aside-body-up,
71
- .fcr-layout-aside-body-down {
72
- display: flex;
73
- flex-flow: column nowrap;
74
- align-items: flex-start;
75
- color: var(--fcr_ui_scene_icontext1);
76
- font-weight: var(--fcr_font_weight_x);
77
- }
78
-
79
- .fcr-layout-aside-body-divider::after {
80
- content: '';
81
- position: absolute;
82
- top: 7.5px;
83
- width: 100%;
84
- height: 1px;
85
- background-color: var(--fcr_ui_scene_line1);
86
- }
87
-
88
- .fcr-layout-speaking {
89
- height: 0 !important;
90
- z-index: 1;
91
- display: none;
92
- }
93
-
94
- .fcr-layout-speaking-active {
95
- display: flex;
96
- align-items: flex-start;
97
- }
98
-
99
- .fcr-layout-speaking-content {
100
- width: 100%;
101
- height: 18px;
102
- font-size: 12px;
103
- line-height: 1;
104
- color: var(--fcr_ui_scene_icontext1);
105
- background-color: var(--fcr_ui_scene_view_toast);
106
- display: flex;
107
- align-items: center;
108
- justify-content: center;
109
- }
110
-
111
- .fcr-layout-content {
112
- flex: 1;
113
- display: flex;
114
- flex-flow: column nowrap;
115
- position: relative;
116
- }
117
-
118
- .fcr-layout-content-carousel {
119
- display: flex;
120
- flex-flow: column-reverse nowrap;
121
- background-color: var(--fcr_web_ui_scene_fill2);
122
- transition:
123
- height 0.2s,
124
- opacity 0.2s;
125
- position: relative;
126
- }
127
-
128
- .fcr-layout-content-carousel-wrapper {
129
- display: flex;
130
- flex-flow: column nowrap;
131
- }
132
-
133
- .fcr-layout-content-carousel-collapsed {
134
- height: 0 !important;
135
- opacity: 0;
136
- pointer-events: none;
137
- }
138
-
139
- .fcr-layout-content-expand {
140
- height: 0 !important;
141
- z-index: 11;
142
- display: flex;
143
- align-items: flex-end;
144
- justify-content: center;
145
- opacity: 0;
146
- transition: opacity 0.2s;
147
- pointer-events: none;
148
- color: var(--fcr_web_ui_scene_mainicon1);
149
- }
150
-
151
- .fcr-layout-content-collapsed {
152
- opacity: 1;
153
- pointer-events: auto;
154
- }
155
-
156
- /* .fcr-layout-gallery {
157
- min-width: 825px;
158
- } */
159
-
160
- .fcr-layout-gallery .fcr-layout-content-expand {
161
- display: none;
162
- }
163
-
164
- .fcr-layout-content-expand button {
165
- margin-bottom: 2px;
166
- padding: 4px 14px 0;
167
- border: 1px solid var(--fcr_ui_scene_line1);
168
- border-top-left-radius: 8px;
169
- border-top-right-radius: 8px;
170
- border-bottom-width: 0;
171
- background-color: var(--fcr_web_ui_scene_fill2);
172
- font-size: 0;
173
- }
174
-
175
- .fcr-layout-content-expand button:active {
176
- outline: none;
177
- }
178
-
179
- .fcr-layout-content-expand button:focus {
180
- outline: none;
181
- }
182
-
183
- .fcr-layout-content-expand svg {
184
- transform: rotate(180deg);
185
- height: 20px;
186
- }
187
-
188
- .fcr-layout-content-carousel-dragging {
189
- transition-duration: 0ms;
190
- }
191
-
192
- .fcr-layout-content-carousel-list {
193
- display: flex;
194
- flex-flow: row nowrap;
195
- justify-content: center;
196
- }
197
-
198
- .fcr-layout-content-carousel-items {
199
- display: flex;
200
- flex-flow: row nowrap;
201
- justify-content: center;
202
- }
203
-
204
- .fcr-layout-content-carousel-items .fcr-layout-content-carousel-item {
205
- border-radius: var(--fcr_cornerradius_s);
206
- overflow: hidden;
207
- }
208
-
209
- .fcr-layout-content-carousel-items .fcr-layout-content-carousel-item .fcr-member-window-excitation {
210
- border-radius: var(--fcr_cornerradius_s);
211
- }
212
-
213
- .fcr-layout-content-carousel-arrow {
214
- height: 100%;
215
- outline: none;
216
- border-radius: var(--fcr_cornerradius_xxs);
217
- color: var(--fcr_web_ui_scene_mainicon1);
218
- background-color: var(--fcr_ui_scene_view_toast);
219
- display: inline-flex;
220
- align-items: center;
221
- justify-content: center;
222
- font-size: 0;
223
- }
224
-
225
- .fcr-layout-content-carousel-arrow:hover {
226
- color: var(--fcr_web_ui_scene_mainicon2);
227
- background-color: var(--fcr_web_ui_scene_hover);
228
- }
229
-
230
- .fcr-layout-content-carousel-arrow > svg {
231
- width: 20px;
232
- height: 48px;
233
- pointer-events: none;
234
- }
235
-
236
- .fcr-layout-content-carousel-arrow:disabled {
237
- visibility: hidden;
238
- }
239
-
240
- .fcr-layout-content-carousel-collapse {
241
- color: var(--fcr_ui_scene_icontext2);
242
- display: flex;
243
- align-items: center;
244
- justify-content: center;
245
- font-size: 0;
246
- }
247
-
248
- .fcr-layout-content-carousel-collapse:active {
249
- outline: none;
250
- }
251
-
252
- .fcr-layout-content-carousel-collapse:hover {
253
- color: var(--fcr_ui_scene_icontext2);
254
- background-color: var(--fcr_web_ui_scene_hover2);
255
- }
256
-
257
- .fcr-layout-content-carousel-collapse > svg {
258
- width: 48px;
259
- pointer-events: none;
260
- }
261
-
262
- .fcr-layout-content-carousel-handler {
263
- display: flex;
264
- font-size: 0;
265
- cursor: ns-resize;
266
- transition: background-color 0.2s;
267
- }
268
-
269
- .fcr-layout-content-carousel-handler:hover,
270
- .fcr-layout-content-carousel-handler-dragging {
271
- background-color: var(--fcr_ui_scene_ramp_brand6);
272
- }
273
-
274
- .fcr-layout-content-gallery {
275
- flex: 1;
276
- background-color: var(--fcr_web_ui_scene_fill1);
277
- display: flex;
278
- align-items: center;
279
- justify-content: center;
280
- overflow: hidden;
281
- position: relative;
282
- }
283
-
284
- .fcr-layout-content-gallery-wrapper {
285
- display: flex;
286
- /* flex-flow: column nowrap; */
287
- justify-content: center;
288
- font-size: 0;
289
- top: 0;
290
- flex-wrap: wrap;
291
- }
292
-
293
- .fcr-layout-content-gallery-return-bar {
294
- width: 100%;
295
- height: 28px;
296
- background: var(--fcr_mobile_ui_scene_color_popup_block3);
297
- font-size: 12px;
298
- margin-top: 35px;
299
- display: flex;
300
- justify-content: center;
301
- align-items: center;
302
- }
303
-
304
- .fcr-layout-content-gallery-return-bar .fcr-button-XXS {
305
- height: 20px;
306
- margin-left: 24px;
307
- }
308
-
309
- .fcr-layout-content-gallery-row {
310
- display: flex;
311
- flex-flow: row nowrap;
312
- justify-content: center;
313
- font-size: 1rem;
314
- }
315
-
316
- .fcr-layout-content-gallery-wrapper .fcr-layout-content-gallery-row-item {
317
- border-radius: var(--fcr_cornerradius_s);
318
- overflow: hidden;
319
- }
320
-
321
- .fcr-layout-content-gallery-wrapper .fcr-layout-content-gallery-row-noborder {
322
- border-radius: 0px;
323
- }
324
-
325
- .fcr-layout-content-gallery-wrapper
326
- .fcr-layout-content-gallery-row-item
327
- .fcr-member-window-excitation {
328
- border-radius: var(--fcr_cornerradius_s);
329
- }
330
-
331
- .fcr-layout-content-gallery-arrows {
332
- position: absolute;
333
- inset: 0;
334
- pointer-events: none;
335
- }
336
-
337
- .fcr-layout-content-gallery-arrow {
338
- pointer-events: auto;
339
- position: absolute;
340
- /* top: calc(100% - 160px); */
341
- bottom: 155px;
342
- background-color: var(--fcr_web_ui_scene_fill4_popup);
343
- border-radius: 8px;
344
- box-shadow: var(--fcr_web_light_dropup);
345
- display: inline-flex;
346
- flex-flow: column nowrap;
347
- align-items: center;
348
- font-size: 12px;
349
- z-index: 10;
350
- }
351
-
352
- .fcr-layout-content-gallery-arrow:has(button:disabled) {
353
- visibility: hidden;
354
- }
355
-
356
- .fcr-layout-content-gallery-arrow button {
357
- color: var(--fcr_web_ui_scene_mainicon1);
358
- background-color: var(--fcr_mobile_ui_scene_color_popup_fill2);
359
- border-radius: 8px;
360
- display: inline-flex;
361
- align-items: center;
362
- justify-content: center;
363
- font-size: 0;
364
- }
365
-
366
- .fcr-layout-content-gallery-arrow button:hover {
367
- color: var(--fcr_web_ui_scene_mainicon2);
368
- background-color: var(--fcr_web_ui_scene_hover);
369
- }
370
-
371
- .fcr-layout-content-gallery-arrow button svg {
372
- width: 30px;
373
- height: 30px;
374
- }
375
-
376
- .fcr-layout-content-gallery-arrow-content {
377
- padding: 3px 0 7px;
378
- line-height: 1.25;
379
- user-select: none;
380
- }
381
-
382
- .fcr-user-window {
383
- color: var(--fcr_ui_scene_icontext1);
384
- border-radius: var(--fcr_cornerradius_s);
385
- background-color: var(--fcr_ui_scene_video);
386
- font-size: 12px;
387
- line-height: 1;
388
- display: inline-flex;
389
- align-items: center;
390
- justify-content: center;
391
- user-select: none;
392
- position: relative;
393
- overflow: hidden;
394
- }
395
-
396
- .fcr-user-window-background {
397
- position: absolute;
398
- inset: 0;
399
- color: var(--fcr_ui_scene_icontext3);
400
- display: flex;
401
- align-items: center;
402
- justify-content: center;
403
- pointer-events: none;
404
- visibility: hidden;
405
- }
406
-
407
- .fcr-user-window-is-broken {
408
- visibility: visible;
409
- }
410
-
411
- .fcr-user-window-background svg {
412
- opacity: 0.3;
413
- }
414
-
415
- .fcr-user-window-avatar {
416
- padding: 0 20px;
417
- overflow: hidden;
418
- text-overflow: ellipsis;
419
- white-space: nowrap;
420
- position: relative;
421
- }
422
-
423
- .fcr-user-window-avatar svg {
424
- width: 52%;
425
- }
426
-
427
- .fcr-user-window-body {
428
- position: absolute;
429
- inset: 0;
430
- font-size: 0;
431
- }
432
-
433
- .fcr-user-window-actions {
434
- position: absolute;
435
- inset: 0;
436
- pointer-events: none;
437
- transition: opacity 0.2s;
438
- overflow: hidden;
439
- }
440
-
441
- .fcr-user-window-actions-hide {
442
- opacity: 0;
443
- }
444
-
445
- .fcr-user-window-actions button {
446
- pointer-events: auto;
447
- }
448
-
449
- .fcr-user-window-actions-middle {
450
- inset: auto auto 26px 4px;
451
- font-size: 12px;
452
- position: absolute;
453
- }
454
-
455
- .fcr-user-window-gallery .fcr-user-window-actions-bottom {
456
- height: 24px;
457
- border-radius: var(--fcr_cornerradius_s);
458
- font-size: 12px;
459
- }
460
-
461
- .fcr-user-window-gallery .fcr-user-window-actions-bottom .fcr-user-window-actions-microphone {
462
- border-radius: var(--fcr_cornerradius_s);
463
- }
464
-
465
- .fcr-user-window-actions-tag {
466
- height: 18px;
467
- border-radius: var(--fcr_cornerradius_xxs);
468
- display: inline-flex;
469
- align-items: center;
470
- white-space: nowrap;
471
- }
472
-
473
- .fcr-user-window-gallery .fcr-user-window-actions-tag {
474
- height: 24px;
475
- border-radius: var(--fcr_cornerradius_s);
476
- }
477
-
478
- .fcr-user-window-actions-tag-host {
479
- color: var(--fcr_ui_scene_white10);
480
- background: linear-gradient(90deg, #4262ff, #7c79ff);
481
- padding: 0 8px;
482
- }
483
-
484
- .fcr-user-window-actions-tag-cohost {
485
- background: var(--fcr_ui_scene_ramp_lightgreen6);
486
- }
487
-
488
- .fcr-user-window-actions-tag-host:has(svg) {
489
- padding-left: 4px;
490
- }
491
-
492
- .fcr-user-window-actions-volume {
493
- color: var(--fcr_ui_scene_icontext1);
494
- --fcr-volume-icon-color: var(--fcr_ui_scene_icontext1);
495
- }
496
-
497
- .fcr-user-window-actions-tag-host .fcr-user-window-actions-volume {
498
- color: var(--fcr_ui_scene_white10);
499
- --fcr-volume-icon-color: var(--fcr_ui_scene_white10);
500
- }
501
-
502
- .fcr-user-window-gallery .fcr-user-window-actions-tag-host {
503
- padding: 0 13px;
504
- }
505
-
506
- .fcr-user-window-gallery .fcr-user-window-actions-tag-host:has(svg) {
507
- padding-left: 6px;
508
- }
509
-
510
- .fcr-user-window-actions-microphone {
511
- padding: 1px;
512
- align-self: stretch;
513
- display: inline-flex;
514
- align-items: center;
515
- color: var(--fcr_ui_scene_icontext1);
516
- border-radius: var(--fcr_cornerradius_xxs);
517
- background-color: var(--fcr_ui_scene_view_toast);
518
- cursor: default;
519
- }
520
-
521
- .fcr-user-window-actions-tag-host .fcr-user-window-actions-microphone {
522
- color: var(--fcr_ui_scene_white10);
523
- }
524
-
525
- .fcr-user-window-gallery .fcr-user-window-actions-microphone {
526
- padding: 0;
527
- background-color: transparent;
528
- }
529
-
530
- .fcr-user-window-actions-tag ~ .fcr-user-window-actions-microphone {
531
- border-top-left-radius: 0;
532
- border-bottom-left-radius: 0;
533
- }
534
-
535
- .fcr-user-window-actions-tag:has(~ .fcr-user-window-actions-microphone) {
536
- border-top-right-radius: 0;
537
- border-bottom-right-radius: 0;
538
- }
539
-
540
- .fcr-user-window-actions-name {
541
- padding: 0 8px;
542
- font-weight: var(--fcr_font_weight_s);
543
- line-height: 1.5;
544
- white-space: nowrap;
545
- overflow: hidden;
546
- text-overflow: ellipsis;
547
- }
548
-
549
- .fcr-user-window-gallery .fcr-user-window-actions-name {
550
- padding: 0 10px;
551
- }
552
-
553
- .fcr-user-window:hover .fcr-user-window-actions-top {
554
- opacity: 1;
555
- }
556
-
557
- .fcr-user-window-actions-more {
558
- padding: 3px;
559
- border-radius: var(--fcr_cornerradius_xxs);
560
- background-color: var(--fcr_web_ui_scene_hover3);
561
- }
562
-
563
- .fcr-user-window-actions-mute {
564
- padding: 0 6px;
565
- border-radius: var(--fcr_cornerradius_xxs);
566
- background-color: var(--fcr_web_ui_scene_hover3);
567
- }
568
-
569
- .fcr-user-window-actions-mute:disabled {
570
- display: none;
571
- }
572
-
573
- .fcr-layout-content-bar {
574
- /* position: absolute; */
575
- height: 0px;
576
- width: 100%;
577
- /* overflow: hidden; */
578
- transition: height 0s;
579
- z-index: 10;
580
- }
581
-
582
- .fcr-layout-speaker .fcr-layout-content-bar {
583
- position: relative;
584
- }
585
-
586
- .fcr-layout-content-bar-body {
587
- height: 0px;
588
- /* overflow: hidden; */
589
- transition: height 0.2s;
590
- position: relative;
591
- display: flex;
592
- flex-direction: column;
593
- align-items: center;
594
- }
595
-
596
- .fcr-layout-content-top {
597
- top: 0;
598
- display: flex;
599
- flex-flow: column-reverse nowrap;
600
- justify-content: flex-end;
601
- }
602
-
603
- .fcr-layout-content-top .fcr-layout-content-bar-body {
604
- display: flex;
605
- flex-flow: column-reverse nowrap;
606
- }
607
-
608
- .fcr-layout-content-bottom {
609
- bottom: 0;
610
- display: flex;
611
- flex-flow: column-reverse nowrap;
612
- }
613
-
614
- .fcr-layout-hovering .fcr-layout-content-top,
615
- .fcr-layout-hovering .fcr-layout-content-top .fcr-layout-content-bar-body {
616
- height: 34px;
617
- }
618
-
619
- .fcr-layout-hovering .fcr-layout-content-bottom,
620
- .fcr-layout-hovering .fcr-layout-content-bottom .fcr-layout-content-bar-body {
621
- height: 55px;
622
- width: 100%;
623
- z-index: 100;
624
- }
625
-
626
- .fcr-layout-hovering .fcr-user-window-actions-top {
627
- display: flex;
628
- }
629
-
630
- .fcr-layout-content-bar--hidden .fcr-layout-content-bar-body {
631
- height: 0;
632
- }
633
-
634
- .fcr-layout-content-bar--hidden.fcr-layout-content-bottom,
635
- .fcr-layout-content-bar--hidden.fcr-layout-content-bottom .fcr-layout-content-bar-body {
636
- height: 0px;
637
- overflow: inherit;
638
- position: relative;
639
- }
640
-
641
- .fcr-layout-adapter-div {
642
- display: flex;
643
- flex-flow: column nowrap;
644
- justify-content: flex-end;
645
- }
646
-
647
- .participant-dialog-header-count {
648
- font-weight: 400;
649
- }
650
-
651
- .fcr-layout-content-gallery-row-onlyone {
652
- border-radius: 0px !important;
653
- }
1
+ .fcr-layout {
2
+ display: flex;
3
+ flex-flow: row nowrap;
4
+ align-items: stretch;
5
+ gap: 3px;
6
+ background-color: var(--fcr_web_ui_scene_fill3);
7
+ height: 100%;
8
+ overflow: hidden;
9
+ min-width: 825px;
10
+ min-height: 460px;
11
+ }
12
+
13
+ .fcr-layout-aside {
14
+ display: none;
15
+ position: relative;
16
+ }
17
+
18
+ .fcr-layout-aside-active {
19
+ display: flex;
20
+ z-index: 12;
21
+ }
22
+
23
+ .fcr-layout-aside-handler {
24
+ position: absolute;
25
+ right: calc(100% + 3px);
26
+ width: 8px;
27
+ height: 100%;
28
+ color: var(--fcr_ui_scene_icontext2);
29
+ display: flex;
30
+ align-items: center;
31
+ justify-content: center;
32
+ cursor: ew-resize;
33
+ /* background-color: var(--fcr_ui_scene_video); */
34
+ }
35
+
36
+ .fcr-layout-aside-body {
37
+ flex: 1;
38
+ display: flex;
39
+ flex-wrap: wrap;
40
+ gap: 3px;
41
+ align-items: stretch;
42
+ position: relative;
43
+ overflow: hidden;
44
+ }
45
+
46
+ .fcr-layout-aside-body-column {
47
+ flex: 1;
48
+ background-color: var(--fcr_mobile_ui_scene_color_popup_block1);
49
+ display: flex;
50
+ flex-flow: column nowrap;
51
+ align-items: stretch;
52
+ position: relative;
53
+ overflow: hidden;
54
+ }
55
+
56
+ .fcr-layout-side-body-translate {
57
+ flex: 0;
58
+ }
59
+
60
+ .fcr-layout-aside-body-up {
61
+ flex: 1;
62
+ }
63
+
64
+ .fcr-layout-aside-body-divider {
65
+ position: absolute;
66
+ width: 100%;
67
+ cursor: ns-resize;
68
+ }
69
+
70
+ .fcr-layout-aside-body-up,
71
+ .fcr-layout-aside-body-down {
72
+ display: flex;
73
+ flex-flow: column nowrap;
74
+ align-items: flex-start;
75
+ color: var(--fcr_ui_scene_icontext1);
76
+ font-weight: var(--fcr_font_weight_x);
77
+ }
78
+
79
+ .fcr-layout-aside-body-divider::after {
80
+ content: '';
81
+ position: absolute;
82
+ top: 7.5px;
83
+ width: 100%;
84
+ height: 1px;
85
+ background-color: var(--fcr_ui_scene_line1);
86
+ }
87
+
88
+ .fcr-layout-speaking {
89
+ height: 0 !important;
90
+ z-index: 1;
91
+ display: none;
92
+ }
93
+
94
+ .fcr-layout-speaking-active {
95
+ display: flex;
96
+ align-items: flex-start;
97
+ }
98
+
99
+ .fcr-layout-speaking-content {
100
+ width: 100%;
101
+ height: 18px;
102
+ font-size: 12px;
103
+ line-height: 1;
104
+ color: var(--fcr_ui_scene_icontext1);
105
+ background-color: var(--fcr_ui_scene_view_toast);
106
+ display: flex;
107
+ align-items: center;
108
+ justify-content: center;
109
+ }
110
+
111
+ .fcr-layout-content {
112
+ flex: 1;
113
+ display: flex;
114
+ flex-flow: column nowrap;
115
+ position: relative;
116
+ }
117
+
118
+ .fcr-layout-content-carousel {
119
+ display: flex;
120
+ flex-flow: column-reverse nowrap;
121
+ background-color: var(--fcr_web_ui_scene_fill2);
122
+ transition:
123
+ height 0.2s,
124
+ opacity 0.2s;
125
+ position: relative;
126
+ }
127
+
128
+ .fcr-layout-content-carousel-wrapper {
129
+ display: flex;
130
+ flex-flow: column nowrap;
131
+ }
132
+
133
+ .fcr-layout-content-carousel-collapsed {
134
+ height: 0 !important;
135
+ opacity: 0;
136
+ pointer-events: none;
137
+ }
138
+
139
+ .fcr-layout-content-expand {
140
+ height: 0 !important;
141
+ z-index: 11;
142
+ display: flex;
143
+ align-items: flex-end;
144
+ justify-content: center;
145
+ opacity: 0;
146
+ transition: opacity 0.2s;
147
+ pointer-events: none;
148
+ color: var(--fcr_web_ui_scene_mainicon1);
149
+ }
150
+
151
+ .fcr-layout-content-collapsed {
152
+ opacity: 1;
153
+ pointer-events: auto;
154
+ }
155
+
156
+ /* .fcr-layout-gallery {
157
+ min-width: 825px;
158
+ } */
159
+
160
+ .fcr-layout-gallery .fcr-layout-content-expand {
161
+ display: none;
162
+ }
163
+
164
+ .fcr-layout-content-expand button {
165
+ margin-bottom: 2px;
166
+ padding: 4px 14px 0;
167
+ border: 1px solid var(--fcr_ui_scene_line1);
168
+ border-top-left-radius: 8px;
169
+ border-top-right-radius: 8px;
170
+ border-bottom-width: 0;
171
+ background-color: var(--fcr_web_ui_scene_fill2);
172
+ font-size: 0;
173
+ }
174
+
175
+ .fcr-layout-content-expand button:active {
176
+ outline: none;
177
+ }
178
+
179
+ .fcr-layout-content-expand button:focus {
180
+ outline: none;
181
+ }
182
+
183
+ .fcr-layout-content-expand svg {
184
+ transform: rotate(180deg);
185
+ height: 20px;
186
+ }
187
+
188
+ .fcr-layout-content-carousel-dragging {
189
+ transition-duration: 0ms;
190
+ }
191
+
192
+ .fcr-layout-content-carousel-list {
193
+ display: flex;
194
+ flex-flow: row nowrap;
195
+ justify-content: center;
196
+ }
197
+
198
+ .fcr-layout-content-carousel-items {
199
+ display: flex;
200
+ flex-flow: row nowrap;
201
+ justify-content: center;
202
+ }
203
+
204
+ .fcr-layout-content-carousel-items .fcr-layout-content-carousel-item {
205
+ border-radius: var(--fcr_cornerradius_s);
206
+ overflow: hidden;
207
+ }
208
+
209
+ .fcr-layout-content-carousel-items .fcr-layout-content-carousel-item .fcr-member-window-excitation {
210
+ border-radius: var(--fcr_cornerradius_s);
211
+ }
212
+
213
+ .fcr-layout-content-carousel-arrow {
214
+ height: 100%;
215
+ outline: none;
216
+ border-radius: var(--fcr_cornerradius_xxs);
217
+ color: var(--fcr_web_ui_scene_mainicon1);
218
+ background-color: var(--fcr_ui_scene_view_toast);
219
+ display: inline-flex;
220
+ align-items: center;
221
+ justify-content: center;
222
+ font-size: 0;
223
+ }
224
+
225
+ .fcr-layout-content-carousel-arrow:hover {
226
+ color: var(--fcr_web_ui_scene_mainicon2);
227
+ background-color: var(--fcr_web_ui_scene_hover);
228
+ }
229
+
230
+ .fcr-layout-content-carousel-arrow > svg {
231
+ width: 20px;
232
+ height: 48px;
233
+ pointer-events: none;
234
+ }
235
+
236
+ .fcr-layout-content-carousel-arrow:disabled {
237
+ visibility: hidden;
238
+ }
239
+
240
+ .fcr-layout-content-carousel-collapse {
241
+ color: var(--fcr_ui_scene_icontext2);
242
+ display: flex;
243
+ align-items: center;
244
+ justify-content: center;
245
+ font-size: 0;
246
+ }
247
+
248
+ .fcr-layout-content-carousel-collapse:active {
249
+ outline: none;
250
+ }
251
+
252
+ .fcr-layout-content-carousel-collapse:hover {
253
+ color: var(--fcr_ui_scene_icontext2);
254
+ background-color: var(--fcr_web_ui_scene_hover2);
255
+ }
256
+
257
+ .fcr-layout-content-carousel-collapse > svg {
258
+ width: 48px;
259
+ pointer-events: none;
260
+ }
261
+
262
+ .fcr-layout-content-carousel-handler {
263
+ display: flex;
264
+ font-size: 0;
265
+ cursor: ns-resize;
266
+ transition: background-color 0.2s;
267
+ }
268
+
269
+ .fcr-layout-content-carousel-handler:hover,
270
+ .fcr-layout-content-carousel-handler-dragging {
271
+ background-color: var(--fcr_ui_scene_ramp_brand6);
272
+ }
273
+
274
+ .fcr-layout-content-gallery {
275
+ flex: 1;
276
+ background-color: var(--fcr_web_ui_scene_fill1);
277
+ display: flex;
278
+ align-items: center;
279
+ justify-content: center;
280
+ overflow: hidden;
281
+ position: relative;
282
+ }
283
+
284
+ .fcr-layout-content-gallery-wrapper {
285
+ display: flex;
286
+ /* flex-flow: column nowrap; */
287
+ justify-content: center;
288
+ font-size: 0;
289
+ top: 0;
290
+ flex-wrap: wrap;
291
+ }
292
+
293
+ .fcr-layout-content-gallery-return-bar {
294
+ width: 100%;
295
+ height: 28px;
296
+ background: var(--fcr_mobile_ui_scene_color_popup_block3);
297
+ font-size: 12px;
298
+ margin-top: 35px;
299
+ display: flex;
300
+ justify-content: center;
301
+ align-items: center;
302
+ }
303
+
304
+ .fcr-layout-content-gallery-return-bar .fcr-button-XXS {
305
+ height: 20px;
306
+ margin-left: 24px;
307
+ }
308
+
309
+ .fcr-layout-content-gallery-row {
310
+ display: flex;
311
+ flex-flow: row nowrap;
312
+ justify-content: center;
313
+ font-size: 1rem;
314
+ }
315
+
316
+ .fcr-layout-content-gallery-wrapper .fcr-layout-content-gallery-row-item {
317
+ border-radius: var(--fcr_cornerradius_s);
318
+ overflow: hidden;
319
+ }
320
+
321
+ .fcr-layout-content-gallery-wrapper .fcr-layout-content-gallery-row-noborder {
322
+ border-radius: 0px;
323
+ }
324
+
325
+ .fcr-layout-content-gallery-wrapper
326
+ .fcr-layout-content-gallery-row-item
327
+ .fcr-member-window-excitation {
328
+ border-radius: var(--fcr_cornerradius_s);
329
+ }
330
+
331
+ .fcr-layout-content-gallery-arrows {
332
+ position: absolute;
333
+ inset: 0;
334
+ pointer-events: none;
335
+ }
336
+
337
+ .fcr-layout-content-gallery-arrow {
338
+ pointer-events: auto;
339
+ position: absolute;
340
+ /* top: calc(100% - 160px); */
341
+ bottom: 155px;
342
+ background-color: var(--fcr_web_ui_scene_fill4_popup);
343
+ border-radius: 8px;
344
+ box-shadow: var(--fcr_web_light_dropup);
345
+ display: inline-flex;
346
+ flex-flow: column nowrap;
347
+ align-items: center;
348
+ font-size: 12px;
349
+ z-index: 10;
350
+ }
351
+
352
+ .fcr-layout-content-gallery-arrow:has(button:disabled) {
353
+ visibility: hidden;
354
+ }
355
+
356
+ .fcr-layout-content-gallery-arrow button {
357
+ color: var(--fcr_web_ui_scene_mainicon1);
358
+ background-color: var(--fcr_mobile_ui_scene_color_popup_fill2);
359
+ border-radius: 8px;
360
+ display: inline-flex;
361
+ align-items: center;
362
+ justify-content: center;
363
+ font-size: 0;
364
+ }
365
+
366
+ .fcr-layout-content-gallery-arrow button:hover {
367
+ color: var(--fcr_web_ui_scene_mainicon2);
368
+ background-color: var(--fcr_web_ui_scene_hover);
369
+ }
370
+
371
+ .fcr-layout-content-gallery-arrow button svg {
372
+ width: 30px;
373
+ height: 30px;
374
+ }
375
+
376
+ .fcr-layout-content-gallery-arrow-content {
377
+ padding: 3px 0 7px;
378
+ line-height: 1.25;
379
+ user-select: none;
380
+ }
381
+
382
+ .fcr-user-window {
383
+ color: var(--fcr_ui_scene_icontext1);
384
+ border-radius: var(--fcr_cornerradius_s);
385
+ background-color: var(--fcr_ui_scene_video);
386
+ font-size: 12px;
387
+ line-height: 1;
388
+ display: inline-flex;
389
+ align-items: center;
390
+ justify-content: center;
391
+ user-select: none;
392
+ position: relative;
393
+ overflow: hidden;
394
+ }
395
+
396
+ .fcr-user-window-background {
397
+ position: absolute;
398
+ inset: 0;
399
+ color: var(--fcr_ui_scene_icontext3);
400
+ display: flex;
401
+ align-items: center;
402
+ justify-content: center;
403
+ pointer-events: none;
404
+ visibility: hidden;
405
+ }
406
+
407
+ .fcr-user-window-is-broken {
408
+ visibility: visible;
409
+ }
410
+
411
+ .fcr-user-window-background svg {
412
+ opacity: 0.3;
413
+ }
414
+
415
+ .fcr-user-window-avatar {
416
+ padding: 0 20px;
417
+ overflow: hidden;
418
+ text-overflow: ellipsis;
419
+ white-space: nowrap;
420
+ position: relative;
421
+ }
422
+
423
+ .fcr-user-window-avatar svg {
424
+ width: 52%;
425
+ }
426
+
427
+ .fcr-user-window-body {
428
+ position: absolute;
429
+ inset: 0;
430
+ font-size: 0;
431
+ }
432
+
433
+ .fcr-user-window-actions {
434
+ position: absolute;
435
+ inset: 0;
436
+ pointer-events: none;
437
+ transition: opacity 0.2s;
438
+ overflow: hidden;
439
+ }
440
+
441
+ .fcr-user-window-actions-hide {
442
+ opacity: 0;
443
+ }
444
+
445
+ .fcr-user-window-actions button {
446
+ pointer-events: auto;
447
+ }
448
+
449
+ .fcr-user-window-actions-middle {
450
+ inset: auto auto 26px 4px;
451
+ font-size: 12px;
452
+ position: absolute;
453
+ }
454
+
455
+ .fcr-user-window-gallery .fcr-user-window-actions-bottom {
456
+ height: 24px;
457
+ border-radius: var(--fcr_cornerradius_s);
458
+ font-size: 12px;
459
+ }
460
+
461
+ .fcr-user-window-gallery .fcr-user-window-actions-bottom .fcr-user-window-actions-microphone {
462
+ border-radius: var(--fcr_cornerradius_s);
463
+ }
464
+
465
+ .fcr-user-window-actions-tag {
466
+ height: 18px;
467
+ border-radius: var(--fcr_cornerradius_xxs);
468
+ display: inline-flex;
469
+ align-items: center;
470
+ white-space: nowrap;
471
+ }
472
+
473
+ .fcr-user-window-gallery .fcr-user-window-actions-tag {
474
+ height: 24px;
475
+ border-radius: var(--fcr_cornerradius_s);
476
+ }
477
+
478
+ .fcr-user-window-actions-tag-host {
479
+ color: var(--fcr_ui_scene_white10);
480
+ background: linear-gradient(90deg, #4262ff, #7c79ff);
481
+ padding: 0 8px;
482
+ }
483
+
484
+ .fcr-user-window-actions-tag-cohost {
485
+ background: var(--fcr_ui_scene_ramp_lightgreen6);
486
+ }
487
+
488
+ .fcr-user-window-actions-tag-host:has(svg) {
489
+ padding-left: 4px;
490
+ }
491
+
492
+ .fcr-user-window-actions-volume {
493
+ color: var(--fcr_ui_scene_icontext1);
494
+ --fcr-volume-icon-color: var(--fcr_ui_scene_icontext1);
495
+ }
496
+
497
+ .fcr-user-window-actions-tag-host .fcr-user-window-actions-volume {
498
+ color: var(--fcr_ui_scene_white10);
499
+ --fcr-volume-icon-color: var(--fcr_ui_scene_white10);
500
+ }
501
+
502
+ .fcr-user-window-gallery .fcr-user-window-actions-tag-host {
503
+ padding: 0 13px;
504
+ }
505
+
506
+ .fcr-user-window-gallery .fcr-user-window-actions-tag-host:has(svg) {
507
+ padding-left: 6px;
508
+ }
509
+
510
+ .fcr-user-window-actions-microphone {
511
+ padding: 1px;
512
+ align-self: stretch;
513
+ display: inline-flex;
514
+ align-items: center;
515
+ color: var(--fcr_ui_scene_icontext1);
516
+ border-radius: var(--fcr_cornerradius_xxs);
517
+ background-color: var(--fcr_ui_scene_view_toast);
518
+ cursor: default;
519
+ }
520
+
521
+ .fcr-user-window-actions-tag-host .fcr-user-window-actions-microphone {
522
+ color: var(--fcr_ui_scene_white10);
523
+ }
524
+
525
+ .fcr-user-window-gallery .fcr-user-window-actions-microphone {
526
+ padding: 0;
527
+ background-color: transparent;
528
+ }
529
+
530
+ .fcr-user-window-actions-tag ~ .fcr-user-window-actions-microphone {
531
+ border-top-left-radius: 0;
532
+ border-bottom-left-radius: 0;
533
+ }
534
+
535
+ .fcr-user-window-actions-tag:has(~ .fcr-user-window-actions-microphone) {
536
+ border-top-right-radius: 0;
537
+ border-bottom-right-radius: 0;
538
+ }
539
+
540
+ .fcr-user-window-actions-name {
541
+ padding: 0 8px;
542
+ font-weight: var(--fcr_font_weight_s);
543
+ line-height: 1.5;
544
+ white-space: nowrap;
545
+ overflow: hidden;
546
+ text-overflow: ellipsis;
547
+ }
548
+
549
+ .fcr-user-window-gallery .fcr-user-window-actions-name {
550
+ padding: 0 10px;
551
+ }
552
+
553
+ .fcr-user-window:hover .fcr-user-window-actions-top {
554
+ opacity: 1;
555
+ }
556
+
557
+ .fcr-user-window-actions-more {
558
+ padding: 3px;
559
+ border-radius: var(--fcr_cornerradius_xxs);
560
+ background-color: var(--fcr_web_ui_scene_hover3);
561
+ }
562
+
563
+ .fcr-user-window-actions-mute {
564
+ padding: 0 6px;
565
+ border-radius: var(--fcr_cornerradius_xxs);
566
+ background-color: var(--fcr_web_ui_scene_hover3);
567
+ }
568
+
569
+ .fcr-user-window-actions-mute:disabled {
570
+ display: none;
571
+ }
572
+
573
+ .fcr-layout-content-bar {
574
+ /* position: absolute; */
575
+ height: 0px;
576
+ width: 100%;
577
+ /* overflow: hidden; */
578
+ transition: height 0s;
579
+ z-index: 10;
580
+ }
581
+
582
+ .fcr-layout-speaker .fcr-layout-content-bar {
583
+ position: relative;
584
+ }
585
+
586
+ .fcr-layout-content-bar-body {
587
+ height: 0px;
588
+ /* overflow: hidden; */
589
+ transition: height 0.2s;
590
+ position: relative;
591
+ display: flex;
592
+ flex-direction: column;
593
+ align-items: center;
594
+ }
595
+
596
+ .fcr-layout-content-top {
597
+ top: 0;
598
+ display: flex;
599
+ flex-flow: column-reverse nowrap;
600
+ justify-content: flex-end;
601
+ }
602
+
603
+ .fcr-layout-content-top .fcr-layout-content-bar-body {
604
+ display: flex;
605
+ flex-flow: column-reverse nowrap;
606
+ }
607
+
608
+ .fcr-layout-content-bottom {
609
+ bottom: 0;
610
+ display: flex;
611
+ flex-flow: column-reverse nowrap;
612
+ }
613
+
614
+ .fcr-layout-hovering .fcr-layout-content-top,
615
+ .fcr-layout-hovering .fcr-layout-content-top .fcr-layout-content-bar-body {
616
+ height: 34px;
617
+ }
618
+
619
+ .fcr-layout-hovering .fcr-layout-content-bottom,
620
+ .fcr-layout-hovering .fcr-layout-content-bottom .fcr-layout-content-bar-body {
621
+ height: 55px;
622
+ width: 100%;
623
+ z-index: 100;
624
+ }
625
+
626
+ .fcr-layout-hovering .fcr-user-window-actions-top {
627
+ display: flex;
628
+ }
629
+
630
+ .fcr-layout-content-bar--hidden .fcr-layout-content-bar-body {
631
+ height: 0;
632
+ }
633
+
634
+ .fcr-layout-content-bar--hidden.fcr-layout-content-bottom,
635
+ .fcr-layout-content-bar--hidden.fcr-layout-content-bottom .fcr-layout-content-bar-body {
636
+ height: 0px;
637
+ overflow: inherit;
638
+ position: relative;
639
+ }
640
+
641
+ .fcr-layout-adapter-div {
642
+ display: flex;
643
+ flex-flow: column nowrap;
644
+ justify-content: flex-end;
645
+ }
646
+
647
+ .participant-dialog-header-count {
648
+ font-weight: 400;
649
+ }
650
+
651
+ .fcr-layout-content-gallery-row-onlyone {
652
+ border-radius: 0px !important;
653
+ }