@stream-io/video-react-sdk 0.3.30 → 0.3.31
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.
- package/CHANGELOG.md +12 -0
- package/README.md +1 -0
- package/dist/css/styles.css +649 -642
- package/dist/css/styles.css.map +1 -1
- package/dist/src/components/CallPreview/CallPreview.d.ts +12 -0
- package/dist/src/components/CallPreview/CallPreview.js +21 -0
- package/dist/src/components/CallPreview/CallPreview.js.map +1 -0
- package/dist/src/components/CallPreview/index.d.ts +1 -0
- package/dist/src/components/CallPreview/index.js +2 -0
- package/dist/src/components/CallPreview/index.js.map +1 -0
- package/dist/src/components/index.d.ts +1 -0
- package/dist/src/components/index.js +1 -0
- package/dist/src/components/index.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +4 -4
- package/src/components/CallPreview/CallPreview.tsx +40 -0
- package/src/components/CallPreview/index.ts +1 -0
- package/src/components/index.ts +1 -0
package/dist/css/styles.css
CHANGED
|
@@ -293,6 +293,242 @@
|
|
|
293
293
|
background-color: var(--str-video__background-color1);
|
|
294
294
|
}
|
|
295
295
|
|
|
296
|
+
.str-video__livestream-layout__wrapper {
|
|
297
|
+
flex-grow: 1;
|
|
298
|
+
overflow-y: hidden;
|
|
299
|
+
display: flex;
|
|
300
|
+
justify-content: center;
|
|
301
|
+
width: 100%;
|
|
302
|
+
height: 100%;
|
|
303
|
+
position: relative;
|
|
304
|
+
}
|
|
305
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__screen-share {
|
|
306
|
+
max-width: 100%;
|
|
307
|
+
}
|
|
308
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__screen-share .str-video__video {
|
|
309
|
+
object-fit: contain;
|
|
310
|
+
}
|
|
311
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__floating-participant {
|
|
312
|
+
position: absolute;
|
|
313
|
+
width: 240px;
|
|
314
|
+
height: 135px;
|
|
315
|
+
box-shadow: var(--str-video__background-color1) 0 0 3px 0;
|
|
316
|
+
}
|
|
317
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__floating-participant--top-right {
|
|
318
|
+
top: 8px;
|
|
319
|
+
right: 8px;
|
|
320
|
+
}
|
|
321
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__floating-participant--top-left {
|
|
322
|
+
top: 8px;
|
|
323
|
+
left: 8px;
|
|
324
|
+
}
|
|
325
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__floating-participant--bottom-right {
|
|
326
|
+
bottom: 8px;
|
|
327
|
+
right: 8px;
|
|
328
|
+
}
|
|
329
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__floating-participant--bottom-left {
|
|
330
|
+
bottom: 8px;
|
|
331
|
+
left: 8px;
|
|
332
|
+
}
|
|
333
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay {
|
|
334
|
+
position: absolute;
|
|
335
|
+
height: 100%;
|
|
336
|
+
width: 100%;
|
|
337
|
+
display: flex;
|
|
338
|
+
flex-direction: column-reverse;
|
|
339
|
+
}
|
|
340
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay:hover .str-video__livestream-layout__overlay__bar {
|
|
341
|
+
background-color: var(--str-video__livestream-overlay-color-hovered);
|
|
342
|
+
}
|
|
343
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__overlay__bar {
|
|
344
|
+
height: 10%;
|
|
345
|
+
min-height: 40px;
|
|
346
|
+
max-height: 70px;
|
|
347
|
+
position: relative;
|
|
348
|
+
bottom: 0;
|
|
349
|
+
border-bottom-left-radius: var(--str-video__border-radius-sm);
|
|
350
|
+
border-bottom-right-radius: var(--str-video__border-radius-sm);
|
|
351
|
+
background-color: var(--str-video__livestream-overlay-color);
|
|
352
|
+
display: flex;
|
|
353
|
+
align-items: center;
|
|
354
|
+
padding: 0 20px;
|
|
355
|
+
}
|
|
356
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__live-badge {
|
|
357
|
+
padding: 4px 8px;
|
|
358
|
+
border-radius: var(--str-video__border-radius-xxs);
|
|
359
|
+
background-color: var(--str-video__primary-color);
|
|
360
|
+
color: var(--str-video__text-color1);
|
|
361
|
+
}
|
|
362
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__viewers-count {
|
|
363
|
+
padding: 4px 8px;
|
|
364
|
+
}
|
|
365
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__viewers-count::before {
|
|
366
|
+
content: var(--str-video__icon--livestream-viewers);
|
|
367
|
+
margin-right: 3px;
|
|
368
|
+
vertical-align: middle;
|
|
369
|
+
}
|
|
370
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__speaker-name {
|
|
371
|
+
flex: 1;
|
|
372
|
+
font-size: 13px;
|
|
373
|
+
text-overflow: ellipsis;
|
|
374
|
+
overflow: hidden;
|
|
375
|
+
white-space: nowrap;
|
|
376
|
+
}
|
|
377
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__duration {
|
|
378
|
+
flex: 1;
|
|
379
|
+
text-align: center;
|
|
380
|
+
}
|
|
381
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__go-fullscreen {
|
|
382
|
+
background: var(--str-video__icon--fullscreen) center no-repeat;
|
|
383
|
+
border-radius: var(--str-video__border-radius-xxs);
|
|
384
|
+
cursor: pointer;
|
|
385
|
+
width: 32px;
|
|
386
|
+
height: 32px;
|
|
387
|
+
}
|
|
388
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__go-fullscreen:hover {
|
|
389
|
+
background-color: var(--str-video__overlay-color);
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.str-video__paginated-grid-layout__wrapper {
|
|
393
|
+
flex-grow: 1;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.str-video__paginated-grid-layout {
|
|
397
|
+
display: flex;
|
|
398
|
+
height: 100%;
|
|
399
|
+
align-items: center;
|
|
400
|
+
justify-content: space-between;
|
|
401
|
+
}
|
|
402
|
+
.str-video__paginated-grid-layout .str-video__paginated-grid-layout__group {
|
|
403
|
+
display: flex;
|
|
404
|
+
flex-wrap: wrap;
|
|
405
|
+
gap: 8px;
|
|
406
|
+
justify-content: center;
|
|
407
|
+
max-width: 110vh;
|
|
408
|
+
padding-inline: 1.25rem;
|
|
409
|
+
margin: auto;
|
|
410
|
+
width: 100%;
|
|
411
|
+
}
|
|
412
|
+
.str-video__paginated-grid-layout .str-video__paginated-grid-layout__group .str-video__participant-view {
|
|
413
|
+
flex: 0 1 calc(25% - 6px);
|
|
414
|
+
}
|
|
415
|
+
.str-video__paginated-grid-layout .str-video__paginated-grid-layout__group.str-video__paginated-grid-layout--one .str-video__participant-view {
|
|
416
|
+
flex: 0 1 calc(100% - 6px);
|
|
417
|
+
}
|
|
418
|
+
.str-video__paginated-grid-layout .str-video__paginated-grid-layout__group.str-video__paginated-grid-layout--two-four .str-video__participant-view {
|
|
419
|
+
flex: 0 1 calc(50% - 6px);
|
|
420
|
+
}
|
|
421
|
+
.str-video__paginated-grid-layout .str-video__paginated-grid-layout__group.str-video__paginated-grid-layout--five-nine .str-video__participant-view {
|
|
422
|
+
flex: 0 1 calc(33% - 6px);
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.str-video__speaker-layout__wrapper {
|
|
426
|
+
flex-grow: 1;
|
|
427
|
+
overflow-y: hidden;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.str-video__speaker-layout {
|
|
431
|
+
display: flex;
|
|
432
|
+
flex-direction: column;
|
|
433
|
+
justify-content: center;
|
|
434
|
+
height: 100%;
|
|
435
|
+
width: 100%;
|
|
436
|
+
gap: 1rem;
|
|
437
|
+
padding-inline: 2px;
|
|
438
|
+
}
|
|
439
|
+
.str-video__speaker-layout .str-video__participant-view {
|
|
440
|
+
aspect-ratio: 16/9;
|
|
441
|
+
}
|
|
442
|
+
.str-video__speaker-layout .str-video__speaker-layout__spotlight {
|
|
443
|
+
display: flex;
|
|
444
|
+
align-items: center;
|
|
445
|
+
justify-content: center;
|
|
446
|
+
min-height: 0;
|
|
447
|
+
}
|
|
448
|
+
.str-video__speaker-layout .str-video__speaker-layout__spotlight .str-video__participant-view--speaking:has(.str-video__video--screen-share) {
|
|
449
|
+
outline: none;
|
|
450
|
+
}
|
|
451
|
+
.str-video__speaker-layout .str-video__speaker-layout__spotlight .str-video__video {
|
|
452
|
+
object-fit: contain;
|
|
453
|
+
}
|
|
454
|
+
.str-video__speaker-layout .str-video__speaker-layout__spotlight .str-video__participant-details,
|
|
455
|
+
.str-video__speaker-layout .str-video__speaker-layout__spotlight .str-video__call-controls__button {
|
|
456
|
+
opacity: 1;
|
|
457
|
+
}
|
|
458
|
+
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-buttons-wrapper {
|
|
459
|
+
position: relative;
|
|
460
|
+
display: flex;
|
|
461
|
+
justify-content: center;
|
|
462
|
+
align-items: center;
|
|
463
|
+
}
|
|
464
|
+
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-buttons-wrapper > .str-video__call-controls__button .str-video__icon {
|
|
465
|
+
width: 1rem;
|
|
466
|
+
height: 1rem;
|
|
467
|
+
}
|
|
468
|
+
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-buttons-wrapper .str-video__speaker-layout__participants-bar--button-left {
|
|
469
|
+
position: absolute;
|
|
470
|
+
left: 0.5rem;
|
|
471
|
+
}
|
|
472
|
+
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-buttons-wrapper .str-video__speaker-layout__participants-bar--button-right {
|
|
473
|
+
position: absolute;
|
|
474
|
+
right: 0.5rem;
|
|
475
|
+
}
|
|
476
|
+
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-buttons-wrapper .str-video__speaker-layout__participants-bar--button-top {
|
|
477
|
+
position: absolute;
|
|
478
|
+
top: 0.5rem;
|
|
479
|
+
}
|
|
480
|
+
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-buttons-wrapper .str-video__speaker-layout__participants-bar--button-bottom {
|
|
481
|
+
position: absolute;
|
|
482
|
+
bottom: 0.5rem;
|
|
483
|
+
}
|
|
484
|
+
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-wrapper {
|
|
485
|
+
scrollbar-width: none;
|
|
486
|
+
}
|
|
487
|
+
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-wrapper::-webkit-scrollbar {
|
|
488
|
+
display: none;
|
|
489
|
+
}
|
|
490
|
+
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-wrapper .str-video__speaker-layout__participants-bar {
|
|
491
|
+
display: flex;
|
|
492
|
+
align-items: center;
|
|
493
|
+
}
|
|
494
|
+
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-wrapper .str-video__speaker-layout__participants-bar .str-video__speaker-layout__participant-tile {
|
|
495
|
+
width: 280px;
|
|
496
|
+
min-width: 280px;
|
|
497
|
+
max-width: 25vh;
|
|
498
|
+
padding: 5px;
|
|
499
|
+
}
|
|
500
|
+
.str-video__speaker-layout--variant-top {
|
|
501
|
+
flex-direction: column-reverse;
|
|
502
|
+
}
|
|
503
|
+
.str-video__speaker-layout--variant-left {
|
|
504
|
+
flex-direction: row-reverse;
|
|
505
|
+
}
|
|
506
|
+
.str-video__speaker-layout--variant-right {
|
|
507
|
+
flex-direction: row;
|
|
508
|
+
}
|
|
509
|
+
.str-video__speaker-layout--variant-left .str-video__speaker-layout__participants-bar-wrapper, .str-video__speaker-layout--variant-right .str-video__speaker-layout__participants-bar-wrapper {
|
|
510
|
+
overflow-y: auto;
|
|
511
|
+
max-height: 100%;
|
|
512
|
+
}
|
|
513
|
+
.str-video__speaker-layout--variant-left .str-video__speaker-layout__participants-bar, .str-video__speaker-layout--variant-right .str-video__speaker-layout__participants-bar {
|
|
514
|
+
flex-direction: column;
|
|
515
|
+
}
|
|
516
|
+
.str-video__speaker-layout--variant-left .str-video__speaker-layout__spotlight, .str-video__speaker-layout--variant-right .str-video__speaker-layout__spotlight {
|
|
517
|
+
width: 100%;
|
|
518
|
+
}
|
|
519
|
+
.str-video__speaker-layout--variant-left .str-video__participant-view, .str-video__speaker-layout--variant-right .str-video__participant-view {
|
|
520
|
+
max-width: unset;
|
|
521
|
+
}
|
|
522
|
+
.str-video__speaker-layout--variant-top .str-video__speaker-layout__participants-bar-wrapper, .str-video__speaker-layout--variant-bottom .str-video__speaker-layout__participants-bar-wrapper {
|
|
523
|
+
overflow-x: auto;
|
|
524
|
+
}
|
|
525
|
+
.str-video__speaker-layout--variant-top .str-video__speaker-layout__participants-bar, .str-video__speaker-layout--variant-bottom .str-video__speaker-layout__participants-bar {
|
|
526
|
+
flex-direction: row;
|
|
527
|
+
}
|
|
528
|
+
.str-video__speaker-layout--variant-top .str-video__participant-view, .str-video__speaker-layout--variant-bottom .str-video__participant-view {
|
|
529
|
+
max-width: 110vh;
|
|
530
|
+
}
|
|
531
|
+
|
|
296
532
|
.str-video__participant-list {
|
|
297
533
|
display: flex;
|
|
298
534
|
flex-direction: column;
|
|
@@ -585,6 +821,13 @@
|
|
|
585
821
|
background-color: var(--str-video__text-color1);
|
|
586
822
|
}
|
|
587
823
|
|
|
824
|
+
.str-video__call-preview {
|
|
825
|
+
width: 100%;
|
|
826
|
+
height: auto;
|
|
827
|
+
display: inline-block;
|
|
828
|
+
object-fit: contain;
|
|
829
|
+
}
|
|
830
|
+
|
|
588
831
|
.str-video__call-recording-list {
|
|
589
832
|
padding: 0.625rem;
|
|
590
833
|
min-width: 300px;
|
|
@@ -964,20 +1207,172 @@
|
|
|
964
1207
|
background-color: var(--str-video__background-color7);
|
|
965
1208
|
}
|
|
966
1209
|
|
|
967
|
-
.str-
|
|
968
|
-
|
|
969
|
-
flex-direction: column;
|
|
970
|
-
align-items: center;
|
|
1210
|
+
.str-video__icon {
|
|
1211
|
+
background-color: var(--str-video__text-color1);
|
|
971
1212
|
}
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
mask-image: var(--str-video__icon--
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
-webkit-mask-
|
|
978
|
-
mask-
|
|
979
|
-
|
|
980
|
-
|
|
1213
|
+
.str-video__icon--chat {
|
|
1214
|
+
mask-image: var(--str-video__icon--chat);
|
|
1215
|
+
-webkit-mask-image: var(--str-video__icon--chat);
|
|
1216
|
+
}
|
|
1217
|
+
.str-video__icon--reactions {
|
|
1218
|
+
-webkit-mask-image: var(--str-video__icon--reactions);
|
|
1219
|
+
mask-image: var(--str-video__icon--reactions);
|
|
1220
|
+
}
|
|
1221
|
+
.str-video__icon--recording-on {
|
|
1222
|
+
mask-image: var(--str-video__icon--recording-on);
|
|
1223
|
+
-webkit-mask-image: var(--str-video__icon--recording-on);
|
|
1224
|
+
background-color: var(--str-video__danger-color);
|
|
1225
|
+
}
|
|
1226
|
+
.str-video__icon--recording-off {
|
|
1227
|
+
mask-image: var(--str-video__icon--recording-off);
|
|
1228
|
+
-webkit-mask-image: var(--str-video__icon--recording-off);
|
|
1229
|
+
}
|
|
1230
|
+
.str-video__icon--screen-share-on {
|
|
1231
|
+
mask-image: var(--str-video__icon--screen-share-on);
|
|
1232
|
+
-webkit-mask-image: var(--str-video__icon--screen-share-on);
|
|
1233
|
+
}
|
|
1234
|
+
.str-video__icon--screen-share-off {
|
|
1235
|
+
mask-image: var(--str-video__icon--screen-share-off);
|
|
1236
|
+
-webkit-mask-image: var(--str-video__icon--screen-share-off);
|
|
1237
|
+
}
|
|
1238
|
+
.str-video__icon--caret-down {
|
|
1239
|
+
transform: rotate(180deg);
|
|
1240
|
+
mask-image: var(--str-video__icon--caret);
|
|
1241
|
+
-webkit-mask-image: var(--str-video__icon--caret);
|
|
1242
|
+
}
|
|
1243
|
+
.str-video__icon--caret-up {
|
|
1244
|
+
mask-image: var(--str-video__icon--caret);
|
|
1245
|
+
-webkit-mask-image: var(--str-video__icon--caret);
|
|
1246
|
+
}
|
|
1247
|
+
.str-video__icon--caret-right {
|
|
1248
|
+
transform: rotate(90deg);
|
|
1249
|
+
mask-image: var(--str-video__icon--caret);
|
|
1250
|
+
-webkit-mask-image: var(--str-video__icon--caret);
|
|
1251
|
+
}
|
|
1252
|
+
.str-video__icon--caret-left {
|
|
1253
|
+
transform: rotate(-90deg);
|
|
1254
|
+
mask-image: var(--str-video__icon--caret);
|
|
1255
|
+
-webkit-mask-image: var(--str-video__icon--caret);
|
|
1256
|
+
}
|
|
1257
|
+
.str-video__icon--close {
|
|
1258
|
+
mask-image: var(--str-video__icon--close);
|
|
1259
|
+
-webkit-mask-image: var(--str-video__icon--close);
|
|
1260
|
+
}
|
|
1261
|
+
.str-video__icon--mic {
|
|
1262
|
+
mask-image: var(--str-video__icon--mic);
|
|
1263
|
+
-webkit-mask-image: var(--str-video__icon--mic);
|
|
1264
|
+
}
|
|
1265
|
+
.str-video__icon--mic-off {
|
|
1266
|
+
mask-image: var(--str-video__icon--mic-off);
|
|
1267
|
+
-webkit-mask-image: var(--str-video__icon--mic-off);
|
|
1268
|
+
}
|
|
1269
|
+
.str-video__icon--camera {
|
|
1270
|
+
mask-image: var(--str-video__icon--camera);
|
|
1271
|
+
-webkit-mask-image: var(--str-video__icon--camera);
|
|
1272
|
+
}
|
|
1273
|
+
.str-video__icon--camera-off {
|
|
1274
|
+
mask-image: var(--str-video__icon--camera-off);
|
|
1275
|
+
-webkit-mask-image: var(--str-video__icon--camera-off);
|
|
1276
|
+
}
|
|
1277
|
+
.str-video__icon--camera-off-outline {
|
|
1278
|
+
mask-image: var(--str-video__icon--camera-off-outline);
|
|
1279
|
+
-webkit-mask-image: var(--str-video__icon--camera-off-outline);
|
|
1280
|
+
}
|
|
1281
|
+
.str-video__icon--call-end {
|
|
1282
|
+
mask-image: var(--str-video__icon--call-end);
|
|
1283
|
+
-webkit-mask-image: var(--str-video__icon--call-end);
|
|
1284
|
+
}
|
|
1285
|
+
.str-video__icon--call-accept {
|
|
1286
|
+
mask-image: var(--str-video__icon--call-accept);
|
|
1287
|
+
-webkit-mask-image: var(--str-video__icon--call-accept);
|
|
1288
|
+
}
|
|
1289
|
+
.str-video__icon--info {
|
|
1290
|
+
-webkit-mask-image: var(--str-video__icon--info-icon);
|
|
1291
|
+
mask-image: var(--str-video__icon--info-icon);
|
|
1292
|
+
}
|
|
1293
|
+
.str-video__icon--info-document {
|
|
1294
|
+
-webkit-mask-image: var(--str-video__icon--info-document);
|
|
1295
|
+
mask-image: var(--str-video__icon--info-document);
|
|
1296
|
+
}
|
|
1297
|
+
.str-video__icon--stats {
|
|
1298
|
+
-webkit-mask-image: var(--str-video__icon--stats);
|
|
1299
|
+
mask-image: var(--str-video__icon--stats);
|
|
1300
|
+
}
|
|
1301
|
+
.str-video__icon--participants {
|
|
1302
|
+
mask-image: var(--str-video__icon--participants);
|
|
1303
|
+
-webkit-mask-image: var(--str-video__icon--participants);
|
|
1304
|
+
}
|
|
1305
|
+
.str-video__icon--user-plus {
|
|
1306
|
+
mask-image: var(--str-video__icon--user-plus);
|
|
1307
|
+
-webkit-mask-image: var(--str-video__icon--user-plus);
|
|
1308
|
+
}
|
|
1309
|
+
.str-video__icon--speaker {
|
|
1310
|
+
mask-image: var(--str-video__icon--speaker);
|
|
1311
|
+
-webkit-mask-image: var(--str-video__icon--speaker);
|
|
1312
|
+
}
|
|
1313
|
+
.str-video__icon--ellipsis {
|
|
1314
|
+
mask-image: var(--str-video__icon--ellipsis);
|
|
1315
|
+
-webkit-mask-image: var(--str-video__icon--ellipsis);
|
|
1316
|
+
}
|
|
1317
|
+
.str-video__icon--grid {
|
|
1318
|
+
mask-image: var(--str-video__icon--grid);
|
|
1319
|
+
-webkit-mask-image: var(--str-video__icon--grid);
|
|
1320
|
+
}
|
|
1321
|
+
.str-video__icon--pin {
|
|
1322
|
+
mask-image: var(--str-video__icon--pin);
|
|
1323
|
+
-webkit-mask-image: var(--str-video__icon--pin);
|
|
1324
|
+
}
|
|
1325
|
+
.str-video__icon--no-audio {
|
|
1326
|
+
mask-image: var(--str-video__icon--no-audio);
|
|
1327
|
+
-webkit-mask-image: var(--str-video__icon--no-audio);
|
|
1328
|
+
}
|
|
1329
|
+
.str-video__icon--not-allowed {
|
|
1330
|
+
mask-image: var(--str-video__icon--not-allowed);
|
|
1331
|
+
-webkit-mask-image: var(--str-video__icon--not-allowed);
|
|
1332
|
+
}
|
|
1333
|
+
.str-video__icon--call-recordings {
|
|
1334
|
+
mask-image: var(--str-video__icon--film-roll);
|
|
1335
|
+
-webkit-mask-image: var(--str-video__icon--film-roll);
|
|
1336
|
+
}
|
|
1337
|
+
.str-video__icon--device-settings {
|
|
1338
|
+
mask-image: var(--str-video__icon--settings);
|
|
1339
|
+
-webkit-mask-image: var(--str-video__icon--settings);
|
|
1340
|
+
}
|
|
1341
|
+
.str-video__icon--filter {
|
|
1342
|
+
mask-image: var(--str-video__icon--filter);
|
|
1343
|
+
-webkit-mask-image: var(--str-video__icon--filter);
|
|
1344
|
+
}
|
|
1345
|
+
.str-video__icon--refresh {
|
|
1346
|
+
mask-image: var(--str-video__icon--refresh);
|
|
1347
|
+
-webkit-mask-image: var(--str-video__icon--refresh);
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
.str-video__icon {
|
|
1351
|
+
mask-repeat: no-repeat;
|
|
1352
|
+
-webkit-mask-repeat: no-repeat;
|
|
1353
|
+
mask-position: center;
|
|
1354
|
+
-webkit-mask-position: center;
|
|
1355
|
+
mask-size: contain;
|
|
1356
|
+
-webkit-mask-size: contain;
|
|
1357
|
+
display: block;
|
|
1358
|
+
width: 1.375rem;
|
|
1359
|
+
height: 1.375rem;
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
.str-video__loading-indicator {
|
|
1363
|
+
display: flex;
|
|
1364
|
+
flex-direction: column;
|
|
1365
|
+
align-items: center;
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
.str-video__loading-indicator__icon.spinner {
|
|
1369
|
+
mask-image: var(--str-video__icon--loading);
|
|
1370
|
+
-webkit-mask-image: var(--str-video__icon--loading);
|
|
1371
|
+
mask-repeat: no-repeat;
|
|
1372
|
+
-webkit-mask-repeat: no-repeat;
|
|
1373
|
+
mask-position: center;
|
|
1374
|
+
-webkit-mask-position: center;
|
|
1375
|
+
mask-size: 1rem;
|
|
981
1376
|
-webkit-mask-size: 1rem;
|
|
982
1377
|
background-color: var(--str-video__text-color2);
|
|
983
1378
|
animation: rotation 1s linear infinite;
|
|
@@ -1085,72 +1480,149 @@
|
|
|
1085
1480
|
font-size: 0.75rem;
|
|
1086
1481
|
}
|
|
1087
1482
|
|
|
1088
|
-
.str-
|
|
1089
|
-
|
|
1090
|
-
flex-direction: column;
|
|
1091
|
-
align-items: center;
|
|
1092
|
-
justify-content: space-around;
|
|
1093
|
-
width: 400px;
|
|
1094
|
-
height: 300px;
|
|
1095
|
-
padding: 1rem 1rem 0.5rem;
|
|
1096
|
-
gap: 1rem;
|
|
1097
|
-
}
|
|
1098
|
-
|
|
1099
|
-
.str-video__call-panel--ringing .str-video__call-panel__members-list {
|
|
1100
|
-
overflow: hidden;
|
|
1101
|
-
display: flex;
|
|
1102
|
-
align-items: center;
|
|
1103
|
-
}
|
|
1104
|
-
.str-video__call-panel--ringing .str-video__call-panel__members-list .str-video__call-panel__member-box {
|
|
1483
|
+
.str-video__participant-view,
|
|
1484
|
+
.str-video__participant-view--angular-host {
|
|
1105
1485
|
position: relative;
|
|
1486
|
+
width: 100%;
|
|
1487
|
+
max-width: 1280px;
|
|
1488
|
+
max-height: 100%;
|
|
1489
|
+
min-height: 0;
|
|
1490
|
+
aspect-ratio: 4/3;
|
|
1106
1491
|
display: flex;
|
|
1107
|
-
flex-direction: column;
|
|
1108
1492
|
align-items: center;
|
|
1109
1493
|
justify-content: center;
|
|
1110
|
-
|
|
1111
|
-
}
|
|
1112
|
-
.str-video__call-panel--ringing .str-video__call-panel__members-list .str-video__call-panel__member-box .str-video__avatar {
|
|
1113
|
-
width: 80px;
|
|
1114
|
-
height: 80px;
|
|
1494
|
+
border-radius: var(--str-video__border-radius-sm);
|
|
1115
1495
|
}
|
|
1116
|
-
.str-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
padding: 0.125rem 0.375rem;
|
|
1496
|
+
.str-video__participant-view--speaking,
|
|
1497
|
+
.str-video__participant-view--angular-host--speaking {
|
|
1498
|
+
outline: 2px solid var(--str-video__primary-color);
|
|
1120
1499
|
}
|
|
1121
|
-
.str-
|
|
1122
|
-
|
|
1123
|
-
|
|
1500
|
+
.str-video__participant-view .str-video__participant-details,
|
|
1501
|
+
.str-video__participant-view .str-video__call-controls__button,
|
|
1502
|
+
.str-video__participant-view--angular-host .str-video__participant-details,
|
|
1503
|
+
.str-video__participant-view--angular-host .str-video__call-controls__button {
|
|
1504
|
+
transition: opacity 200ms ease-out;
|
|
1505
|
+
opacity: 0.3;
|
|
1506
|
+
color: var(--str-video__text-color1);
|
|
1124
1507
|
}
|
|
1125
|
-
|
|
1126
|
-
.str-video__call-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1508
|
+
.str-video__participant-view:hover .str-video__participant-details,
|
|
1509
|
+
.str-video__participant-view:hover .str-video__call-controls__button,
|
|
1510
|
+
.str-video__participant-view--angular-host:hover .str-video__participant-details,
|
|
1511
|
+
.str-video__participant-view--angular-host:hover .str-video__call-controls__button {
|
|
1512
|
+
opacity: 1;
|
|
1130
1513
|
}
|
|
1131
|
-
|
|
1132
|
-
.str-
|
|
1133
|
-
|
|
1134
|
-
|
|
1514
|
+
.str-video__participant-view > .str-video__call-controls__button,
|
|
1515
|
+
.str-video__participant-view--angular-host > .str-video__call-controls__button {
|
|
1516
|
+
position: absolute;
|
|
1517
|
+
top: 0.875rem;
|
|
1518
|
+
right: 0.875rem;
|
|
1519
|
+
padding: 0.3rem;
|
|
1135
1520
|
}
|
|
1136
|
-
.str-
|
|
1137
|
-
|
|
1521
|
+
.str-video__participant-view .str-video__participant-details,
|
|
1522
|
+
.str-video__participant-view--angular-host .str-video__participant-details {
|
|
1138
1523
|
position: absolute;
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
-webkit-mask-composite: xor;
|
|
1145
|
-
mask-composite: exclude;
|
|
1524
|
+
left: 0.875rem;
|
|
1525
|
+
bottom: 0.875rem;
|
|
1526
|
+
display: flex;
|
|
1527
|
+
align-items: center;
|
|
1528
|
+
gap: 0.3125rem;
|
|
1146
1529
|
}
|
|
1147
|
-
.str-
|
|
1530
|
+
.str-video__participant-view .str-video__participant-details .str-video__participant-details__name,
|
|
1531
|
+
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__name {
|
|
1532
|
+
border-radius: var(--str-video__border-radius-xs);
|
|
1148
1533
|
background-color: var(--str-video__background-color4);
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1534
|
+
display: flex;
|
|
1535
|
+
align-items: center;
|
|
1536
|
+
gap: 0.3125rem;
|
|
1537
|
+
padding: 4px 6px;
|
|
1538
|
+
white-space: nowrap;
|
|
1539
|
+
overflow: hidden;
|
|
1540
|
+
text-overflow: ellipsis;
|
|
1541
|
+
}
|
|
1542
|
+
.str-video__participant-view .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--audio-muted,
|
|
1543
|
+
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--audio-muted {
|
|
1544
|
+
width: 1rem;
|
|
1545
|
+
height: 1rem;
|
|
1546
|
+
mask-size: 1rem;
|
|
1547
|
+
-webkit-mask-size: 1rem;
|
|
1548
|
+
background-color: var(--str-video__text-color1);
|
|
1549
|
+
mask-image: var(--str-video__icon--mic-off);
|
|
1550
|
+
-webkit-mask-image: var(--str-video__icon--mic-off);
|
|
1551
|
+
}
|
|
1552
|
+
.str-video__participant-view .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--dominant_speaker,
|
|
1553
|
+
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--dominant_speaker {
|
|
1554
|
+
width: 1rem;
|
|
1555
|
+
height: 1rem;
|
|
1556
|
+
mask-size: 1rem;
|
|
1557
|
+
-webkit-mask-size: 1rem;
|
|
1558
|
+
background-color: var(--str-video__text-color1);
|
|
1559
|
+
mask-image: var(--str-video__icon--dominant-speaker);
|
|
1560
|
+
-webkit-mask-image: var(--str-video__icon--dominant-speaker);
|
|
1561
|
+
mask-size: contain;
|
|
1562
|
+
-webkit-mask-size: contain;
|
|
1563
|
+
mask-repeat: no-repeat;
|
|
1564
|
+
-webkit-mask-repeat: no-repeat;
|
|
1565
|
+
mask-position: center;
|
|
1566
|
+
-webkit-mask-position: center;
|
|
1567
|
+
}
|
|
1568
|
+
.str-video__participant-view .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--video-muted,
|
|
1569
|
+
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--video-muted {
|
|
1570
|
+
width: 1rem;
|
|
1571
|
+
height: 1rem;
|
|
1572
|
+
mask-size: 1rem;
|
|
1573
|
+
-webkit-mask-size: 1rem;
|
|
1574
|
+
background-color: var(--str-video__text-color1);
|
|
1575
|
+
mask-image: var(--str-video__icon--camera-off);
|
|
1576
|
+
-webkit-mask-image: var(--str-video__icon--camera-off);
|
|
1577
|
+
}
|
|
1578
|
+
.str-video__participant-view .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--pinned,
|
|
1579
|
+
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--pinned {
|
|
1580
|
+
width: 1rem;
|
|
1581
|
+
height: 1rem;
|
|
1582
|
+
mask-size: 1rem;
|
|
1583
|
+
-webkit-mask-size: 1rem;
|
|
1584
|
+
background-color: var(--str-video__text-color1);
|
|
1585
|
+
width: 0.8rem;
|
|
1586
|
+
-webkit-mask-size: 0.8rem;
|
|
1587
|
+
height: 1rem;
|
|
1588
|
+
mask-size: 0.8rem;
|
|
1589
|
+
mask-repeat: no-repeat;
|
|
1590
|
+
-webkit-mask-repeat: no-repeat;
|
|
1591
|
+
mask-position: center;
|
|
1592
|
+
-webkit-mask-position: center;
|
|
1593
|
+
mask-image: var(--str-video__icon--pin);
|
|
1594
|
+
-webkit-mask-image: var(--str-video__icon--pin);
|
|
1595
|
+
}
|
|
1596
|
+
.str-video__participant-view .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--network-stats,
|
|
1597
|
+
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--network-stats {
|
|
1598
|
+
width: 1rem;
|
|
1599
|
+
height: 1rem;
|
|
1600
|
+
mask-size: 1rem;
|
|
1601
|
+
-webkit-mask-size: 1rem;
|
|
1602
|
+
background-color: var(--str-video__text-color1);
|
|
1603
|
+
background-image: var(--str-video__icon--network-quality);
|
|
1604
|
+
cursor: pointer;
|
|
1605
|
+
margin-right: 0.625rem;
|
|
1606
|
+
}
|
|
1607
|
+
.str-video__participant-view .str-video__participant-details .str-video__participant-details__connection-quality,
|
|
1608
|
+
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__connection-quality {
|
|
1609
|
+
width: 1.5rem;
|
|
1610
|
+
height: 1.5rem;
|
|
1611
|
+
display: block;
|
|
1612
|
+
background-size: cover;
|
|
1613
|
+
}
|
|
1614
|
+
.str-video__participant-view .str-video__participant-details .str-video__participant-details__connection-quality--poor,
|
|
1615
|
+
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__connection-quality--poor {
|
|
1616
|
+
background-image: var(--str-video__icon--connection-quality-poor);
|
|
1617
|
+
}
|
|
1618
|
+
.str-video__participant-view .str-video__participant-details .str-video__participant-details__connection-quality--good,
|
|
1619
|
+
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__connection-quality--good {
|
|
1620
|
+
background-image: var(--str-video__icon--connection-quality-good);
|
|
1621
|
+
}
|
|
1622
|
+
.str-video__participant-view .str-video__participant-details .str-video__participant-details__connection-quality--excellent,
|
|
1623
|
+
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__connection-quality--excellent {
|
|
1624
|
+
background-image: var(--str-video__icon--connection-quality-excellent);
|
|
1625
|
+
}
|
|
1154
1626
|
|
|
1155
1627
|
.str-video__permission-requests {
|
|
1156
1628
|
background-color: var(--str-video__background-color1);
|
|
@@ -1213,6 +1685,116 @@
|
|
|
1213
1685
|
font-size: 2.5rem;
|
|
1214
1686
|
}
|
|
1215
1687
|
|
|
1688
|
+
.str-video__call-panel {
|
|
1689
|
+
display: flex;
|
|
1690
|
+
flex-direction: column;
|
|
1691
|
+
align-items: center;
|
|
1692
|
+
justify-content: space-around;
|
|
1693
|
+
width: 400px;
|
|
1694
|
+
height: 300px;
|
|
1695
|
+
padding: 1rem 1rem 0.5rem;
|
|
1696
|
+
gap: 1rem;
|
|
1697
|
+
}
|
|
1698
|
+
|
|
1699
|
+
.str-video__call-panel--ringing .str-video__call-panel__members-list {
|
|
1700
|
+
overflow: hidden;
|
|
1701
|
+
display: flex;
|
|
1702
|
+
align-items: center;
|
|
1703
|
+
}
|
|
1704
|
+
.str-video__call-panel--ringing .str-video__call-panel__members-list .str-video__call-panel__member-box {
|
|
1705
|
+
position: relative;
|
|
1706
|
+
display: flex;
|
|
1707
|
+
flex-direction: column;
|
|
1708
|
+
align-items: center;
|
|
1709
|
+
justify-content: center;
|
|
1710
|
+
padding: 2rem;
|
|
1711
|
+
}
|
|
1712
|
+
.str-video__call-panel--ringing .str-video__call-panel__members-list .str-video__call-panel__member-box .str-video__avatar {
|
|
1713
|
+
width: 80px;
|
|
1714
|
+
height: 80px;
|
|
1715
|
+
}
|
|
1716
|
+
.str-video__call-panel--ringing .str-video__call-panel__members-list .str-video__call-panel__member-box .str-video__member_details {
|
|
1717
|
+
position: absolute;
|
|
1718
|
+
bottom: 10%;
|
|
1719
|
+
padding: 0.125rem 0.375rem;
|
|
1720
|
+
}
|
|
1721
|
+
.str-video__call-panel--ringing .str-video__pending-call-controls {
|
|
1722
|
+
display: flex;
|
|
1723
|
+
gap: 0.675rem;
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
.str-video__call-panel {
|
|
1727
|
+
background: var(--str-video__background-color3);
|
|
1728
|
+
border: 2px solid rgba(200, 200, 200, 0.6);
|
|
1729
|
+
border-radius: 10px;
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
.str-video__call-panel--ringing .str-video__call-panel__members-list .str-video__call-panel__member-box {
|
|
1733
|
+
border-radius: var(--str-video__border-radius-circle);
|
|
1734
|
+
background: var(--str-video__background-color6);
|
|
1735
|
+
}
|
|
1736
|
+
.str-video__call-panel--ringing .str-video__call-panel__members-list .str-video__call-panel__member-box:before {
|
|
1737
|
+
content: "";
|
|
1738
|
+
position: absolute;
|
|
1739
|
+
inset: 0;
|
|
1740
|
+
border-radius: var(--str-video__border-radius-circle);
|
|
1741
|
+
padding: 4px;
|
|
1742
|
+
background: linear-gradient(180deg, var(--str-video__primary-color), var(--str-video__info-color));
|
|
1743
|
+
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
|
|
1744
|
+
-webkit-mask-composite: xor;
|
|
1745
|
+
mask-composite: exclude;
|
|
1746
|
+
}
|
|
1747
|
+
.str-video__call-panel--ringing .str-video__call-panel__members-list .str-video__call-panel__member-box .str-video__member_details {
|
|
1748
|
+
background-color: var(--str-video__background-color4);
|
|
1749
|
+
color: var(--str-video__text-color1);
|
|
1750
|
+
border-radius: 4px;
|
|
1751
|
+
font-size: 12px;
|
|
1752
|
+
line-height: 16px;
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1755
|
+
.str-video__screen-share-overlay {
|
|
1756
|
+
display: flex;
|
|
1757
|
+
align-items: center;
|
|
1758
|
+
justify-content: center;
|
|
1759
|
+
flex-direction: column;
|
|
1760
|
+
position: absolute;
|
|
1761
|
+
width: 100%;
|
|
1762
|
+
height: 100%;
|
|
1763
|
+
gap: 1.8rem;
|
|
1764
|
+
}
|
|
1765
|
+
.str-video__screen-share-overlay > .str-video__icon {
|
|
1766
|
+
width: 4rem;
|
|
1767
|
+
height: 4rem;
|
|
1768
|
+
}
|
|
1769
|
+
.str-video__screen-share-overlay .str-video__screen-share-overlay__button {
|
|
1770
|
+
display: flex;
|
|
1771
|
+
gap: 0.4rem;
|
|
1772
|
+
align-items: center;
|
|
1773
|
+
padding-inline: 1.6rem;
|
|
1774
|
+
padding-block: 0.8rem;
|
|
1775
|
+
}
|
|
1776
|
+
.str-video__screen-share-overlay .str-video__screen-share-overlay__button .str-video__icon {
|
|
1777
|
+
width: 0.7rem;
|
|
1778
|
+
height: 0.7rem;
|
|
1779
|
+
}
|
|
1780
|
+
|
|
1781
|
+
.str-video__screen-share-overlay {
|
|
1782
|
+
background: var(--str-video__overlay-color);
|
|
1783
|
+
backdrop-filter: blur(3px);
|
|
1784
|
+
border-radius: inherit;
|
|
1785
|
+
}
|
|
1786
|
+
.str-video__screen-share-overlay .str-video__screen-share-overlay__title {
|
|
1787
|
+
font-size: 1.3rem;
|
|
1788
|
+
}
|
|
1789
|
+
.str-video__screen-share-overlay .str-video__screen-share-overlay__button {
|
|
1790
|
+
color: white;
|
|
1791
|
+
background: var(--str-video__danger-color);
|
|
1792
|
+
border-radius: var(--str-video__border-radius-xs);
|
|
1793
|
+
}
|
|
1794
|
+
.str-video__screen-share-overlay .str-video__screen-share-overlay__button:hover {
|
|
1795
|
+
background-color: var(--str-video__danger-color--accent);
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1216
1798
|
.str-video__search-input__container {
|
|
1217
1799
|
display: flex;
|
|
1218
1800
|
gap: 0.5rem;
|
|
@@ -1498,581 +2080,6 @@
|
|
|
1498
2080
|
overflow: hidden;
|
|
1499
2081
|
}
|
|
1500
2082
|
|
|
1501
|
-
.str-video__participant-view,
|
|
1502
|
-
.str-video__participant-view--angular-host {
|
|
1503
|
-
position: relative;
|
|
1504
|
-
width: 100%;
|
|
1505
|
-
max-width: 1280px;
|
|
1506
|
-
max-height: 100%;
|
|
1507
|
-
min-height: 0;
|
|
1508
|
-
aspect-ratio: 4/3;
|
|
1509
|
-
display: flex;
|
|
1510
|
-
align-items: center;
|
|
1511
|
-
justify-content: center;
|
|
1512
|
-
border-radius: var(--str-video__border-radius-sm);
|
|
1513
|
-
}
|
|
1514
|
-
.str-video__participant-view--speaking,
|
|
1515
|
-
.str-video__participant-view--angular-host--speaking {
|
|
1516
|
-
outline: 2px solid var(--str-video__primary-color);
|
|
1517
|
-
}
|
|
1518
|
-
.str-video__participant-view .str-video__participant-details,
|
|
1519
|
-
.str-video__participant-view .str-video__call-controls__button,
|
|
1520
|
-
.str-video__participant-view--angular-host .str-video__participant-details,
|
|
1521
|
-
.str-video__participant-view--angular-host .str-video__call-controls__button {
|
|
1522
|
-
transition: opacity 200ms ease-out;
|
|
1523
|
-
opacity: 0.3;
|
|
1524
|
-
color: var(--str-video__text-color1);
|
|
1525
|
-
}
|
|
1526
|
-
.str-video__participant-view:hover .str-video__participant-details,
|
|
1527
|
-
.str-video__participant-view:hover .str-video__call-controls__button,
|
|
1528
|
-
.str-video__participant-view--angular-host:hover .str-video__participant-details,
|
|
1529
|
-
.str-video__participant-view--angular-host:hover .str-video__call-controls__button {
|
|
1530
|
-
opacity: 1;
|
|
1531
|
-
}
|
|
1532
|
-
.str-video__participant-view > .str-video__call-controls__button,
|
|
1533
|
-
.str-video__participant-view--angular-host > .str-video__call-controls__button {
|
|
1534
|
-
position: absolute;
|
|
1535
|
-
top: 0.875rem;
|
|
1536
|
-
right: 0.875rem;
|
|
1537
|
-
padding: 0.3rem;
|
|
1538
|
-
}
|
|
1539
|
-
.str-video__participant-view .str-video__participant-details,
|
|
1540
|
-
.str-video__participant-view--angular-host .str-video__participant-details {
|
|
1541
|
-
position: absolute;
|
|
1542
|
-
left: 0.875rem;
|
|
1543
|
-
bottom: 0.875rem;
|
|
1544
|
-
display: flex;
|
|
1545
|
-
align-items: center;
|
|
1546
|
-
gap: 0.3125rem;
|
|
1547
|
-
}
|
|
1548
|
-
.str-video__participant-view .str-video__participant-details .str-video__participant-details__name,
|
|
1549
|
-
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__name {
|
|
1550
|
-
border-radius: var(--str-video__border-radius-xs);
|
|
1551
|
-
background-color: var(--str-video__background-color4);
|
|
1552
|
-
display: flex;
|
|
1553
|
-
align-items: center;
|
|
1554
|
-
gap: 0.3125rem;
|
|
1555
|
-
padding: 4px 6px;
|
|
1556
|
-
white-space: nowrap;
|
|
1557
|
-
overflow: hidden;
|
|
1558
|
-
text-overflow: ellipsis;
|
|
1559
|
-
}
|
|
1560
|
-
.str-video__participant-view .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--audio-muted,
|
|
1561
|
-
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--audio-muted {
|
|
1562
|
-
width: 1rem;
|
|
1563
|
-
height: 1rem;
|
|
1564
|
-
mask-size: 1rem;
|
|
1565
|
-
-webkit-mask-size: 1rem;
|
|
1566
|
-
background-color: var(--str-video__text-color1);
|
|
1567
|
-
mask-image: var(--str-video__icon--mic-off);
|
|
1568
|
-
-webkit-mask-image: var(--str-video__icon--mic-off);
|
|
1569
|
-
}
|
|
1570
|
-
.str-video__participant-view .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--dominant_speaker,
|
|
1571
|
-
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--dominant_speaker {
|
|
1572
|
-
width: 1rem;
|
|
1573
|
-
height: 1rem;
|
|
1574
|
-
mask-size: 1rem;
|
|
1575
|
-
-webkit-mask-size: 1rem;
|
|
1576
|
-
background-color: var(--str-video__text-color1);
|
|
1577
|
-
mask-image: var(--str-video__icon--dominant-speaker);
|
|
1578
|
-
-webkit-mask-image: var(--str-video__icon--dominant-speaker);
|
|
1579
|
-
mask-size: contain;
|
|
1580
|
-
-webkit-mask-size: contain;
|
|
1581
|
-
mask-repeat: no-repeat;
|
|
1582
|
-
-webkit-mask-repeat: no-repeat;
|
|
1583
|
-
mask-position: center;
|
|
1584
|
-
-webkit-mask-position: center;
|
|
1585
|
-
}
|
|
1586
|
-
.str-video__participant-view .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--video-muted,
|
|
1587
|
-
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--video-muted {
|
|
1588
|
-
width: 1rem;
|
|
1589
|
-
height: 1rem;
|
|
1590
|
-
mask-size: 1rem;
|
|
1591
|
-
-webkit-mask-size: 1rem;
|
|
1592
|
-
background-color: var(--str-video__text-color1);
|
|
1593
|
-
mask-image: var(--str-video__icon--camera-off);
|
|
1594
|
-
-webkit-mask-image: var(--str-video__icon--camera-off);
|
|
1595
|
-
}
|
|
1596
|
-
.str-video__participant-view .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--pinned,
|
|
1597
|
-
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--pinned {
|
|
1598
|
-
width: 1rem;
|
|
1599
|
-
height: 1rem;
|
|
1600
|
-
mask-size: 1rem;
|
|
1601
|
-
-webkit-mask-size: 1rem;
|
|
1602
|
-
background-color: var(--str-video__text-color1);
|
|
1603
|
-
width: 0.8rem;
|
|
1604
|
-
-webkit-mask-size: 0.8rem;
|
|
1605
|
-
height: 1rem;
|
|
1606
|
-
mask-size: 0.8rem;
|
|
1607
|
-
mask-repeat: no-repeat;
|
|
1608
|
-
-webkit-mask-repeat: no-repeat;
|
|
1609
|
-
mask-position: center;
|
|
1610
|
-
-webkit-mask-position: center;
|
|
1611
|
-
mask-image: var(--str-video__icon--pin);
|
|
1612
|
-
-webkit-mask-image: var(--str-video__icon--pin);
|
|
1613
|
-
}
|
|
1614
|
-
.str-video__participant-view .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--network-stats,
|
|
1615
|
-
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--network-stats {
|
|
1616
|
-
width: 1rem;
|
|
1617
|
-
height: 1rem;
|
|
1618
|
-
mask-size: 1rem;
|
|
1619
|
-
-webkit-mask-size: 1rem;
|
|
1620
|
-
background-color: var(--str-video__text-color1);
|
|
1621
|
-
background-image: var(--str-video__icon--network-quality);
|
|
1622
|
-
cursor: pointer;
|
|
1623
|
-
margin-right: 0.625rem;
|
|
1624
|
-
}
|
|
1625
|
-
.str-video__participant-view .str-video__participant-details .str-video__participant-details__connection-quality,
|
|
1626
|
-
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__connection-quality {
|
|
1627
|
-
width: 1.5rem;
|
|
1628
|
-
height: 1.5rem;
|
|
1629
|
-
display: block;
|
|
1630
|
-
background-size: cover;
|
|
1631
|
-
}
|
|
1632
|
-
.str-video__participant-view .str-video__participant-details .str-video__participant-details__connection-quality--poor,
|
|
1633
|
-
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__connection-quality--poor {
|
|
1634
|
-
background-image: var(--str-video__icon--connection-quality-poor);
|
|
1635
|
-
}
|
|
1636
|
-
.str-video__participant-view .str-video__participant-details .str-video__participant-details__connection-quality--good,
|
|
1637
|
-
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__connection-quality--good {
|
|
1638
|
-
background-image: var(--str-video__icon--connection-quality-good);
|
|
1639
|
-
}
|
|
1640
|
-
.str-video__participant-view .str-video__participant-details .str-video__participant-details__connection-quality--excellent,
|
|
1641
|
-
.str-video__participant-view--angular-host .str-video__participant-details .str-video__participant-details__connection-quality--excellent {
|
|
1642
|
-
background-image: var(--str-video__icon--connection-quality-excellent);
|
|
1643
|
-
}
|
|
1644
|
-
|
|
1645
|
-
.str-video__screen-share-overlay {
|
|
1646
|
-
display: flex;
|
|
1647
|
-
align-items: center;
|
|
1648
|
-
justify-content: center;
|
|
1649
|
-
flex-direction: column;
|
|
1650
|
-
position: absolute;
|
|
1651
|
-
width: 100%;
|
|
1652
|
-
height: 100%;
|
|
1653
|
-
gap: 1.8rem;
|
|
1654
|
-
}
|
|
1655
|
-
.str-video__screen-share-overlay > .str-video__icon {
|
|
1656
|
-
width: 4rem;
|
|
1657
|
-
height: 4rem;
|
|
1658
|
-
}
|
|
1659
|
-
.str-video__screen-share-overlay .str-video__screen-share-overlay__button {
|
|
1660
|
-
display: flex;
|
|
1661
|
-
gap: 0.4rem;
|
|
1662
|
-
align-items: center;
|
|
1663
|
-
padding-inline: 1.6rem;
|
|
1664
|
-
padding-block: 0.8rem;
|
|
1665
|
-
}
|
|
1666
|
-
.str-video__screen-share-overlay .str-video__screen-share-overlay__button .str-video__icon {
|
|
1667
|
-
width: 0.7rem;
|
|
1668
|
-
height: 0.7rem;
|
|
1669
|
-
}
|
|
1670
|
-
|
|
1671
|
-
.str-video__screen-share-overlay {
|
|
1672
|
-
background: var(--str-video__overlay-color);
|
|
1673
|
-
backdrop-filter: blur(3px);
|
|
1674
|
-
border-radius: inherit;
|
|
1675
|
-
}
|
|
1676
|
-
.str-video__screen-share-overlay .str-video__screen-share-overlay__title {
|
|
1677
|
-
font-size: 1.3rem;
|
|
1678
|
-
}
|
|
1679
|
-
.str-video__screen-share-overlay .str-video__screen-share-overlay__button {
|
|
1680
|
-
color: white;
|
|
1681
|
-
background: var(--str-video__danger-color);
|
|
1682
|
-
border-radius: var(--str-video__border-radius-xs);
|
|
1683
|
-
}
|
|
1684
|
-
.str-video__screen-share-overlay .str-video__screen-share-overlay__button:hover {
|
|
1685
|
-
background-color: var(--str-video__danger-color--accent);
|
|
1686
|
-
}
|
|
1687
|
-
|
|
1688
|
-
.str-video__livestream-layout__wrapper {
|
|
1689
|
-
flex-grow: 1;
|
|
1690
|
-
overflow-y: hidden;
|
|
1691
|
-
display: flex;
|
|
1692
|
-
justify-content: center;
|
|
1693
|
-
width: 100%;
|
|
1694
|
-
height: 100%;
|
|
1695
|
-
position: relative;
|
|
1696
|
-
}
|
|
1697
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__screen-share {
|
|
1698
|
-
max-width: 100%;
|
|
1699
|
-
}
|
|
1700
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__screen-share .str-video__video {
|
|
1701
|
-
object-fit: contain;
|
|
1702
|
-
}
|
|
1703
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__floating-participant {
|
|
1704
|
-
position: absolute;
|
|
1705
|
-
width: 240px;
|
|
1706
|
-
height: 135px;
|
|
1707
|
-
box-shadow: var(--str-video__background-color1) 0 0 3px 0;
|
|
1708
|
-
}
|
|
1709
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__floating-participant--top-right {
|
|
1710
|
-
top: 8px;
|
|
1711
|
-
right: 8px;
|
|
1712
|
-
}
|
|
1713
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__floating-participant--top-left {
|
|
1714
|
-
top: 8px;
|
|
1715
|
-
left: 8px;
|
|
1716
|
-
}
|
|
1717
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__floating-participant--bottom-right {
|
|
1718
|
-
bottom: 8px;
|
|
1719
|
-
right: 8px;
|
|
1720
|
-
}
|
|
1721
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__floating-participant--bottom-left {
|
|
1722
|
-
bottom: 8px;
|
|
1723
|
-
left: 8px;
|
|
1724
|
-
}
|
|
1725
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay {
|
|
1726
|
-
position: absolute;
|
|
1727
|
-
height: 100%;
|
|
1728
|
-
width: 100%;
|
|
1729
|
-
display: flex;
|
|
1730
|
-
flex-direction: column-reverse;
|
|
1731
|
-
}
|
|
1732
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay:hover .str-video__livestream-layout__overlay__bar {
|
|
1733
|
-
background-color: var(--str-video__livestream-overlay-color-hovered);
|
|
1734
|
-
}
|
|
1735
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__overlay__bar {
|
|
1736
|
-
height: 10%;
|
|
1737
|
-
min-height: 40px;
|
|
1738
|
-
max-height: 70px;
|
|
1739
|
-
position: relative;
|
|
1740
|
-
bottom: 0;
|
|
1741
|
-
border-bottom-left-radius: var(--str-video__border-radius-sm);
|
|
1742
|
-
border-bottom-right-radius: var(--str-video__border-radius-sm);
|
|
1743
|
-
background-color: var(--str-video__livestream-overlay-color);
|
|
1744
|
-
display: flex;
|
|
1745
|
-
align-items: center;
|
|
1746
|
-
padding: 0 20px;
|
|
1747
|
-
}
|
|
1748
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__live-badge {
|
|
1749
|
-
padding: 4px 8px;
|
|
1750
|
-
border-radius: var(--str-video__border-radius-xxs);
|
|
1751
|
-
background-color: var(--str-video__primary-color);
|
|
1752
|
-
color: var(--str-video__text-color1);
|
|
1753
|
-
}
|
|
1754
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__viewers-count {
|
|
1755
|
-
padding: 4px 8px;
|
|
1756
|
-
}
|
|
1757
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__viewers-count::before {
|
|
1758
|
-
content: var(--str-video__icon--livestream-viewers);
|
|
1759
|
-
margin-right: 3px;
|
|
1760
|
-
vertical-align: middle;
|
|
1761
|
-
}
|
|
1762
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__speaker-name {
|
|
1763
|
-
flex: 1;
|
|
1764
|
-
font-size: 13px;
|
|
1765
|
-
text-overflow: ellipsis;
|
|
1766
|
-
overflow: hidden;
|
|
1767
|
-
white-space: nowrap;
|
|
1768
|
-
}
|
|
1769
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__duration {
|
|
1770
|
-
flex: 1;
|
|
1771
|
-
text-align: center;
|
|
1772
|
-
}
|
|
1773
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__go-fullscreen {
|
|
1774
|
-
background: var(--str-video__icon--fullscreen) center no-repeat;
|
|
1775
|
-
border-radius: var(--str-video__border-radius-xxs);
|
|
1776
|
-
cursor: pointer;
|
|
1777
|
-
width: 32px;
|
|
1778
|
-
height: 32px;
|
|
1779
|
-
}
|
|
1780
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__go-fullscreen:hover {
|
|
1781
|
-
background-color: var(--str-video__overlay-color);
|
|
1782
|
-
}
|
|
1783
|
-
|
|
1784
|
-
.str-video__paginated-grid-layout__wrapper {
|
|
1785
|
-
flex-grow: 1;
|
|
1786
|
-
}
|
|
1787
|
-
|
|
1788
|
-
.str-video__paginated-grid-layout {
|
|
1789
|
-
display: flex;
|
|
1790
|
-
height: 100%;
|
|
1791
|
-
align-items: center;
|
|
1792
|
-
justify-content: space-between;
|
|
1793
|
-
}
|
|
1794
|
-
.str-video__paginated-grid-layout .str-video__paginated-grid-layout__group {
|
|
1795
|
-
display: flex;
|
|
1796
|
-
flex-wrap: wrap;
|
|
1797
|
-
gap: 8px;
|
|
1798
|
-
justify-content: center;
|
|
1799
|
-
max-width: 110vh;
|
|
1800
|
-
padding-inline: 1.25rem;
|
|
1801
|
-
margin: auto;
|
|
1802
|
-
width: 100%;
|
|
1803
|
-
}
|
|
1804
|
-
.str-video__paginated-grid-layout .str-video__paginated-grid-layout__group .str-video__participant-view {
|
|
1805
|
-
flex: 0 1 calc(25% - 6px);
|
|
1806
|
-
}
|
|
1807
|
-
.str-video__paginated-grid-layout .str-video__paginated-grid-layout__group.str-video__paginated-grid-layout--one .str-video__participant-view {
|
|
1808
|
-
flex: 0 1 calc(100% - 6px);
|
|
1809
|
-
}
|
|
1810
|
-
.str-video__paginated-grid-layout .str-video__paginated-grid-layout__group.str-video__paginated-grid-layout--two-four .str-video__participant-view {
|
|
1811
|
-
flex: 0 1 calc(50% - 6px);
|
|
1812
|
-
}
|
|
1813
|
-
.str-video__paginated-grid-layout .str-video__paginated-grid-layout__group.str-video__paginated-grid-layout--five-nine .str-video__participant-view {
|
|
1814
|
-
flex: 0 1 calc(33% - 6px);
|
|
1815
|
-
}
|
|
1816
|
-
|
|
1817
|
-
.str-video__speaker-layout__wrapper {
|
|
1818
|
-
flex-grow: 1;
|
|
1819
|
-
overflow-y: hidden;
|
|
1820
|
-
}
|
|
1821
|
-
|
|
1822
|
-
.str-video__speaker-layout {
|
|
1823
|
-
display: flex;
|
|
1824
|
-
flex-direction: column;
|
|
1825
|
-
justify-content: center;
|
|
1826
|
-
height: 100%;
|
|
1827
|
-
width: 100%;
|
|
1828
|
-
gap: 1rem;
|
|
1829
|
-
padding-inline: 2px;
|
|
1830
|
-
}
|
|
1831
|
-
.str-video__speaker-layout .str-video__participant-view {
|
|
1832
|
-
aspect-ratio: 16/9;
|
|
1833
|
-
}
|
|
1834
|
-
.str-video__speaker-layout .str-video__speaker-layout__spotlight {
|
|
1835
|
-
display: flex;
|
|
1836
|
-
align-items: center;
|
|
1837
|
-
justify-content: center;
|
|
1838
|
-
min-height: 0;
|
|
1839
|
-
}
|
|
1840
|
-
.str-video__speaker-layout .str-video__speaker-layout__spotlight .str-video__participant-view--speaking:has(.str-video__video--screen-share) {
|
|
1841
|
-
outline: none;
|
|
1842
|
-
}
|
|
1843
|
-
.str-video__speaker-layout .str-video__speaker-layout__spotlight .str-video__video {
|
|
1844
|
-
object-fit: contain;
|
|
1845
|
-
}
|
|
1846
|
-
.str-video__speaker-layout .str-video__speaker-layout__spotlight .str-video__participant-details,
|
|
1847
|
-
.str-video__speaker-layout .str-video__speaker-layout__spotlight .str-video__call-controls__button {
|
|
1848
|
-
opacity: 1;
|
|
1849
|
-
}
|
|
1850
|
-
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-buttons-wrapper {
|
|
1851
|
-
position: relative;
|
|
1852
|
-
display: flex;
|
|
1853
|
-
justify-content: center;
|
|
1854
|
-
align-items: center;
|
|
1855
|
-
}
|
|
1856
|
-
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-buttons-wrapper > .str-video__call-controls__button .str-video__icon {
|
|
1857
|
-
width: 1rem;
|
|
1858
|
-
height: 1rem;
|
|
1859
|
-
}
|
|
1860
|
-
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-buttons-wrapper .str-video__speaker-layout__participants-bar--button-left {
|
|
1861
|
-
position: absolute;
|
|
1862
|
-
left: 0.5rem;
|
|
1863
|
-
}
|
|
1864
|
-
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-buttons-wrapper .str-video__speaker-layout__participants-bar--button-right {
|
|
1865
|
-
position: absolute;
|
|
1866
|
-
right: 0.5rem;
|
|
1867
|
-
}
|
|
1868
|
-
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-buttons-wrapper .str-video__speaker-layout__participants-bar--button-top {
|
|
1869
|
-
position: absolute;
|
|
1870
|
-
top: 0.5rem;
|
|
1871
|
-
}
|
|
1872
|
-
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-buttons-wrapper .str-video__speaker-layout__participants-bar--button-bottom {
|
|
1873
|
-
position: absolute;
|
|
1874
|
-
bottom: 0.5rem;
|
|
1875
|
-
}
|
|
1876
|
-
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-wrapper {
|
|
1877
|
-
scrollbar-width: none;
|
|
1878
|
-
}
|
|
1879
|
-
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-wrapper::-webkit-scrollbar {
|
|
1880
|
-
display: none;
|
|
1881
|
-
}
|
|
1882
|
-
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-wrapper .str-video__speaker-layout__participants-bar {
|
|
1883
|
-
display: flex;
|
|
1884
|
-
align-items: center;
|
|
1885
|
-
}
|
|
1886
|
-
.str-video__speaker-layout .str-video__speaker-layout__participants-bar-wrapper .str-video__speaker-layout__participants-bar .str-video__speaker-layout__participant-tile {
|
|
1887
|
-
width: 280px;
|
|
1888
|
-
min-width: 280px;
|
|
1889
|
-
max-width: 25vh;
|
|
1890
|
-
padding: 5px;
|
|
1891
|
-
}
|
|
1892
|
-
.str-video__speaker-layout--variant-top {
|
|
1893
|
-
flex-direction: column-reverse;
|
|
1894
|
-
}
|
|
1895
|
-
.str-video__speaker-layout--variant-left {
|
|
1896
|
-
flex-direction: row-reverse;
|
|
1897
|
-
}
|
|
1898
|
-
.str-video__speaker-layout--variant-right {
|
|
1899
|
-
flex-direction: row;
|
|
1900
|
-
}
|
|
1901
|
-
.str-video__speaker-layout--variant-left .str-video__speaker-layout__participants-bar-wrapper, .str-video__speaker-layout--variant-right .str-video__speaker-layout__participants-bar-wrapper {
|
|
1902
|
-
overflow-y: auto;
|
|
1903
|
-
max-height: 100%;
|
|
1904
|
-
}
|
|
1905
|
-
.str-video__speaker-layout--variant-left .str-video__speaker-layout__participants-bar, .str-video__speaker-layout--variant-right .str-video__speaker-layout__participants-bar {
|
|
1906
|
-
flex-direction: column;
|
|
1907
|
-
}
|
|
1908
|
-
.str-video__speaker-layout--variant-left .str-video__speaker-layout__spotlight, .str-video__speaker-layout--variant-right .str-video__speaker-layout__spotlight {
|
|
1909
|
-
width: 100%;
|
|
1910
|
-
}
|
|
1911
|
-
.str-video__speaker-layout--variant-left .str-video__participant-view, .str-video__speaker-layout--variant-right .str-video__participant-view {
|
|
1912
|
-
max-width: unset;
|
|
1913
|
-
}
|
|
1914
|
-
.str-video__speaker-layout--variant-top .str-video__speaker-layout__participants-bar-wrapper, .str-video__speaker-layout--variant-bottom .str-video__speaker-layout__participants-bar-wrapper {
|
|
1915
|
-
overflow-x: auto;
|
|
1916
|
-
}
|
|
1917
|
-
.str-video__speaker-layout--variant-top .str-video__speaker-layout__participants-bar, .str-video__speaker-layout--variant-bottom .str-video__speaker-layout__participants-bar {
|
|
1918
|
-
flex-direction: row;
|
|
1919
|
-
}
|
|
1920
|
-
.str-video__speaker-layout--variant-top .str-video__participant-view, .str-video__speaker-layout--variant-bottom .str-video__participant-view {
|
|
1921
|
-
max-width: 110vh;
|
|
1922
|
-
}
|
|
1923
|
-
|
|
1924
|
-
.str-video__icon {
|
|
1925
|
-
background-color: var(--str-video__text-color1);
|
|
1926
|
-
}
|
|
1927
|
-
.str-video__icon--chat {
|
|
1928
|
-
mask-image: var(--str-video__icon--chat);
|
|
1929
|
-
-webkit-mask-image: var(--str-video__icon--chat);
|
|
1930
|
-
}
|
|
1931
|
-
.str-video__icon--reactions {
|
|
1932
|
-
-webkit-mask-image: var(--str-video__icon--reactions);
|
|
1933
|
-
mask-image: var(--str-video__icon--reactions);
|
|
1934
|
-
}
|
|
1935
|
-
.str-video__icon--recording-on {
|
|
1936
|
-
mask-image: var(--str-video__icon--recording-on);
|
|
1937
|
-
-webkit-mask-image: var(--str-video__icon--recording-on);
|
|
1938
|
-
background-color: var(--str-video__danger-color);
|
|
1939
|
-
}
|
|
1940
|
-
.str-video__icon--recording-off {
|
|
1941
|
-
mask-image: var(--str-video__icon--recording-off);
|
|
1942
|
-
-webkit-mask-image: var(--str-video__icon--recording-off);
|
|
1943
|
-
}
|
|
1944
|
-
.str-video__icon--screen-share-on {
|
|
1945
|
-
mask-image: var(--str-video__icon--screen-share-on);
|
|
1946
|
-
-webkit-mask-image: var(--str-video__icon--screen-share-on);
|
|
1947
|
-
}
|
|
1948
|
-
.str-video__icon--screen-share-off {
|
|
1949
|
-
mask-image: var(--str-video__icon--screen-share-off);
|
|
1950
|
-
-webkit-mask-image: var(--str-video__icon--screen-share-off);
|
|
1951
|
-
}
|
|
1952
|
-
.str-video__icon--caret-down {
|
|
1953
|
-
transform: rotate(180deg);
|
|
1954
|
-
mask-image: var(--str-video__icon--caret);
|
|
1955
|
-
-webkit-mask-image: var(--str-video__icon--caret);
|
|
1956
|
-
}
|
|
1957
|
-
.str-video__icon--caret-up {
|
|
1958
|
-
mask-image: var(--str-video__icon--caret);
|
|
1959
|
-
-webkit-mask-image: var(--str-video__icon--caret);
|
|
1960
|
-
}
|
|
1961
|
-
.str-video__icon--caret-right {
|
|
1962
|
-
transform: rotate(90deg);
|
|
1963
|
-
mask-image: var(--str-video__icon--caret);
|
|
1964
|
-
-webkit-mask-image: var(--str-video__icon--caret);
|
|
1965
|
-
}
|
|
1966
|
-
.str-video__icon--caret-left {
|
|
1967
|
-
transform: rotate(-90deg);
|
|
1968
|
-
mask-image: var(--str-video__icon--caret);
|
|
1969
|
-
-webkit-mask-image: var(--str-video__icon--caret);
|
|
1970
|
-
}
|
|
1971
|
-
.str-video__icon--close {
|
|
1972
|
-
mask-image: var(--str-video__icon--close);
|
|
1973
|
-
-webkit-mask-image: var(--str-video__icon--close);
|
|
1974
|
-
}
|
|
1975
|
-
.str-video__icon--mic {
|
|
1976
|
-
mask-image: var(--str-video__icon--mic);
|
|
1977
|
-
-webkit-mask-image: var(--str-video__icon--mic);
|
|
1978
|
-
}
|
|
1979
|
-
.str-video__icon--mic-off {
|
|
1980
|
-
mask-image: var(--str-video__icon--mic-off);
|
|
1981
|
-
-webkit-mask-image: var(--str-video__icon--mic-off);
|
|
1982
|
-
}
|
|
1983
|
-
.str-video__icon--camera {
|
|
1984
|
-
mask-image: var(--str-video__icon--camera);
|
|
1985
|
-
-webkit-mask-image: var(--str-video__icon--camera);
|
|
1986
|
-
}
|
|
1987
|
-
.str-video__icon--camera-off {
|
|
1988
|
-
mask-image: var(--str-video__icon--camera-off);
|
|
1989
|
-
-webkit-mask-image: var(--str-video__icon--camera-off);
|
|
1990
|
-
}
|
|
1991
|
-
.str-video__icon--camera-off-outline {
|
|
1992
|
-
mask-image: var(--str-video__icon--camera-off-outline);
|
|
1993
|
-
-webkit-mask-image: var(--str-video__icon--camera-off-outline);
|
|
1994
|
-
}
|
|
1995
|
-
.str-video__icon--call-end {
|
|
1996
|
-
mask-image: var(--str-video__icon--call-end);
|
|
1997
|
-
-webkit-mask-image: var(--str-video__icon--call-end);
|
|
1998
|
-
}
|
|
1999
|
-
.str-video__icon--call-accept {
|
|
2000
|
-
mask-image: var(--str-video__icon--call-accept);
|
|
2001
|
-
-webkit-mask-image: var(--str-video__icon--call-accept);
|
|
2002
|
-
}
|
|
2003
|
-
.str-video__icon--info {
|
|
2004
|
-
-webkit-mask-image: var(--str-video__icon--info-icon);
|
|
2005
|
-
mask-image: var(--str-video__icon--info-icon);
|
|
2006
|
-
}
|
|
2007
|
-
.str-video__icon--info-document {
|
|
2008
|
-
-webkit-mask-image: var(--str-video__icon--info-document);
|
|
2009
|
-
mask-image: var(--str-video__icon--info-document);
|
|
2010
|
-
}
|
|
2011
|
-
.str-video__icon--stats {
|
|
2012
|
-
-webkit-mask-image: var(--str-video__icon--stats);
|
|
2013
|
-
mask-image: var(--str-video__icon--stats);
|
|
2014
|
-
}
|
|
2015
|
-
.str-video__icon--participants {
|
|
2016
|
-
mask-image: var(--str-video__icon--participants);
|
|
2017
|
-
-webkit-mask-image: var(--str-video__icon--participants);
|
|
2018
|
-
}
|
|
2019
|
-
.str-video__icon--user-plus {
|
|
2020
|
-
mask-image: var(--str-video__icon--user-plus);
|
|
2021
|
-
-webkit-mask-image: var(--str-video__icon--user-plus);
|
|
2022
|
-
}
|
|
2023
|
-
.str-video__icon--speaker {
|
|
2024
|
-
mask-image: var(--str-video__icon--speaker);
|
|
2025
|
-
-webkit-mask-image: var(--str-video__icon--speaker);
|
|
2026
|
-
}
|
|
2027
|
-
.str-video__icon--ellipsis {
|
|
2028
|
-
mask-image: var(--str-video__icon--ellipsis);
|
|
2029
|
-
-webkit-mask-image: var(--str-video__icon--ellipsis);
|
|
2030
|
-
}
|
|
2031
|
-
.str-video__icon--grid {
|
|
2032
|
-
mask-image: var(--str-video__icon--grid);
|
|
2033
|
-
-webkit-mask-image: var(--str-video__icon--grid);
|
|
2034
|
-
}
|
|
2035
|
-
.str-video__icon--pin {
|
|
2036
|
-
mask-image: var(--str-video__icon--pin);
|
|
2037
|
-
-webkit-mask-image: var(--str-video__icon--pin);
|
|
2038
|
-
}
|
|
2039
|
-
.str-video__icon--no-audio {
|
|
2040
|
-
mask-image: var(--str-video__icon--no-audio);
|
|
2041
|
-
-webkit-mask-image: var(--str-video__icon--no-audio);
|
|
2042
|
-
}
|
|
2043
|
-
.str-video__icon--not-allowed {
|
|
2044
|
-
mask-image: var(--str-video__icon--not-allowed);
|
|
2045
|
-
-webkit-mask-image: var(--str-video__icon--not-allowed);
|
|
2046
|
-
}
|
|
2047
|
-
.str-video__icon--call-recordings {
|
|
2048
|
-
mask-image: var(--str-video__icon--film-roll);
|
|
2049
|
-
-webkit-mask-image: var(--str-video__icon--film-roll);
|
|
2050
|
-
}
|
|
2051
|
-
.str-video__icon--device-settings {
|
|
2052
|
-
mask-image: var(--str-video__icon--settings);
|
|
2053
|
-
-webkit-mask-image: var(--str-video__icon--settings);
|
|
2054
|
-
}
|
|
2055
|
-
.str-video__icon--filter {
|
|
2056
|
-
mask-image: var(--str-video__icon--filter);
|
|
2057
|
-
-webkit-mask-image: var(--str-video__icon--filter);
|
|
2058
|
-
}
|
|
2059
|
-
.str-video__icon--refresh {
|
|
2060
|
-
mask-image: var(--str-video__icon--refresh);
|
|
2061
|
-
-webkit-mask-image: var(--str-video__icon--refresh);
|
|
2062
|
-
}
|
|
2063
|
-
|
|
2064
|
-
.str-video__icon {
|
|
2065
|
-
mask-repeat: no-repeat;
|
|
2066
|
-
-webkit-mask-repeat: no-repeat;
|
|
2067
|
-
mask-position: center;
|
|
2068
|
-
-webkit-mask-position: center;
|
|
2069
|
-
mask-size: contain;
|
|
2070
|
-
-webkit-mask-size: contain;
|
|
2071
|
-
display: block;
|
|
2072
|
-
width: 1.375rem;
|
|
2073
|
-
height: 1.375rem;
|
|
2074
|
-
}
|
|
2075
|
-
|
|
2076
2083
|
.str-video__debug__track-stats {
|
|
2077
2084
|
font-size: 0.6rem;
|
|
2078
2085
|
overflow: scroll;
|