diff --git a/amadeus/static/css/base/amadeus.css b/amadeus/static/css/base/amadeus.css index ba10164..c2cdc00 100755 --- a/amadeus/static/css/base/amadeus.css +++ b/amadeus/static/css/base/amadeus.css @@ -1,3 +1,7 @@ +body { + overflow-x: hidden; +} + ul, li { list-style-type: none; text-decoration: none; @@ -1557,7 +1561,8 @@ div.dataTables_wrapper div.dataTables_paginate { position: absolute; top: 5px; right: -315px; - overflow-y: auto + overflow-y: auto; + opacity: 0; } #participants { @@ -1579,12 +1584,11 @@ div.dataTables_wrapper div.dataTables_paginate { position: absolute; top: -25px; - right: -25px; + right: -20px; cursor: pointer; padding: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; - } #participants.open { diff --git a/subjects/templates/subjects/view.html b/subjects/templates/subjects/view.html index 69e42c5..873ecd6 100644 --- a/subjects/templates/subjects/view.html +++ b/subjects/templates/subjects/view.html @@ -73,7 +73,7 @@ -
{{subject.description|safe}}
{% if has_subject_permissions %} @@ -190,11 +190,12 @@ if ($this.hasClass('open')) { $this.animate({ - right : '-25px' + right : '-20px' }, 500); list.animate({ - right : '-315px' + right : '-315px', + opacity: 0 }, 500); $this.removeClass('open'); @@ -204,7 +205,8 @@ }, 500).addClass('open'); list.animate({ - right : 0 + right : 0, + opacity: 1 }, 500); } }); -- libgit2 0.21.2