浏览代码

fix(chat): allow smiley opener to expand in width

The chat icons are different on windows and mac, with
windows icons being bigger. By settings a specific
width on the smiley container, windows would see
part of the smiley cut off.
master
Leonard Kim 6 年前
父节点
当前提交
b3cae9a962
共有 1 个文件被更改,包括 1 次插入7 次删除
  1. 1
    7
      css/_chat.scss

+ 1
- 7
css/_chat.scss 查看文件

@@ -219,8 +219,6 @@
219 219
 
220 220
 #smileys {
221 221
     font-size: 20pt;
222
-    display: inline-block;
223
-    height: 26px;
224 222
     margin: auto;
225 223
     cursor: pointer;
226 224
 }
@@ -232,18 +230,14 @@
232 230
 
233 231
 #smileysarea {
234 232
     background-color: $newToolbarBackgroundColor;
235
-    border: 0px none;
236 233
     display: flex;
237
-    height: 70px;
238 234
     max-height: 150px;
239 235
     min-height: 35px;
240
-    min-width: 31px;
241
-    padding: 0px;
242 236
     overflow: hidden;
243
-    width: 17%;
244 237
 }
245 238
 
246 239
 .smiley-input {
240
+    display: flex;
247 241
     position: relative;
248 242
 }
249 243
 

正在加载...
取消
保存