After upgrading to latest
, it seems we cannot select posts to move them anymore. The CSS rule is as follows:
.topic-post article.boxed .select-posts{position:absolute;left:100%;z-index:490;top:8px;width:200px;height:100px;background-color:#fff}
Also setting the z-index
from 490
to something higher, as in
#selected-posts{width:200px;position:fixed;z-index:1000;background-color:#d1f0ff;border:1px solid #08c;padding:5px;margin-bottom:5px;right:10px}
didn’t help. It seems the .select-posts
items cannot escape
.topic-body{overflow: hidden;}
What should I do?