Commit b4a2d0be1bdf41779575a4010942333e0ec5b19b
1 parent
cead6098
Exists in
master
and in
2 other branches
Adjusting participants list responsive show
Showing
2 changed files
with
7 additions
and
2 deletions
Show diff stats
amadeus/static/css/base/amadeus.css
@@ -1568,6 +1568,7 @@ div.dataTables_wrapper div.dataTables_paginate { | @@ -1568,6 +1568,7 @@ div.dataTables_wrapper div.dataTables_paginate { | ||
1568 | overflow-y: auto; | 1568 | overflow-y: auto; |
1569 | opacity: 0; | 1569 | opacity: 0; |
1570 | visibility: hidden; | 1570 | visibility: hidden; |
1571 | + display: none; | ||
1571 | } | 1572 | } |
1572 | 1573 | ||
1573 | #participants { | 1574 | #participants { |
subjects/templates/subjects/view.html
@@ -196,7 +196,7 @@ | @@ -196,7 +196,7 @@ | ||
196 | list.animate({ | 196 | list.animate({ |
197 | right : '-180px', | 197 | right : '-180px', |
198 | opacity: 0 | 198 | opacity: 0 |
199 | - }, 500).css({visibility: 'hidden'}); | 199 | + }, 500).css({display: "none", visibility: 'hidden'}); |
200 | 200 | ||
201 | $this.removeClass('open'); | 201 | $this.removeClass('open'); |
202 | } else { | 202 | } else { |
@@ -206,8 +206,12 @@ | @@ -206,8 +206,12 @@ | ||
206 | 206 | ||
207 | list.animate({ | 207 | list.animate({ |
208 | right : 0, | 208 | right : 0, |
209 | - opacity: 1 | 209 | + opacity: 1, |
210 | }, 500).css({visibility: 'visible'}); | 210 | }, 500).css({visibility: 'visible'}); |
211 | + | ||
212 | + setTimeout(function () { | ||
213 | + list.fadeIn(); | ||
214 | + }, 500); | ||
211 | } | 215 | } |
212 | }); | 216 | }); |
213 | }); | 217 | }); |