https://i.sstatic.net/IERia.png
This is the code snippet for generating a dropdown menu:
<div class="btn-group pull-right elipsis-margin open">
<button type="button" class="btn btn-link btn-action dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true" data-validation-status="ok">
<i class="fa fa-ellipsis-v fa-lg"></i>
</button>
<ul class="dropdown-menu">
<li><a href="#shareModal" data-toggle="modal" class="btn-action"><i class="fa fa-share fa-fw"></i>Share</a></li>
<li><a href="#"><i class="fa fa-pencil fa-fw"></i>Edit</a></li>
<li role="separator" class="divider"></li>
<li><a href="#unshareModal" data-toggle="modal" class="btn-action"><i class="fa fa-ban fa-fw"></i>Unshare</a></li>
</ul>
The placement of this div is within a table body element. The dropdown appears to be blocked by other table cells, despite having a z-index of 1000. It should theoretically display correctly.
If you have any insights or suggestions, they would be greatly appreciated.