Commit 45aff55e11affda69f1024ae5a7954627a4da088

Authored by Zambom
1 parent 74d9dca1

Changing method of making participants list unclickable when hidden

amadeus/static/css/base/amadeus.css
... ... @@ -1563,7 +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 + visibility: hidden;
1567 1567 }
1568 1568  
1569 1569 #participants {
... ...
subjects/templates/subjects/view.html
... ... @@ -195,9 +195,8 @@
195 195  
196 196 list.animate({
197 197 right : '-315px',
198   - opacity: 0,
199   - 'z-index': '-1'
200   - }, 500);
  198 + opacity: 0
  199 + }, 500).css({visibility: 'hidden'});
201 200  
202 201 $this.removeClass('open');
203 202 } else {
... ... @@ -207,9 +206,8 @@
207 206  
208 207 list.animate({
209 208 right : 0,
210   - opacity: 1,
211   - 'z-index': '1'
212   - }, 500);
  209 + opacity: 1
  210 + }, 500).css({visibility: 'visible'});
213 211 }
214 212 });
215 213 });
... ...