Commit c5c42a0bc94433230d3aa8e73f43e0d64078ce45
1 parent
af477137
Exists in
master
and in
25 other branches
chat window should be displayed on top of all
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
public/stylesheets/chat.css
... | ... | @@ -8,6 +8,7 @@ |
8 | 8 | background-color: #FFF; |
9 | 9 | box-shadow: -3px 0px 5px #888; |
10 | 10 | transition: width 0.3s ease-in; |
11 | + z-index: 200; | |
11 | 12 | } |
12 | 13 | |
13 | 14 | #chat.opened { |
... | ... | @@ -123,6 +124,7 @@ |
123 | 124 | -webkit-border-radius: 5px; |
124 | 125 | background: white; |
125 | 126 | border: 1px solid #888; |
127 | + z-index: 10; | |
126 | 128 | } |
127 | 129 | #buddy-list .toolbar .dialog-error p { |
128 | 130 | margin: 0 0 5px 0; | ... | ... |