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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. .virtual-background-dialog {
  2. display: inline-grid;
  3. grid-template-columns: auto auto auto auto auto auto auto;
  4. max-width: 370px;
  5. cursor: pointer;
  6. .thumbnail {
  7. border-radius: 10px;
  8. object-fit: cover;
  9. padding: 5px;
  10. height: 40px;
  11. width: 40px;
  12. }
  13. .thumbnail:hover ~ .delete-image-icon {
  14. display: block;
  15. }
  16. .thumbnail-selected {
  17. border-radius: 10px;
  18. object-fit: cover;
  19. padding: 5px;
  20. height: 40px;
  21. width: 40px;
  22. border: 2px solid #a4b8d1;
  23. }
  24. .blur-selected {
  25. border-radius: 10px;
  26. border: 2px solid #a4b8d1;
  27. }
  28. .virtual-background-none {
  29. font-weight: bold;
  30. padding: 5px;
  31. height: 34px;
  32. width: 34px;
  33. border-radius: 10px;
  34. border: 1px solid #a4b8d1;
  35. text-align: center;
  36. vertical-align: middle;
  37. line-height: 35px;
  38. margin-right: 5px;
  39. }
  40. .none-selected {
  41. font-weight: bold;
  42. padding: 5px;
  43. height: 34px;
  44. width: 34px;
  45. border-radius: 10px;
  46. border: 2px solid #a4b8d1;
  47. text-align: center;
  48. vertical-align: middle;
  49. line-height: 35px;
  50. margin-right: 5px;
  51. }
  52. }
  53. .file-upload-btn {
  54. display: none;
  55. }
  56. .custom-file-upload {
  57. font-size: x-large;
  58. font-weight: bold;
  59. display: inline-block;
  60. padding: 4px;
  61. height: 35px;
  62. width: 35px;
  63. border-radius: 10px;
  64. border: 1px solid #a4b8d1;
  65. text-align: center;
  66. vertical-align: middle;
  67. line-height: 35px;
  68. margin-left: 5px;
  69. cursor: pointer;
  70. }
  71. .delete-image-icon {
  72. position: absolute;
  73. display: none;
  74. left: 36;
  75. bottom: 36;
  76. }
  77. .delete-image-icon:hover {
  78. display: block;
  79. }
  80. .thumbnail-container {
  81. position: relative;
  82. }
  83. .loading-content-text{
  84. margin-right: 15px;
  85. }