Browse Source

fix(virtual-background): Hide scrollbar on loading action.

master
tudordan7 4 years ago
parent
commit
3453e49182

+ 4
- 0
css/modals/virtual-background/_virtual-background.scss View File

51
         margin-right: 5px;
51
         margin-right: 5px;
52
     }
52
     }
53
 }
53
 }
54
+
55
+.modal-dialog-form .virtual-background-loading {
56
+    overflow: hidden;
57
+}
54
 .file-upload-btn {
58
 .file-upload-btn {
55
     display: none;
59
     display: none;
56
 }
60
 }

+ 1
- 1
react/features/virtual-background/components/VirtualBackgroundDialog.js View File

139
             titleKey = { 'virtualBackground.title' }
139
             titleKey = { 'virtualBackground.title' }
140
             width = 'small'>
140
             width = 'small'>
141
             {loading ? (
141
             {loading ? (
142
-                <div>
142
+                <div className = 'virtual-background-loading'>
143
                     <span className = 'loading-content-text'>{t('virtualBackground.pleaseWait')}</span>
143
                     <span className = 'loading-content-text'>{t('virtualBackground.pleaseWait')}</span>
144
                     <Spinner
144
                     <Spinner
145
                         isCompleting = { false }
145
                         isCompleting = { false }

Loading…
Cancel
Save