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.

_vertical_filmstrip_overrides.scss 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /**
  2. * Rotate the hide filmstrip icon so it points towards the right edge
  3. * of the screen.
  4. */
  5. .vertical-filmstrip .filmstrip__toolbar {
  6. transform: rotate(-90deg);
  7. }
  8. /**
  9. * Overrides for video containers that should not be centered aligned to avoid=
  10. * clashing with the filmstrip.
  11. */
  12. .vertical-filmstrip #etherpad,
  13. .vertical-filmstrip #sharedvideo {
  14. text-align: left;
  15. }
  16. /**
  17. * Overrides for small videos in vertical filmstrip mode.
  18. */
  19. .vertical-filmstrip .filmstrip__videos .videocontainer {
  20. /**
  21. * Move status icons to the bottom right of the thumbnail.
  22. */
  23. .videocontainer__toolbar {
  24. /**
  25. * FIXME: disable pointer to allow any elements moved below to still
  26. * be clickable. The real fix would to make sure those moved elements
  27. * are actually part of the toolbar instead of positioning being faked.
  28. */
  29. pointer-events: none;
  30. text-align: right;
  31. > div {
  32. pointer-events: none;
  33. }
  34. .right {
  35. float: none;
  36. margin: auto;
  37. }
  38. .toolbar-icon {
  39. pointer-events: all;
  40. }
  41. }
  42. /**
  43. * Apply hardware acceleration to prevent flickering on scroll. The
  44. * selectors are specific to icon wrappers to prevent fixed position dialogs
  45. * and tooltips from getting a new location context due to translate3d.
  46. */
  47. .connection-indicator,
  48. .remote-video-menu-trigger,
  49. .indicator-icon-container {
  50. transform: translate3d(0, 0, 0);
  51. }
  52. .indicator-container {
  53. float: none;
  54. }
  55. /**
  56. * Move the remote video menu trigger to the bottom left of the video
  57. * thumbnail.
  58. */
  59. .remotevideomenu,
  60. .remote-video-menu-trigger {
  61. bottom: 0;
  62. left: 0;
  63. top: auto;
  64. right: auto;
  65. }
  66. .remote-video-menu-trigger {
  67. margin-bottom: 7px;
  68. }
  69. }
  70. /**
  71. * Overrides for quality labels in filmstrip only mode. The styles adjust the
  72. * labels' positioning as the filmstrip itself or filmstrip's remote videos
  73. * appear and disappear.
  74. *
  75. * The class with-filmstrip is for when the filmstrip is visible.
  76. * The class without-filmstrip is for when the filmstrip has been toggled to
  77. * be hidden.
  78. * The class opening is for when the filmstrip is transitioning from hidden
  79. * to visible.
  80. */
  81. .vertical-filmstrip .large-video-labels {
  82. &.with-filmstrip {
  83. right: 150px;
  84. }
  85. &.with-filmstrip.opening {
  86. transition: 0.9s;
  87. transition-timing-function: ease-in-out;
  88. }
  89. &.without-filmstrip {
  90. transition: 1.2s ease-in-out;
  91. transition-delay: 0.1s;
  92. }
  93. }