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 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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. }
  120. .file-upload-btn {
  121. display: none;
  122. }
  123. .file-upload-label{
  124. font-size: 14px;
  125. font-weight: 600;
  126. line-height: 20px;
  127. margin-bottom: 8px;
  128. color: #669AEC;
  129. display: inline-flex;
  130. cursor: pointer;
  131. }
  132. .delete-image-icon {
  133. background: #3d3d3d;
  134. position: absolute;
  135. display: none;
  136. left: 96;
  137. bottom: 51;
  138. @media (min-width: 432px) and (max-width: 632px) {
  139. left: 51px
  140. }
  141. }
  142. .delete-image-icon:hover {
  143. display: block;
  144. }
  145. .thumbnail-container {
  146. position: relative;
  147. }
  148. .loading-content-text{
  149. margin-right: 15px;
  150. }
  151. .add-background{
  152. margin-right: 8px;
  153. }