選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

_filmstrip.scss 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. %align-right {
  2. @include flex();
  3. flex-direction: row-reverse;
  4. flex-wrap: nowrap;
  5. justify-content: flex-start;
  6. }
  7. .filmstrip {
  8. position: absolute;
  9. bottom: 0;
  10. right: 0;
  11. padding: 10px 5px;
  12. @extend %align-right;
  13. &__toolbar {
  14. @include flex();
  15. flex-direction: column-reverse;
  16. flex-wrap: nowrap;
  17. position: relative;
  18. z-index: 1; // Set z-index to make element visible
  19. width: 17px;
  20. button {
  21. font-size: 14px;
  22. line-height: 1.2;
  23. text-align: center;
  24. background: transparent;
  25. opacity: 0.7;
  26. height: auto;
  27. width: 100%;
  28. padding: 0;
  29. margin: 0;
  30. border: none;
  31. outline: none;
  32. -webkit-appearance: none;
  33. &:hover {
  34. opacity: 1;
  35. }
  36. i {
  37. cursor: pointer;
  38. }
  39. }
  40. }
  41. &__videos {
  42. @extend %align-right;
  43. position:relative;
  44. height:196px;
  45. padding: 0;
  46. bottom: 0;
  47. width:auto;
  48. border: 2px solid transparent;
  49. z-index: 5;
  50. transition: bottom 2s;
  51. overflow: visible !important;
  52. font-size: 0pt; /*!!!Removes the gap between the local video container and the remote videos.*/
  53. &.hidden {
  54. bottom: -196px;
  55. }
  56. .videocontainer {
  57. display: none;
  58. position: relative;
  59. background-size: contain;
  60. border: 2px solid transparent;
  61. border-radius:1px;
  62. margin: 0 $thumbnailVideoMargin;
  63. &.videoContainerFocused, &:hover {
  64. cursor: hand;
  65. }
  66. /**
  67. * Focused video thumbnail.
  68. */
  69. &.videoContainerFocused {
  70. transition-duration: 0.5s;
  71. -webkit-transition-duration: 0.5s;
  72. -webkit-animation-name: greyPulse;
  73. -webkit-animation-duration: 2s;
  74. -webkit-animation-iteration-count: 1;
  75. border: 2px solid $videoThumbnailSelected !important;
  76. box-shadow: inset 0 0 3px $videoThumbnailSelected,
  77. 0 0 3px $videoThumbnailSelected !important;
  78. }
  79. .remotevideomenu {
  80. display: none;
  81. }
  82. /**
  83. * Hovered video thumbnail.
  84. */
  85. &:hover {
  86. cursor: hand;
  87. border: 2px solid $videoThumbnailHovered;
  88. box-shadow: inset 0 0 3px $videoThumbnailHovered,
  89. 0 0 3px $videoThumbnailHovered;
  90. .remotevideomenu {
  91. display: inline-block;
  92. }
  93. }
  94. /* With TemasysWebRTC plugin <object/> element is used
  95. instead of <video/> */
  96. & > video,
  97. & > object {
  98. cursor: hand;
  99. border-radius:1px;
  100. object-fit: cover;
  101. overflow: hidden;
  102. }
  103. }
  104. }
  105. }