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.2KB

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