fcr-ui-scene 3.8.1-alpha → 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 +82 -77
  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,706 +1,706 @@
1
- .fcr-state-bar {
2
- width: 100%;
3
- height: 34px;
4
- padding: 0 15px;
5
- background: var(--fcr_web_ui_scene_fill2);
6
- backdrop-filter: blur(25px);
7
- display: flex;
8
- justify-content: space-between;
9
- column-gap: 24px;
10
- }
11
-
12
- /* left state-bar */
13
- .fcr-state-bar__left-nav {
14
- height: 100%;
15
- display: flex;
16
- align-items: center;
17
- column-gap: 5px;
18
- }
19
-
20
- .fcr-state-bar__logo {
21
- --logo_height: 28px;
22
- height: var(--logo_height);
23
- width: auto;
24
- min-width: var(--logo_height);
25
- max-width: calc(var(--logo_height) * 3.5);
26
- }
27
-
28
- .fcr-state-bar__meeting-lock {
29
- border-radius: var(--fcr_cornerradius_xxs);
30
- border: 1px solid var(--fcr_ui_scene_line1);
31
- height: 28px;
32
- padding: 0 6px 0 4px;
33
- font-size: 12px;
34
- line-height: 1;
35
- color: var(--fcr_web_ui_scene_mainicon1);
36
- background: var(--fcr_web_ui_scene_fill2);
37
- cursor: pointer;
38
- transition: all 0.2s ease;
39
- display: flex;
40
- align-items: center;
41
- }
42
-
43
- .fcr-state-bar__meeting-lock:hover {
44
- background: var(--fcr_web_ui_scene_hover);
45
- }
46
-
47
- .fcr-state-bar__meeting-lock-icon path {
48
- fill: var(--fcr_web_ui_scene_mainicon1);
49
- }
50
-
51
- .fcr-state-bar__meeting-info {
52
- border-radius: var(--fcr_cornerradius_xxs);
53
- border: 1px solid var(--fcr_ui_scene_line1);
54
- height: 28px;
55
- overflow: hidden;
56
- background: var(--fcr_web_ui_scene_fill2);
57
- display: flex;
58
- align-items: center;
59
- }
60
-
61
- .fcr-state-bar__info-network {
62
- height: 100%;
63
- padding: 4px;
64
- transition: all 0.2s ease;
65
- cursor: pointer;
66
- }
67
-
68
- .fcr-state-bar__info-network:hover,
69
- .fcr-state-bar__info-network.active {
70
- background: var(--fcr_web_ui_scene_hover);
71
- }
72
-
73
- .fcr-state-bar__step-divider {
74
- }
75
-
76
- .fcr-state-bar__info-detail {
77
- margin-left: 6px;
78
- height: 100%;
79
- padding: 0 4px 0 3px;
80
- font-size: 12px;
81
- line-height: 1;
82
- color: var(--fcr_web_ui_scene_mainicon1);
83
- background: var(--fcr_web_ui_scene_fill2);
84
- cursor: pointer;
85
- transition: all 0.2s ease;
86
- display: flex;
87
- align-items: center;
88
- }
89
- .fcr-state-bar__inwaitingroom-disable-action {
90
- pointer-events: none;
91
- }
92
-
93
- .fcr-state-bar__info-detail:hover,
94
- .fcr-state-bar__info-detail.active {
95
- background: var(--fcr_web_ui_scene_hover);
96
- }
97
-
98
- .fcr-state-bar__info-detail-icon path {
99
- fill: var(--fcr_web_ui_scene_mainicon1);
100
- }
101
-
102
- .fcr-state-bar__info-meeting-id {
103
- height: 100%;
104
- padding: 0 6px 0 4px;
105
- font-size: 12px;
106
- line-height: 1;
107
- color: var(--fcr_web_ui_scene_mainicon1);
108
- background: var(--fcr_web_ui_scene_fill2);
109
- cursor: pointer;
110
- transition: all 0.2s ease;
111
- display: flex;
112
- align-items: center;
113
- }
114
-
115
- .fcr-state-bar__info-meeting-id:hover {
116
- background: var(--fcr_web_ui_scene_hover);
117
- }
118
-
119
- /* right state-bar */
120
- .fcr-state-bar__right-nav {
121
- height: 100%;
122
- display: flex;
123
- align-items: center;
124
- column-gap: 5px;
125
- }
126
-
127
- .fcr-state-bar__record {
128
- height: 28px;
129
- border-radius: 4px;
130
- display: inline-flex;
131
- flex-flow: row nowrap;
132
- align-items: stretch;
133
- color: var(--fcr_ui_scene_icontext1);
134
- background-color: var(--fcr_web_ui_scene_fill2);
135
- border: 0.5px solid var(--fcr_ui_scene_line1);
136
- position: relative;
137
- overflow: hidden;
138
- }
139
-
140
- .fcr-state-bar__record-tag {
141
- padding: 0 0 0 4px;
142
- display: inline-flex;
143
- flex-flow: row nowrap;
144
- align-items: center;
145
- white-space: nowrap;
146
- font-size: 12px;
147
- line-height: 1;
148
- font-weight: 400;
149
- }
150
- .fcr-state-bar__record-tag.recording-min {
151
- padding: 0 4px;
152
- }
153
-
154
- .fcr-state-bar__record-tag > svg {
155
- width: 22px;
156
- color: var(--fcr_ui_scene_ramp_red6);
157
- }
158
-
159
- .fcr-state-bar__record-tag.recording-starting > svg {
160
- animation: breath 2s linear infinite;
161
- }
162
-
163
- @keyframes breath {
164
- from {
165
- opacity: 0.2;
166
- }
167
- 50% {
168
- opacity: 1;
169
- }
170
- to {
171
- opacity: 0.2;
172
- }
173
- }
174
-
175
- .fcr-state-bar__record-tag.recording-paused {
176
- background-color: var(--fcr_ui_scene_ramp_red6);
177
- }
178
-
179
- .fcr-state-bar__record-tag.recording-paused {
180
- padding: 0 6px;
181
- }
182
-
183
- .fcr-state-bar__record-tag.recording-paused > svg {
184
- display: none;
185
- }
186
-
187
- .fcr-state-bar__record-tag.recording-paused .fcr-state-bar__record-text {
188
- color: var(--fcr_ui_scene_white10);
189
- }
190
-
191
- .fcr-state-bar__record-text {
192
- padding: 0 6px 0 3px;
193
- white-space: nowrap;
194
- overflow: hidden;
195
- text-overflow: ellipsis;
196
- }
197
-
198
- .fcr-state-bar__record-buttons {
199
- height: 28px;
200
- display: inline-flex;
201
- align-items: center;
202
- position: relative;
203
- }
204
-
205
- .fcr-state-bar__record-buttons button {
206
- outline: 0;
207
- }
208
-
209
- .fcr-state-bar__record-buttons.recording-paused > .fcr-state-bar__record-split:first-child {
210
- display: none;
211
- }
212
-
213
- .fcr-state-bar__record-split {
214
- display: inline-block;
215
- width: 1px;
216
- height: 100%;
217
- background: linear-gradient(transparent, var(--fcr_ui_scene_icontext1), transparent);
218
- }
219
-
220
- .fcr-state-bar__record-btn {
221
- padding: 3px 6px;
222
- }
223
-
224
- .fcr-state-bar__record-btn:focus {
225
- outline: 0px;
226
- }
227
-
228
- .fcr-state-bar__record-btn:hover {
229
- background-color: var(--fcr_web_ui_scene_hover);
230
- }
231
-
232
- .fcr-state-bar__record-btn:hover svg path {
233
- fill: var(--fcr_web_ui_scene_mainicon2);
234
- }
235
-
236
- @media (max-width: 575px) {
237
- .fcr-state-bar__record-tag {
238
- padding-right: 4px;
239
- }
240
- .fcr-state-bar__record-text {
241
- display: none;
242
- }
243
- .fcr-state-bar__record-buttons {
244
- display: none;
245
- }
246
- .fcr-state-bar__record-tag.recording-paused > svg {
247
- display: inline-block;
248
- color: var(--fcr_ui_scene_icontext1);
249
- }
250
- .fcr-layout-config__dropdown-icon {
251
- display: none;
252
- }
253
- .fcr-layout-config div {
254
- display: none;
255
- }
256
- }
257
-
258
- .fcr-state-bar__time {
259
- }
260
-
261
- .fcr-state-bar__layout {
262
- }
263
-
264
- .fcr-state-bar__full-screen,
265
- .fcr-sate-bar__subtitles-history-state {
266
- border-radius: var(--fcr_cornerradius_xxs);
267
- border: 1px solid var(--fcr_ui_scene_line1);
268
- padding: 2px;
269
- cursor: pointer;
270
- background: var(--fcr_web_ui_scene_fill2);
271
- }
272
- .fcr-state-bar__full-screen:hover,
273
- .fcr-sate-bar__subtitles-history-state:hover {
274
- background: var(--fcr_web_ui_scene_hover);
275
- }
276
- .fcr-state-bar__full-screen:hover .fcr-state-bar__full-screen-icon path {
277
- fill: var(--fcr_web_ui_scene_mainicon2);
278
- }
279
-
280
- .fcr-state-bar__full-screen-icon path {
281
- fill: var(--fcr_web_ui_scene_mainicon1);
282
- }
283
-
284
- .fcr-sate-bar__subtitles-history-state__animation {
285
- animation: fcr-sate-bar__subtitles-history-state__animation 1.5s 0.5s 1 linear;
286
- }
287
-
288
- @keyframes fcr-sate-bar__subtitles-history-state__animation {
289
- 0% {
290
- background: var(--fcr_ui_scene_ramp_brand1);
291
- }
292
- 25% {
293
- background: var(--fcr_ui_scene_ramp_brand2);
294
- }
295
- 50% {
296
- background: var(--fcr_ui_scene_ramp_brand1);
297
- }
298
- 75% {
299
- background: var(--fcr_ui_scene_ramp_brand2);
300
- }
301
- 100% {
302
- background: var(--fcr_web_ui_scene_fill2);
303
- }
304
- }
305
-
306
- .fcr-subtitles-history-state-panel {
307
- padding: 15px;
308
- text-align: left;
309
- color: var(--fcr_ui_scene_icontext1);
310
- }
311
- .fcr-subtitles-history-state-panel__title {
312
- font-size: 14px;
313
- line-height: 20px;
314
- font-weight: var(--fcr_font_weight_m);
315
- margin-bottom: 12px;
316
- }
317
- .fcr-subtitles-history-state-panel__text {
318
- font-size: 12px;
319
- line-height: 16px;
320
- margin-bottom: 12px;
321
- }
322
- .fcr-subtitles-history-state-panel__actions {
323
- display: flex;
324
- align-items: center;
325
- column-gap: 8px;
326
- }
327
- .fcr-subtitles-history-state-panel__actions button {
328
- border-radius: var(--fcr_cornerradius_xs);
329
- }
330
- .fcr-subtitles-history-state-panel__actions__left.fcr-button {
331
- width: 132px;
332
- padding: 0 10px;
333
- flex-grow: 1;
334
- letter-spacing: 4px;
335
- }
336
- .fcr-subtitles-history-state-panel__actions__right.fcr-button {
337
- min-width: 32px;
338
- padding: 0;
339
- background: var(--fcr_ui_scene_ramp_red6);
340
- /* fcr-button 上的 border 属性为 important,此处不需要显示borer,故将其覆盖。 */
341
- border-color: transparent !important;
342
- }
343
- .fcr-subtitles-history-state-panel__actions__right.fcr-button:hover {
344
- background: var(--fcr_ui_scene_ramp_red6);
345
- }
346
-
347
- /* network-quality */
348
- .fcr-network-quality {
349
- }
350
-
351
- /* meeting-time */
352
- .fcr-meeting-time {
353
- border-radius: var(--fcr_cornerradius_xxs);
354
- height: 28px;
355
- padding: 0 10px;
356
- font-size: 12px;
357
- line-height: 100%;
358
- font-weight: 700;
359
- cursor: pointer;
360
- transition: all 0.2s ease;
361
- display: flex;
362
- align-items: center;
363
- column-gap: 5px;
364
- }
365
- .fcr-meeting-time__icon path {
366
- transition: all 0.2s ease;
367
- }
368
-
369
- .fcr-meeting-time--normal {
370
- border: 1px solid var(--fcr_ui_scene_line2);
371
- color: var(--fcr_web_ui_scene_mainicon1);
372
- background: var(--fcr_web_ui_scene_fill2);
373
- }
374
- .fcr-meeting-time--normal .fcr-meeting-time__icon path {
375
- fill: var(--fcr_web_ui_scene_mainicon1);
376
- }
377
- .fcr-meeting-time--normal:hover {
378
- border: 1px solid var(--fcr_web_ui_scene_hover);
379
- background: var(--fcr_web_ui_scene_hover);
380
- color: var(--fcr_web_ui_scene_mainicon2);
381
- }
382
- .fcr-meeting-time--normal:hover .fcr-meeting-time__icon path {
383
- fill: var(--fcr_web_ui_scene_mainicon2);
384
- }
385
-
386
- .fcr-meeting-time--soon2end {
387
- border: 1px solid var(--fcr_ui_scene_ramp_yellow6);
388
- color: var(--fcr_ui_scene_ramp_yellow6);
389
- background: var(--fcr_web_ui_scene_fill2);
390
- }
391
- .fcr-meeting-time--soon2end .fcr-meeting-time__icon path {
392
- fill: var(--fcr_ui_scene_ramp_yellow6);
393
- }
394
- .fcr-meeting-time--soon2end:hover {
395
- border: 1px solid var(--fcr_ui_scene_ramp_yellow6);
396
- background: var(--fcr_ui_scene_ramp_yellow6);
397
- color: var(--fcr_ui_scene_white10);
398
- }
399
- .fcr-meeting-time--soon2end:hover .fcr-meeting-time__icon path {
400
- fill: var(--fcr_ui_scene_white10);
401
- }
402
-
403
- .fcr-meeting-time--overtime {
404
- border: 1px solid var(--fcr_ui_scene_ramp_red6);
405
- color: var(--fcr_ui_scene_ramp_red6);
406
- background: var(--fcr_web_ui_scene_fill2);
407
- }
408
- .fcr-meeting-time--overtime .fcr-meeting-time__icon path {
409
- fill: var(--fcr_ui_scene_ramp_red6);
410
- }
411
- .fcr-meeting-time--overtime:hover {
412
- border: 1px solid var(--fcr_ui_scene_ramp_red6);
413
- background: var(--fcr_ui_scene_ramp_red6);
414
- color: var(--fcr_ui_scene_white10);
415
- }
416
- .fcr-meeting-time--overtime:hover .fcr-meeting-time__icon path {
417
- fill: var(--fcr_ui_scene_white10);
418
- }
419
-
420
- /* layout-config */
421
- .fcr-layout-config {
422
- border-radius: var(--fcr_cornerradius_xxs);
423
- border: 1px solid var(--fcr_ui_scene_line2);
424
- height: 28px;
425
- padding: 0 4px;
426
- font-size: 12px;
427
- line-height: 100%;
428
- font-weight: 700;
429
- color: var(--fcr_web_ui_scene_mainicon1);
430
- cursor: pointer;
431
- background: var(--fcr_web_ui_scene_fill2);
432
- transition: all 0.2s ease;
433
- display: flex;
434
- align-items: center;
435
- }
436
-
437
- .fcr-layout-config:hover {
438
- color: var(--fcr_web_ui_scene_mainicon2);
439
- background: var(--fcr_web_ui_scene_hover);
440
- }
441
-
442
- .fcr-layout-config:hover .fcr-layout-config__layout-icon path,
443
- .fcr-layout-config:hover .fcr-layout-config__dropdown-icon path {
444
- fill: var(--fcr_web_ui_scene_mainicon2);
445
- }
446
-
447
- .fcr-layout-config__layout-icon path {
448
- fill: var(--fcr_web_ui_scene_mainicon1);
449
- transition: all 0.2s ease;
450
- }
451
-
452
- .fcr-layout-config__dropdown-icon {
453
- transition: all 0.2s ease;
454
- transform-origin: center;
455
- transform: rotate(0deg);
456
- }
457
-
458
- .fcr-layout-config__dropdown-icon.is-open {
459
- transform: rotate(180deg);
460
- }
461
-
462
- .fcr-layout-config__dropdown-icon path {
463
- fill: var(--fcr_web_ui_scene_mainicon1);
464
- transition: all 0.2s ease;
465
- }
466
-
467
- .fcr-layout-config__popover .fcr-tooltip-inner {
468
- border-radius: var(--fcr_cornerradius_l);
469
- border: 1px solid var(--fcr_ui_scene_line1);
470
- background: var(--fcr_mobile_ui_scene_color_popup_fill2);
471
- box-shadow: var(--fcr_web_light_dropup_m) !important;
472
- width: 120px !important;
473
- }
474
-
475
- .fcr-layout-config-panel {
476
- padding: 0 12px;
477
- }
478
-
479
- .fcr-layout-config-panel__option {
480
- margin-top: 15px;
481
- }
482
- .fcr-layout-config-panel__option.is-active .fcr-layout-config-panel__option-layout-inner {
483
- border-color: var(--fcr_ui_scene_ramp_brand6);
484
- }
485
-
486
- .fcr-layout-config-panel__option-layout {
487
- border-radius: var(--fcr_cornerradius_m);
488
- border: 1px solid transparent;
489
- padding: 2px;
490
- cursor: pointer;
491
- transition: all 0.2s ease;
492
- }
493
-
494
- .fcr-layout-config-panel__option:not(.is-active) .fcr-layout-config-panel__option-layout:hover {
495
- border-color: var(--fcr_ui_scene_ramp_brand6);
496
- }
497
-
498
- .fcr-layout-config-panel__option-layout-inner {
499
- border-radius: var(--fcr_cornerradius_s);
500
- border: 5px solid var(--fcr_web_ui_scene_fill4_popup);
501
- transition: all 0.2s ease;
502
- }
503
-
504
- .fcr-layout-config-panel__option-layout-img-wrapper {
505
- border-radius: var(--fcr_cornerradius_xs);
506
- padding: 6px 0;
507
- background: var(--fcr_web_ui_scene_fill2);
508
- display: flex;
509
- justify-content: center;
510
- }
511
-
512
- .fcr-layout-config-panel__option-layout-img {
513
- width: 68px;
514
- height: 38px;
515
- }
516
-
517
- .fcr-layout-config-panel__option-text {
518
- margin-top: 3px;
519
- font-size: 12px;
520
- line-height: 100%;
521
- font-weight: 400;
522
- color: var(--fcr_ui_scene_icontext1);
523
- }
524
-
525
- .fcr-layout-config-panel__divider {
526
- margin-top: 17px;
527
- margin-bottom: 8px;
528
- width: 100%;
529
- height: 1px;
530
- background: var(--fcr_ui_scene_line1, #e3e7ef);
531
- }
532
-
533
- .fcr-layout-config-panel__setting {
534
- margin-bottom: 10px;
535
- border-radius: var(--fcr_cornerradius_xxs);
536
- padding: 9px 0;
537
- font-size: 12px;
538
- line-height: 100%;
539
- font-weight: 400;
540
- color: var(--fcr_ui_scene_icontext1);
541
- cursor: pointer;
542
- transition: all 0.2s ease;
543
- }
544
-
545
- .fcr-layout-config-panel__setting:hover {
546
- background: var(--fcr_web_ui_scene_hover);
547
- color: var(--fcr_web_ui_scene_mainicon2);
548
- }
549
-
550
- /* */
551
- .fcr-state-bar__popover .fcr-tooltip-inner {
552
- border-radius: var(--fcr_cornerradius_l);
553
- border: 1px solid var(--fcr_ui_scene_line1);
554
- background: var(--fcr_mobile_ui_scene_color_popup_fill2);
555
- box-shadow: var(--fcr_web_light_dropup_m) !important;
556
- width: fit-content !important;
557
- }
558
-
559
- .fcr-state-bar__meeting-info {
560
- font-size: 12px;
561
- color: var(--fcr_ui_scene_icontext1);
562
- }
563
-
564
- .fcr-state-bar__live-streaming-info {
565
- font-size: 12px;
566
- color: var(--fcr_ui_scene_icontext1);
567
- display: flex;
568
- align-items: center;
569
- border: 1px solid var(--fcr_ui_scene_line1);
570
- background-color: var(--fcr_web_ui_scene_fill2);
571
- border-radius: var(--fcr_cornerradius_xxs);
572
- padding-right: 4px;
573
- height: 28px;
574
- overflow: hidden;
575
- }
576
- .fcr-state-bar__live-streaming-info-live-icon {
577
- background-color: var(--fcr_ui_scene_ramp_red6);
578
- border-radius: var(--fcr_cornerradius_xxs);
579
- min-width: 74px;
580
- height: 28px;
581
- display: flex;
582
- align-items: center;
583
- padding: 4px;
584
- }
585
- .fcr-state-bar__live-streaming-info-live-icon.small {
586
- min-width: 51px;
587
- justify-content: center;
588
- }
589
-
590
- .fcr-state-bar__meeting-info {
591
- font-size: 12px;
592
- color: var(--fcr_ui_scene_icontext1);
593
- }
594
-
595
- .fcr-state-bar__meeting-info-drop .fcr-drop-menu {
596
- width: 100%;
597
- border: 1px solid var(--fcr_ui_scene_line1);
598
- box-shadow: var(--fcr_web_light_dropup_m);
599
- }
600
- .fcr-state-bar__meeting-info-drop .fcr-drop-menu-option-text {
601
- overflow: hidden;
602
- text-overflow: ellipsis;
603
- white-space: nowrap;
604
- }
605
- .fcr-state-bar__live-streaming-info {
606
- font-size: 12px;
607
- color: var(--fcr_ui_scene_icontext1);
608
- display: flex;
609
- align-items: center;
610
- border: 1px solid var(--fcr_ui_scene_line1);
611
- background-color: var(--fcr_web_ui_scene_fill2);
612
- border-radius: var(--fcr_cornerradius_xxs);
613
- padding-right: 4px;
614
- height: 28px;
615
- overflow: hidden;
616
- }
617
- .fcr-state-bar__live-streaming-info-live-icon {
618
- background-color: var(--fcr_ui_scene_ramp_red6);
619
- border-radius: var(--fcr_cornerradius_xxs);
620
- min-width: 74px;
621
- height: 28px;
622
- display: flex;
623
- align-items: center;
624
- padding: 4px;
625
- }
626
- .fcr-state-bar__live-streaming-info-text {
627
- max-width: 230px;
628
- white-space: nowrap;
629
- margin-left: 6px;
630
- overflow: hidden;
631
- }
632
- .fcr-state-bar__live-streaming-info-icon {
633
- transform: rotate(180deg);
634
- }
635
- .fcr-state-bar__info-detail:hover .fcr-state-bar__lock-meeting-text,
636
- .fcr-state-bar__info-meeting-id:hover {
637
- color: var(--fcr_web_ui_scene_mainicon2);
638
- }
639
- .fcr-state-bar__info-detail:hover .fcr-state-bar__info-detail-icon path {
640
- fill: var(--fcr_web_ui_scene_mainicon2);
641
- }
642
- .fcr-state-bar__lock-meeting-text {
643
- min-width: 50px;
644
- }
645
- /* .fcr-state-bar__meeting-info {
646
- min-width: 120px;
647
- } */
648
- .fcr-state-bar__lock-meeting-text {
649
- min-width: 50px;
650
- }
651
-
652
- @media (max-width: 825px) {
653
- .fcr-state-bar__record-tag {
654
- padding-right: 4px;
655
- }
656
-
657
- .fcr-state-bar__record-text {
658
- display: none;
659
- }
660
-
661
- .fcr-state-bar__record-buttons {
662
- display: none;
663
- }
664
-
665
- .fcr-state-bar__record-tag.recording-paused > svg {
666
- display: inline-block;
667
- color: var(--fcr_ui_scene_icontext1);
668
- }
669
-
670
- .fcr-layout-config__dropdown-icon {
671
- display: none;
672
- }
673
-
674
- .fcr-layout-config div {
675
- display: none;
676
- }
677
- .fcr-state-bar__info-meeting-id {
678
- display: none;
679
- }
680
- .fcr-meeting-time {
681
- display: none;
682
- }
683
- /* .fcr-state-bar__live-streaming {
684
- display: none;
685
- } */
686
- .fcr-state-bar__live-streaming-info {
687
- padding: 0;
688
- }
689
- .fcr-state-bar__live-streaming-info-live-icon {
690
- min-width: 51px;
691
- justify-content: center;
692
- }
693
- .fcr-state-bar__live-streaming-info img,
694
- .fcr-state-bar__live-streaming-info [data-label='fcr_dropup4'],
695
- .fcr-state-bar__live-streaming-info-text {
696
- display: none;
697
- }
698
- }
699
-
700
- .layout-set-options-item-disable .fcr-layout-config-panel__option-text {
701
- color: var(--fcr_ui_scene_icontext3);
702
- }
703
-
704
- .layout-set-options-item-disable .fcr-layout-config-panel__option-layout-img-wrapper {
705
- opacity: 0.5;
706
- }
1
+ .fcr-state-bar {
2
+ width: 100%;
3
+ height: 34px;
4
+ padding: 0 15px;
5
+ background: var(--fcr_web_ui_scene_fill2);
6
+ backdrop-filter: blur(25px);
7
+ display: flex;
8
+ justify-content: space-between;
9
+ column-gap: 24px;
10
+ }
11
+
12
+ /* left state-bar */
13
+ .fcr-state-bar__left-nav {
14
+ height: 100%;
15
+ display: flex;
16
+ align-items: center;
17
+ column-gap: 5px;
18
+ }
19
+
20
+ .fcr-state-bar__logo {
21
+ --logo_height: 28px;
22
+ height: var(--logo_height);
23
+ width: auto;
24
+ min-width: var(--logo_height);
25
+ max-width: calc(var(--logo_height) * 3.5);
26
+ }
27
+
28
+ .fcr-state-bar__meeting-lock {
29
+ border-radius: var(--fcr_cornerradius_xxs);
30
+ border: 1px solid var(--fcr_ui_scene_line1);
31
+ height: 28px;
32
+ padding: 0 6px 0 4px;
33
+ font-size: 12px;
34
+ line-height: 1;
35
+ color: var(--fcr_web_ui_scene_mainicon1);
36
+ background: var(--fcr_web_ui_scene_fill2);
37
+ cursor: pointer;
38
+ transition: all 0.2s ease;
39
+ display: flex;
40
+ align-items: center;
41
+ }
42
+
43
+ .fcr-state-bar__meeting-lock:hover {
44
+ background: var(--fcr_web_ui_scene_hover);
45
+ }
46
+
47
+ .fcr-state-bar__meeting-lock-icon path {
48
+ fill: var(--fcr_web_ui_scene_mainicon1);
49
+ }
50
+
51
+ .fcr-state-bar__meeting-info {
52
+ border-radius: var(--fcr_cornerradius_xxs);
53
+ border: 1px solid var(--fcr_ui_scene_line1);
54
+ height: 28px;
55
+ overflow: hidden;
56
+ background: var(--fcr_web_ui_scene_fill2);
57
+ display: flex;
58
+ align-items: center;
59
+ }
60
+
61
+ .fcr-state-bar__info-network {
62
+ height: 100%;
63
+ padding: 4px;
64
+ transition: all 0.2s ease;
65
+ cursor: pointer;
66
+ }
67
+
68
+ .fcr-state-bar__info-network:hover,
69
+ .fcr-state-bar__info-network.active {
70
+ background: var(--fcr_web_ui_scene_hover);
71
+ }
72
+
73
+ .fcr-state-bar__step-divider {
74
+ }
75
+
76
+ .fcr-state-bar__info-detail {
77
+ margin-left: 6px;
78
+ height: 100%;
79
+ padding: 0 4px 0 3px;
80
+ font-size: 12px;
81
+ line-height: 1;
82
+ color: var(--fcr_web_ui_scene_mainicon1);
83
+ background: var(--fcr_web_ui_scene_fill2);
84
+ cursor: pointer;
85
+ transition: all 0.2s ease;
86
+ display: flex;
87
+ align-items: center;
88
+ }
89
+ .fcr-state-bar__inwaitingroom-disable-action {
90
+ pointer-events: none;
91
+ }
92
+
93
+ .fcr-state-bar__info-detail:hover,
94
+ .fcr-state-bar__info-detail.active {
95
+ background: var(--fcr_web_ui_scene_hover);
96
+ }
97
+
98
+ .fcr-state-bar__info-detail-icon path {
99
+ fill: var(--fcr_web_ui_scene_mainicon1);
100
+ }
101
+
102
+ .fcr-state-bar__info-meeting-id {
103
+ height: 100%;
104
+ padding: 0 6px 0 4px;
105
+ font-size: 12px;
106
+ line-height: 1;
107
+ color: var(--fcr_web_ui_scene_mainicon1);
108
+ background: var(--fcr_web_ui_scene_fill2);
109
+ cursor: pointer;
110
+ transition: all 0.2s ease;
111
+ display: flex;
112
+ align-items: center;
113
+ }
114
+
115
+ .fcr-state-bar__info-meeting-id:hover {
116
+ background: var(--fcr_web_ui_scene_hover);
117
+ }
118
+
119
+ /* right state-bar */
120
+ .fcr-state-bar__right-nav {
121
+ height: 100%;
122
+ display: flex;
123
+ align-items: center;
124
+ column-gap: 5px;
125
+ }
126
+
127
+ .fcr-state-bar__record {
128
+ height: 28px;
129
+ border-radius: 4px;
130
+ display: inline-flex;
131
+ flex-flow: row nowrap;
132
+ align-items: stretch;
133
+ color: var(--fcr_ui_scene_icontext1);
134
+ background-color: var(--fcr_web_ui_scene_fill2);
135
+ border: 0.5px solid var(--fcr_ui_scene_line1);
136
+ position: relative;
137
+ overflow: hidden;
138
+ }
139
+
140
+ .fcr-state-bar__record-tag {
141
+ padding: 0 0 0 4px;
142
+ display: inline-flex;
143
+ flex-flow: row nowrap;
144
+ align-items: center;
145
+ white-space: nowrap;
146
+ font-size: 12px;
147
+ line-height: 1;
148
+ font-weight: 400;
149
+ }
150
+ .fcr-state-bar__record-tag.recording-min {
151
+ padding: 0 4px;
152
+ }
153
+
154
+ .fcr-state-bar__record-tag > svg {
155
+ width: 22px;
156
+ color: var(--fcr_ui_scene_ramp_red6);
157
+ }
158
+
159
+ .fcr-state-bar__record-tag.recording-starting > svg {
160
+ animation: breath 2s linear infinite;
161
+ }
162
+
163
+ @keyframes breath {
164
+ from {
165
+ opacity: 0.2;
166
+ }
167
+ 50% {
168
+ opacity: 1;
169
+ }
170
+ to {
171
+ opacity: 0.2;
172
+ }
173
+ }
174
+
175
+ .fcr-state-bar__record-tag.recording-paused {
176
+ background-color: var(--fcr_ui_scene_ramp_red6);
177
+ }
178
+
179
+ .fcr-state-bar__record-tag.recording-paused {
180
+ padding: 0 6px;
181
+ }
182
+
183
+ .fcr-state-bar__record-tag.recording-paused > svg {
184
+ display: none;
185
+ }
186
+
187
+ .fcr-state-bar__record-tag.recording-paused .fcr-state-bar__record-text {
188
+ color: var(--fcr_ui_scene_white10);
189
+ }
190
+
191
+ .fcr-state-bar__record-text {
192
+ padding: 0 6px 0 3px;
193
+ white-space: nowrap;
194
+ overflow: hidden;
195
+ text-overflow: ellipsis;
196
+ }
197
+
198
+ .fcr-state-bar__record-buttons {
199
+ height: 28px;
200
+ display: inline-flex;
201
+ align-items: center;
202
+ position: relative;
203
+ }
204
+
205
+ .fcr-state-bar__record-buttons button {
206
+ outline: 0;
207
+ }
208
+
209
+ .fcr-state-bar__record-buttons.recording-paused > .fcr-state-bar__record-split:first-child {
210
+ display: none;
211
+ }
212
+
213
+ .fcr-state-bar__record-split {
214
+ display: inline-block;
215
+ width: 1px;
216
+ height: 100%;
217
+ background: linear-gradient(transparent, var(--fcr_ui_scene_icontext1), transparent);
218
+ }
219
+
220
+ .fcr-state-bar__record-btn {
221
+ padding: 3px 6px;
222
+ }
223
+
224
+ .fcr-state-bar__record-btn:focus {
225
+ outline: 0px;
226
+ }
227
+
228
+ .fcr-state-bar__record-btn:hover {
229
+ background-color: var(--fcr_web_ui_scene_hover);
230
+ }
231
+
232
+ .fcr-state-bar__record-btn:hover svg path {
233
+ fill: var(--fcr_web_ui_scene_mainicon2);
234
+ }
235
+
236
+ @media (max-width: 575px) {
237
+ .fcr-state-bar__record-tag {
238
+ padding-right: 4px;
239
+ }
240
+ .fcr-state-bar__record-text {
241
+ display: none;
242
+ }
243
+ .fcr-state-bar__record-buttons {
244
+ display: none;
245
+ }
246
+ .fcr-state-bar__record-tag.recording-paused > svg {
247
+ display: inline-block;
248
+ color: var(--fcr_ui_scene_icontext1);
249
+ }
250
+ .fcr-layout-config__dropdown-icon {
251
+ display: none;
252
+ }
253
+ .fcr-layout-config div {
254
+ display: none;
255
+ }
256
+ }
257
+
258
+ .fcr-state-bar__time {
259
+ }
260
+
261
+ .fcr-state-bar__layout {
262
+ }
263
+
264
+ .fcr-state-bar__full-screen,
265
+ .fcr-sate-bar__subtitles-history-state {
266
+ border-radius: var(--fcr_cornerradius_xxs);
267
+ border: 1px solid var(--fcr_ui_scene_line1);
268
+ padding: 2px;
269
+ cursor: pointer;
270
+ background: var(--fcr_web_ui_scene_fill2);
271
+ }
272
+ .fcr-state-bar__full-screen:hover,
273
+ .fcr-sate-bar__subtitles-history-state:hover {
274
+ background: var(--fcr_web_ui_scene_hover);
275
+ }
276
+ .fcr-state-bar__full-screen:hover .fcr-state-bar__full-screen-icon path {
277
+ fill: var(--fcr_web_ui_scene_mainicon2);
278
+ }
279
+
280
+ .fcr-state-bar__full-screen-icon path {
281
+ fill: var(--fcr_web_ui_scene_mainicon1);
282
+ }
283
+
284
+ .fcr-sate-bar__subtitles-history-state__animation {
285
+ animation: fcr-sate-bar__subtitles-history-state__animation 1.5s 0.5s 1 linear;
286
+ }
287
+
288
+ @keyframes fcr-sate-bar__subtitles-history-state__animation {
289
+ 0% {
290
+ background: var(--fcr_ui_scene_ramp_brand1);
291
+ }
292
+ 25% {
293
+ background: var(--fcr_ui_scene_ramp_brand2);
294
+ }
295
+ 50% {
296
+ background: var(--fcr_ui_scene_ramp_brand1);
297
+ }
298
+ 75% {
299
+ background: var(--fcr_ui_scene_ramp_brand2);
300
+ }
301
+ 100% {
302
+ background: var(--fcr_web_ui_scene_fill2);
303
+ }
304
+ }
305
+
306
+ .fcr-subtitles-history-state-panel {
307
+ padding: 15px;
308
+ text-align: left;
309
+ color: var(--fcr_ui_scene_icontext1);
310
+ }
311
+ .fcr-subtitles-history-state-panel__title {
312
+ font-size: 14px;
313
+ line-height: 20px;
314
+ font-weight: var(--fcr_font_weight_m);
315
+ margin-bottom: 12px;
316
+ }
317
+ .fcr-subtitles-history-state-panel__text {
318
+ font-size: 12px;
319
+ line-height: 16px;
320
+ margin-bottom: 12px;
321
+ }
322
+ .fcr-subtitles-history-state-panel__actions {
323
+ display: flex;
324
+ align-items: center;
325
+ column-gap: 8px;
326
+ }
327
+ .fcr-subtitles-history-state-panel__actions button {
328
+ border-radius: var(--fcr_cornerradius_xs);
329
+ }
330
+ .fcr-subtitles-history-state-panel__actions__left.fcr-button {
331
+ width: 132px;
332
+ padding: 0 10px;
333
+ flex-grow: 1;
334
+ letter-spacing: 4px;
335
+ }
336
+ .fcr-subtitles-history-state-panel__actions__right.fcr-button {
337
+ min-width: 32px;
338
+ padding: 0;
339
+ background: var(--fcr_ui_scene_ramp_red6);
340
+ /* fcr-button 上的 border 属性为 important,此处不需要显示borer,故将其覆盖。 */
341
+ border-color: transparent !important;
342
+ }
343
+ .fcr-subtitles-history-state-panel__actions__right.fcr-button:hover {
344
+ background: var(--fcr_ui_scene_ramp_red6);
345
+ }
346
+
347
+ /* network-quality */
348
+ .fcr-network-quality {
349
+ }
350
+
351
+ /* meeting-time */
352
+ .fcr-meeting-time {
353
+ border-radius: var(--fcr_cornerradius_xxs);
354
+ height: 28px;
355
+ padding: 0 10px;
356
+ font-size: 12px;
357
+ line-height: 100%;
358
+ font-weight: 700;
359
+ cursor: pointer;
360
+ transition: all 0.2s ease;
361
+ display: flex;
362
+ align-items: center;
363
+ column-gap: 5px;
364
+ }
365
+ .fcr-meeting-time__icon path {
366
+ transition: all 0.2s ease;
367
+ }
368
+
369
+ .fcr-meeting-time--normal {
370
+ border: 1px solid var(--fcr_ui_scene_line2);
371
+ color: var(--fcr_web_ui_scene_mainicon1);
372
+ background: var(--fcr_web_ui_scene_fill2);
373
+ }
374
+ .fcr-meeting-time--normal .fcr-meeting-time__icon path {
375
+ fill: var(--fcr_web_ui_scene_mainicon1);
376
+ }
377
+ .fcr-meeting-time--normal:hover {
378
+ border: 1px solid var(--fcr_web_ui_scene_hover);
379
+ background: var(--fcr_web_ui_scene_hover);
380
+ color: var(--fcr_web_ui_scene_mainicon2);
381
+ }
382
+ .fcr-meeting-time--normal:hover .fcr-meeting-time__icon path {
383
+ fill: var(--fcr_web_ui_scene_mainicon2);
384
+ }
385
+
386
+ .fcr-meeting-time--soon2end {
387
+ border: 1px solid var(--fcr_ui_scene_ramp_yellow6);
388
+ color: var(--fcr_ui_scene_ramp_yellow6);
389
+ background: var(--fcr_web_ui_scene_fill2);
390
+ }
391
+ .fcr-meeting-time--soon2end .fcr-meeting-time__icon path {
392
+ fill: var(--fcr_ui_scene_ramp_yellow6);
393
+ }
394
+ .fcr-meeting-time--soon2end:hover {
395
+ border: 1px solid var(--fcr_ui_scene_ramp_yellow6);
396
+ background: var(--fcr_ui_scene_ramp_yellow6);
397
+ color: var(--fcr_ui_scene_white10);
398
+ }
399
+ .fcr-meeting-time--soon2end:hover .fcr-meeting-time__icon path {
400
+ fill: var(--fcr_ui_scene_white10);
401
+ }
402
+
403
+ .fcr-meeting-time--overtime {
404
+ border: 1px solid var(--fcr_ui_scene_ramp_red6);
405
+ color: var(--fcr_ui_scene_ramp_red6);
406
+ background: var(--fcr_web_ui_scene_fill2);
407
+ }
408
+ .fcr-meeting-time--overtime .fcr-meeting-time__icon path {
409
+ fill: var(--fcr_ui_scene_ramp_red6);
410
+ }
411
+ .fcr-meeting-time--overtime:hover {
412
+ border: 1px solid var(--fcr_ui_scene_ramp_red6);
413
+ background: var(--fcr_ui_scene_ramp_red6);
414
+ color: var(--fcr_ui_scene_white10);
415
+ }
416
+ .fcr-meeting-time--overtime:hover .fcr-meeting-time__icon path {
417
+ fill: var(--fcr_ui_scene_white10);
418
+ }
419
+
420
+ /* layout-config */
421
+ .fcr-layout-config {
422
+ border-radius: var(--fcr_cornerradius_xxs);
423
+ border: 1px solid var(--fcr_ui_scene_line2);
424
+ height: 28px;
425
+ padding: 0 4px;
426
+ font-size: 12px;
427
+ line-height: 100%;
428
+ font-weight: 700;
429
+ color: var(--fcr_web_ui_scene_mainicon1);
430
+ cursor: pointer;
431
+ background: var(--fcr_web_ui_scene_fill2);
432
+ transition: all 0.2s ease;
433
+ display: flex;
434
+ align-items: center;
435
+ }
436
+
437
+ .fcr-layout-config:hover {
438
+ color: var(--fcr_web_ui_scene_mainicon2);
439
+ background: var(--fcr_web_ui_scene_hover);
440
+ }
441
+
442
+ .fcr-layout-config:hover .fcr-layout-config__layout-icon path,
443
+ .fcr-layout-config:hover .fcr-layout-config__dropdown-icon path {
444
+ fill: var(--fcr_web_ui_scene_mainicon2);
445
+ }
446
+
447
+ .fcr-layout-config__layout-icon path {
448
+ fill: var(--fcr_web_ui_scene_mainicon1);
449
+ transition: all 0.2s ease;
450
+ }
451
+
452
+ .fcr-layout-config__dropdown-icon {
453
+ transition: all 0.2s ease;
454
+ transform-origin: center;
455
+ transform: rotate(0deg);
456
+ }
457
+
458
+ .fcr-layout-config__dropdown-icon.is-open {
459
+ transform: rotate(180deg);
460
+ }
461
+
462
+ .fcr-layout-config__dropdown-icon path {
463
+ fill: var(--fcr_web_ui_scene_mainicon1);
464
+ transition: all 0.2s ease;
465
+ }
466
+
467
+ .fcr-layout-config__popover .fcr-tooltip-inner {
468
+ border-radius: var(--fcr_cornerradius_l);
469
+ border: 1px solid var(--fcr_ui_scene_line1);
470
+ background: var(--fcr_mobile_ui_scene_color_popup_fill2);
471
+ box-shadow: var(--fcr_web_light_dropup_m) !important;
472
+ width: 120px !important;
473
+ }
474
+
475
+ .fcr-layout-config-panel {
476
+ padding: 0 12px;
477
+ }
478
+
479
+ .fcr-layout-config-panel__option {
480
+ margin-top: 15px;
481
+ }
482
+ .fcr-layout-config-panel__option.is-active .fcr-layout-config-panel__option-layout-inner {
483
+ border-color: var(--fcr_ui_scene_ramp_brand6);
484
+ }
485
+
486
+ .fcr-layout-config-panel__option-layout {
487
+ border-radius: var(--fcr_cornerradius_m);
488
+ border: 1px solid transparent;
489
+ padding: 2px;
490
+ cursor: pointer;
491
+ transition: all 0.2s ease;
492
+ }
493
+
494
+ .fcr-layout-config-panel__option:not(.is-active) .fcr-layout-config-panel__option-layout:hover {
495
+ border-color: var(--fcr_ui_scene_ramp_brand6);
496
+ }
497
+
498
+ .fcr-layout-config-panel__option-layout-inner {
499
+ border-radius: var(--fcr_cornerradius_s);
500
+ border: 5px solid var(--fcr_web_ui_scene_fill4_popup);
501
+ transition: all 0.2s ease;
502
+ }
503
+
504
+ .fcr-layout-config-panel__option-layout-img-wrapper {
505
+ border-radius: var(--fcr_cornerradius_xs);
506
+ padding: 6px 0;
507
+ background: var(--fcr_web_ui_scene_fill2);
508
+ display: flex;
509
+ justify-content: center;
510
+ }
511
+
512
+ .fcr-layout-config-panel__option-layout-img {
513
+ width: 68px;
514
+ height: 38px;
515
+ }
516
+
517
+ .fcr-layout-config-panel__option-text {
518
+ margin-top: 3px;
519
+ font-size: 12px;
520
+ line-height: 100%;
521
+ font-weight: 400;
522
+ color: var(--fcr_ui_scene_icontext1);
523
+ }
524
+
525
+ .fcr-layout-config-panel__divider {
526
+ margin-top: 17px;
527
+ margin-bottom: 8px;
528
+ width: 100%;
529
+ height: 1px;
530
+ background: var(--fcr_ui_scene_line1, #e3e7ef);
531
+ }
532
+
533
+ .fcr-layout-config-panel__setting {
534
+ margin-bottom: 10px;
535
+ border-radius: var(--fcr_cornerradius_xxs);
536
+ padding: 9px 0;
537
+ font-size: 12px;
538
+ line-height: 100%;
539
+ font-weight: 400;
540
+ color: var(--fcr_ui_scene_icontext1);
541
+ cursor: pointer;
542
+ transition: all 0.2s ease;
543
+ }
544
+
545
+ .fcr-layout-config-panel__setting:hover {
546
+ background: var(--fcr_web_ui_scene_hover);
547
+ color: var(--fcr_web_ui_scene_mainicon2);
548
+ }
549
+
550
+ /* */
551
+ .fcr-state-bar__popover .fcr-tooltip-inner {
552
+ border-radius: var(--fcr_cornerradius_l);
553
+ border: 1px solid var(--fcr_ui_scene_line1);
554
+ background: var(--fcr_mobile_ui_scene_color_popup_fill2);
555
+ box-shadow: var(--fcr_web_light_dropup_m) !important;
556
+ width: fit-content !important;
557
+ }
558
+
559
+ .fcr-state-bar__meeting-info {
560
+ font-size: 12px;
561
+ color: var(--fcr_ui_scene_icontext1);
562
+ }
563
+
564
+ .fcr-state-bar__live-streaming-info {
565
+ font-size: 12px;
566
+ color: var(--fcr_ui_scene_icontext1);
567
+ display: flex;
568
+ align-items: center;
569
+ border: 1px solid var(--fcr_ui_scene_line1);
570
+ background-color: var(--fcr_web_ui_scene_fill2);
571
+ border-radius: var(--fcr_cornerradius_xxs);
572
+ padding-right: 4px;
573
+ height: 28px;
574
+ overflow: hidden;
575
+ }
576
+ .fcr-state-bar__live-streaming-info-live-icon {
577
+ background-color: var(--fcr_ui_scene_ramp_red6);
578
+ border-radius: var(--fcr_cornerradius_xxs);
579
+ min-width: 74px;
580
+ height: 28px;
581
+ display: flex;
582
+ align-items: center;
583
+ padding: 4px;
584
+ }
585
+ .fcr-state-bar__live-streaming-info-live-icon.small {
586
+ min-width: 51px;
587
+ justify-content: center;
588
+ }
589
+
590
+ .fcr-state-bar__meeting-info {
591
+ font-size: 12px;
592
+ color: var(--fcr_ui_scene_icontext1);
593
+ }
594
+
595
+ .fcr-state-bar__meeting-info-drop .fcr-drop-menu {
596
+ width: 100%;
597
+ border: 1px solid var(--fcr_ui_scene_line1);
598
+ box-shadow: var(--fcr_web_light_dropup_m);
599
+ }
600
+ .fcr-state-bar__meeting-info-drop .fcr-drop-menu-option-text {
601
+ overflow: hidden;
602
+ text-overflow: ellipsis;
603
+ white-space: nowrap;
604
+ }
605
+ .fcr-state-bar__live-streaming-info {
606
+ font-size: 12px;
607
+ color: var(--fcr_ui_scene_icontext1);
608
+ display: flex;
609
+ align-items: center;
610
+ border: 1px solid var(--fcr_ui_scene_line1);
611
+ background-color: var(--fcr_web_ui_scene_fill2);
612
+ border-radius: var(--fcr_cornerradius_xxs);
613
+ padding-right: 4px;
614
+ height: 28px;
615
+ overflow: hidden;
616
+ }
617
+ .fcr-state-bar__live-streaming-info-live-icon {
618
+ background-color: var(--fcr_ui_scene_ramp_red6);
619
+ border-radius: var(--fcr_cornerradius_xxs);
620
+ min-width: 74px;
621
+ height: 28px;
622
+ display: flex;
623
+ align-items: center;
624
+ padding: 4px;
625
+ }
626
+ .fcr-state-bar__live-streaming-info-text {
627
+ max-width: 230px;
628
+ white-space: nowrap;
629
+ margin-left: 6px;
630
+ overflow: hidden;
631
+ }
632
+ .fcr-state-bar__live-streaming-info-icon {
633
+ transform: rotate(180deg);
634
+ }
635
+ .fcr-state-bar__info-detail:hover .fcr-state-bar__lock-meeting-text,
636
+ .fcr-state-bar__info-meeting-id:hover {
637
+ color: var(--fcr_web_ui_scene_mainicon2);
638
+ }
639
+ .fcr-state-bar__info-detail:hover .fcr-state-bar__info-detail-icon path {
640
+ fill: var(--fcr_web_ui_scene_mainicon2);
641
+ }
642
+ .fcr-state-bar__lock-meeting-text {
643
+ min-width: 50px;
644
+ }
645
+ /* .fcr-state-bar__meeting-info {
646
+ min-width: 120px;
647
+ } */
648
+ .fcr-state-bar__lock-meeting-text {
649
+ min-width: 50px;
650
+ }
651
+
652
+ @media (max-width: 825px) {
653
+ .fcr-state-bar__record-tag {
654
+ padding-right: 4px;
655
+ }
656
+
657
+ .fcr-state-bar__record-text {
658
+ display: none;
659
+ }
660
+
661
+ .fcr-state-bar__record-buttons {
662
+ display: none;
663
+ }
664
+
665
+ .fcr-state-bar__record-tag.recording-paused > svg {
666
+ display: inline-block;
667
+ color: var(--fcr_ui_scene_icontext1);
668
+ }
669
+
670
+ .fcr-layout-config__dropdown-icon {
671
+ display: none;
672
+ }
673
+
674
+ .fcr-layout-config div {
675
+ display: none;
676
+ }
677
+ .fcr-state-bar__info-meeting-id {
678
+ display: none;
679
+ }
680
+ .fcr-meeting-time {
681
+ display: none;
682
+ }
683
+ /* .fcr-state-bar__live-streaming {
684
+ display: none;
685
+ } */
686
+ .fcr-state-bar__live-streaming-info {
687
+ padding: 0;
688
+ }
689
+ .fcr-state-bar__live-streaming-info-live-icon {
690
+ min-width: 51px;
691
+ justify-content: center;
692
+ }
693
+ .fcr-state-bar__live-streaming-info img,
694
+ .fcr-state-bar__live-streaming-info [data-label='fcr_dropup4'],
695
+ .fcr-state-bar__live-streaming-info-text {
696
+ display: none;
697
+ }
698
+ }
699
+
700
+ .layout-set-options-item-disable .fcr-layout-config-panel__option-text {
701
+ color: var(--fcr_ui_scene_icontext3);
702
+ }
703
+
704
+ .layout-set-options-item-disable .fcr-layout-config-panel__option-layout-img-wrapper {
705
+ opacity: 0.5;
706
+ }