Commit 74d9dca127adcfb6dcc5b03b9b9b28c7ba3142b3
1 parent
0cea598e
Exists in
master
and in
2 other branches
Making participants list unclickable when hidden
Showing
2 changed files
with
5 additions
and
2 deletions
Show diff stats
amadeus/static/css/base/amadeus.css
subjects/templates/subjects/view.html
... | ... | @@ -195,7 +195,8 @@ |
195 | 195 | |
196 | 196 | list.animate({ |
197 | 197 | right : '-315px', |
198 | - opacity: 0 | |
198 | + opacity: 0, | |
199 | + 'z-index': '-1' | |
199 | 200 | }, 500); |
200 | 201 | |
201 | 202 | $this.removeClass('open'); |
... | ... | @@ -206,7 +207,8 @@ |
206 | 207 | |
207 | 208 | list.animate({ |
208 | 209 | right : 0, |
209 | - opacity: 1 | |
210 | + opacity: 1, | |
211 | + 'z-index': '1' | |
210 | 212 | }, 500); |
211 | 213 | } |
212 | 214 | }); | ... | ... |