瀏覽代碼

fix(chat): Hide scroll bar on chat input

Based on this suggestion https://github.com/jitsi/jitsi-meet/issues/9958
master
Vlad Piersec 4 年之前
父節點
當前提交
d36bd06b7b
共有 1 個檔案被更改,包括 6 行新增0 行删除
  1. 6
    0
      css/_chat.scss

+ 6
- 0
css/_chat.scss 查看文件

213
 }
213
 }
214
 
214
 
215
 #usermsg {
215
 #usermsg {
216
+    -ms-overflow-style: none;
216
     border: 0px none;
217
     border: 0px none;
217
     border-radius:0;
218
     border-radius:0;
218
     box-shadow: none;
219
     box-shadow: none;
221
     padding: 10px;
222
     padding: 10px;
222
     overflow-y: auto;
223
     overflow-y: auto;
223
     resize: none;
224
     resize: none;
225
+    scrollbar-width: none;
224
     width: 100%;
226
     width: 100%;
225
     word-break: break-word;
227
     word-break: break-word;
228
+
229
+    &::-webkit-scrollbar {
230
+        display: none;
231
+    }
226
 }
232
 }
227
 
233
 
228
 #usermsg:hover {
234
 #usermsg:hover {

Loading…
取消
儲存