Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

_tile_view_overrides.scss 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /**
  2. * Various overrides outside of the filmstrip to style the app to support a
  3. * tiled thumbnail experience.
  4. */
  5. .tile-view {
  6. /**
  7. * Let the avatar grow with the tile.
  8. */
  9. .userAvatar {
  10. max-height: initial;
  11. max-width: initial;
  12. }
  13. /**
  14. * Hide various features that should not be displayed while in tile view.
  15. */
  16. #dominantSpeaker,
  17. #filmstripLocalVideoThumbnail,
  18. #largeVideoElementsContainer,
  19. #sharedVideo,
  20. .filmstrip__toolbar {
  21. display: none;
  22. }
  23. #localConnectionMessage,
  24. #remoteConnectionMessage,
  25. .watermark {
  26. z-index: $filmstripVideosZ + 1;
  27. }
  28. /**
  29. * The follow styling uses !important to override inline styles set with
  30. * javascript.
  31. *
  32. * TODO: These overrides should be more easy to remove and should be removed
  33. * when the components are in react so their rendering done declaratively,
  34. * making conditional styling easier to apply.
  35. */
  36. #largeVideoElementsContainer,
  37. #remoteConnectionMessage,
  38. #remotePresenceMessage {
  39. display: none !important;
  40. }
  41. #largeVideoContainer {
  42. background-color: $defaultBackground !important;
  43. }
  44. }