Commit 22e67b372fff3b568dbf10f7d612df2681c4ccd4

Authored by Victor Costa
1 parent 9d016a77

Small fixes in chat ui

Showing 1 changed file with 8 additions and 3 deletions   Show diff stats
public/stylesheets/chat.css
... ... @@ -33,22 +33,24 @@
33 33 padding-top: 10px;
34 34 text-decoration: none;
35 35 color: rgb(238, 238, 238);
  36 + height: 44px;
  37 + overflow: hidden;
36 38 }
37 39 #buddy-list .buddy-list li a .name, .occupant-list li a .name {
38 40 vertical-align: top;
39 41 margin-left: 5px;
40 42 }
41 43 #buddy-list .buddy-list li a img, .occupant-list li a img, #chat .avatar {
42   - height: 32px;
43   - max-width: 32px;
44 44 border-radius: 5px;
  45 + width: 32px;
  46 + max-height: 40px;
45 47 }
46 48 #buddy-list .buddy-list li.offline, .occupant-list li.offline {
47 49 display: none;
48 50 }
49 51 #chat #buddy-list .toolbar {
50 52 border: 0;
51   - height: 40px;
  53 + height: 45px;
52 54 background-color: rgb(39, 39, 39);
53 55 border-bottom: 1px solid #383838;
54 56 }
... ... @@ -241,6 +243,9 @@
241 243 background: #585858;
242 244 border: 1px solid #6B6B6B;
243 245 }
  246 +#chat #user-status {
  247 + padding: 2px 4px;
  248 +}
244 249 #chat .user-status a {
245 250 color: rgb(224, 224, 224);
246 251 }
... ...