You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_participants-pane.scss 1003B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .participants_pane {
  2. background-color: $participantsPaneBgColor;
  3. flex-shrink: 0;
  4. overflow: hidden;
  5. position: relative;
  6. transition: width .16s ease-in-out;
  7. width: 315px;
  8. z-index: $zindex0;
  9. &--closed {
  10. width: 0;
  11. }
  12. }
  13. .participants_pane-content {
  14. display: flex;
  15. flex-direction: column;
  16. font-weight: 600;
  17. height: 100%;
  18. width: 315px;
  19. & > *:first-child,
  20. & > *:last-child {
  21. flex-shrink: 0;
  22. }
  23. }
  24. .participant-avatar {
  25. margin: 8px 16px 8px 0;
  26. }
  27. @media (max-width: 580px) {
  28. .participants_pane {
  29. height: 100vh;
  30. height: -webkit-fill-available;
  31. left: 0;
  32. position: fixed;
  33. right: 0;
  34. top: 0;
  35. width: auto;
  36. &--closed {
  37. display: none;
  38. width: auto;
  39. }
  40. }
  41. .participants_pane-content {
  42. width: 100%;
  43. }
  44. }
  45. .jitsi-icon {
  46. &-dominant-speaker {
  47. background-color: #1EC26A;
  48. border-radius: 3px;
  49. }
  50. }