Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

_vertical_filmstrip_overrides.scss 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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-icon-container {
  53. display: inline-block;
  54. }
  55. .indicator-container {
  56. float: none;
  57. }
  58. /**
  59. * Move the remote video menu trigger to the bottom left of the video
  60. * thumbnail.
  61. */
  62. .remotevideomenu,
  63. .remote-video-menu-trigger {
  64. bottom: 0;
  65. left: 0;
  66. top: auto;
  67. right: auto;
  68. }
  69. .remote-video-menu-trigger {
  70. margin-bottom: 7px;
  71. margin-left: $remoteVideoMenuIconMargin;
  72. }
  73. }
  74. /**
  75. * Overrides for quality labels in filmstrip only mode. The styles adjust the
  76. * labels' positioning as the filmstrip itself or filmstrip's remote videos
  77. * appear and disappear.
  78. *
  79. * The class with-filmstrip is for when the filmstrip is visible.
  80. * The class without-filmstrip is for when the filmstrip has been toggled to
  81. * be hidden.
  82. * The class opening is for when the filmstrip is transitioning from hidden
  83. * to visible.
  84. */
  85. .vertical-filmstrip .large-video-labels {
  86. &.with-filmstrip {
  87. right: 150px;
  88. }
  89. &.with-filmstrip.opening {
  90. transition: 0.9s;
  91. transition-timing-function: ease-in-out;
  92. }
  93. &.without-filmstrip {
  94. transition: 1.2s ease-in-out;
  95. transition-delay: 0.1s;
  96. }
  97. }