Browse Source

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 years ago
parent
commit
b3cae9a962
1 changed files with 1 additions and 7 deletions
  1. 1
    7
      css/_chat.scss

+ 1
- 7
css/_chat.scss View File

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

Loading…
Cancel
Save