Commit 74d9dca127adcfb6dcc5b03b9b9b28c7ba3142b3

Authored by Zambom
1 parent 0cea598e

Making participants list unclickable when hidden

amadeus/static/css/base/amadeus.css
... ... @@ -1563,6 +1563,7 @@ div.dataTables_wrapper div.dataTables_paginate {
1563 1563 right: -315px;
1564 1564 overflow-y: auto;
1565 1565 opacity: 0;
  1566 + z-index: -1;
1566 1567 }
1567 1568  
1568 1569 #participants {
... ...
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 });
... ...