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.

_tile_view_overrides.scss 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. #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. /**
  45. * Thumbnail popover menus can overlap other thumbnails. Setting an auto
  46. * z-index will allow AtlasKit InlineDialog's large z-index to be
  47. * respected and thereby display over elements in other thumbnails,
  48. * specifically the various status icons.
  49. */
  50. .remotevideomenu,
  51. .videocontainer__toptoolbar {
  52. z-index: auto;
  53. }
  54. }