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.

_virtual-background.scss 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. .virtual-background-dialog {
  2. margin-left: -10px;
  3. position: relative;
  4. max-height: 300px;
  5. color: white;
  6. display: inline-grid;
  7. grid-template-columns: auto auto auto auto auto;
  8. column-gap: 9px;
  9. cursor: pointer;
  10. .desktop-share:hover,
  11. .thumbnail:hover,
  12. .blur:hover,
  13. .slight-blur:hover,
  14. .virtual-background-none:hover {
  15. opacity: 0.5;
  16. border: 2px solid #99bbf3;
  17. @media (max-width: 632px) {
  18. height: 60px;
  19. width: 60px;
  20. }
  21. }
  22. .background-option {
  23. margin-top: 8px;
  24. border-radius: 6px;
  25. height: 60px;
  26. width: 107px;
  27. text-align: center;
  28. justify-content: center;
  29. font-weight: bold;
  30. box-sizing: border-box;
  31. display: flex;
  32. align-items: center;
  33. }
  34. .thumbnail {
  35. object-fit: cover;
  36. }
  37. .thumbnail:hover ~ .delete-image-icon {
  38. display: block;
  39. }
  40. .thumbnail-selected {
  41. object-fit: cover;
  42. border: 2px solid #246fe5;
  43. }
  44. .blur {
  45. box-shadow: inset 0 0 12px #000000;
  46. background: #7e8287;
  47. padding: 0 10px;
  48. }
  49. .blur-selected {
  50. box-shadow: inset 0 0 12px #000000;
  51. background: #7e8287;
  52. border: 2px solid #246fe5;
  53. padding: 0 10px;
  54. }
  55. .slight-blur {
  56. box-shadow: inset 0 0 12px #000000;
  57. background: #a4a4a4;
  58. padding: 0 10px;
  59. }
  60. .slight-blur-selected {
  61. box-shadow: inset 0 0 12px #000000;
  62. background: #a4a4a4;
  63. border: 2px solid #246fe5;
  64. padding: 0 10px;
  65. }
  66. .virtual-background-none {
  67. background: #525252;
  68. padding: 0 10px;
  69. }
  70. .none-selected {
  71. background: #525252;
  72. border: 2px solid #246fe5;
  73. padding: 0 10px;
  74. }
  75. .desktop-share {
  76. background: #525252;
  77. }
  78. .desktop-share-selected {
  79. background: #525252;
  80. border: 2px solid #246fe5;
  81. padding: 0 10px;
  82. }
  83. @media (max-width: 632px) {
  84. font-size: 1.5vw;
  85. .desktop-share,
  86. .virtual-background-none,
  87. .thumbnail,
  88. .blur,
  89. .slight-blur {
  90. height: 60px;
  91. width: 60px;
  92. }
  93. .desktop-share-selected,
  94. .thumbnail-selected,
  95. .none-selected,
  96. .blur-selected,
  97. .slight-blur-selected {
  98. height: 60px;
  99. width: 60px;
  100. }
  101. }
  102. @media (max-width: 360px) {
  103. grid-template-columns: auto auto auto;
  104. }
  105. }
  106. .modal-dialog-form .virtual-background-loading {
  107. overflow: hidden;
  108. position: fixed;
  109. left: 50%;
  110. margin-top: 10px;
  111. transform: translateX(-50%);
  112. }
  113. .modal-dialog-form .video-preview {
  114. height: 250px;
  115. }
  116. .file-upload-btn {
  117. display: none;
  118. }
  119. .file-upload-label {
  120. font-size: 14px;
  121. font-weight: 600;
  122. line-height: 20px;
  123. margin-left: -10px;
  124. margin-top: 16px;
  125. margin-bottom: 8px;
  126. color: #669aec;
  127. display: inline-flex;
  128. cursor: pointer;
  129. }
  130. .delete-image-icon {
  131. background: #3d3d3d;
  132. position: absolute;
  133. display: none;
  134. left: 96;
  135. bottom: 51;
  136. @media (max-width: 632px) {
  137. left: 51px;
  138. }
  139. }
  140. .delete-image-icon:hover {
  141. display: block;
  142. }
  143. .thumbnail-container {
  144. position: relative;
  145. &:focus-within {
  146. .thumbnail ~ .delete-image-icon {
  147. display: block;
  148. }
  149. }
  150. }
  151. .add-background {
  152. margin-right: 8px;
  153. }
  154. .apply-background-btn {
  155. margin-top: 16px;
  156. float: right;
  157. }
  158. .video-background-preview-entry {
  159. margin-left: -10px;
  160. height: 250px;
  161. width: 570px;
  162. margin-bottom: 8px;
  163. z-index: 2;
  164. @media (max-width: 632px) {
  165. max-width: 336;
  166. }
  167. }
  168. .virtual-background-preview-video {
  169. margin-left: -10;
  170. border-radius: 6px;
  171. height: 100%;
  172. object-fit: cover;
  173. width: 100%;
  174. }
  175. .video-preview-loader {
  176. border-radius: 6px;
  177. background-color: transparent;
  178. height: 250px;
  179. margin-bottom: 8px;
  180. width: 572px;
  181. position: fixed;
  182. z-index: 2;
  183. @media (min-width: 432px) and (max-width: 632px) {
  184. width: 340px;
  185. }
  186. }
  187. .video-preview-loader svg {
  188. position: absolute;
  189. top: 40%;
  190. left: 45%;
  191. }