Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

_participants-pane.scss 911B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. }
  10. .participants_pane-content {
  11. display: flex;
  12. flex-direction: column;
  13. font-weight: 600;
  14. height: 100%;
  15. width: 315px;
  16. & > *:first-child,
  17. & > *:last-child {
  18. flex-shrink: 0;
  19. }
  20. }
  21. @media (max-width: 580px) {
  22. .participants_pane {
  23. height: 100vh;
  24. height: -webkit-fill-available;
  25. left: 0;
  26. position: fixed;
  27. right: 0;
  28. top: 0;
  29. width: auto;
  30. }
  31. .participants_pane-content {
  32. width: 100%;
  33. }
  34. }
  35. .jitsi-icon {
  36. &-dominant-speaker {
  37. background-color: #1EC26A;
  38. border-radius: 3px;
  39. }
  40. }
  41. .mobile-browser.shift-right {
  42. .participants_pane {
  43. z-index: -1;
  44. }
  45. }