From 74d9dca127adcfb6dcc5b03b9b9b28c7ba3142b3 Mon Sep 17 00:00:00 2001 From: Zambom Date: Fri, 31 Mar 2017 21:38:25 -0300 Subject: [PATCH] Making participants list unclickable when hidden --- amadeus/static/css/base/amadeus.css | 1 + subjects/templates/subjects/view.html | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/amadeus/static/css/base/amadeus.css b/amadeus/static/css/base/amadeus.css index f2a5e19..e63453a 100755 --- a/amadeus/static/css/base/amadeus.css +++ b/amadeus/static/css/base/amadeus.css @@ -1563,6 +1563,7 @@ div.dataTables_wrapper div.dataTables_paginate { right: -315px; overflow-y: auto; opacity: 0; + z-index: -1; } #participants { diff --git a/subjects/templates/subjects/view.html b/subjects/templates/subjects/view.html index 117be0a..d28102d 100644 --- a/subjects/templates/subjects/view.html +++ b/subjects/templates/subjects/view.html @@ -195,7 +195,8 @@ list.animate({ right : '-315px', - opacity: 0 + opacity: 0, + 'z-index': '-1' }, 500); $this.removeClass('open'); @@ -206,7 +207,8 @@ list.animate({ right : 0, - opacity: 1 + opacity: 1, + 'z-index': '1' }, 500); } }); -- libgit2 0.21.2