Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

_tile_view_overrides.scss 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. .avatar-container {
  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. #remoteConnectionMessage,
  24. .watermark {
  25. z-index: $filmstripVideosZ + 1;
  26. }
  27. /**
  28. * The follow styling uses !important to override inline styles set with
  29. * javascript.
  30. *
  31. * TODO: These overrides should be more easy to remove and should be removed
  32. * when the components are in react so their rendering done declaratively,
  33. * making conditional styling easier to apply.
  34. */
  35. #largeVideoElementsContainer,
  36. #remoteConnectionMessage,
  37. #remotePresenceMessage {
  38. display: none !important;
  39. }
  40. /**
  41. * Thumbnail popover menus can overlap other thumbnails. Setting an auto
  42. * z-index will allow AtlasKit InlineDialog's large z-index to be
  43. * respected and thereby display over elements in other thumbnails,
  44. * specifically the various status icons.
  45. */
  46. .remotevideomenu,
  47. .videocontainer__toptoolbar {
  48. z-index: auto;
  49. }
  50. }