I recently started using a Bootstrap dashboard template created by Creative Tim. I am attempting to incorporate a dropdown list into a table cell, following the standard Bootstrap format:
<div class="btn-group">
<button type="button" class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false>
<span class="caret"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right">
<li>
<a href="#">Link1</a>
</li>
<li>
<a href="#">Link2</a>
</li>
</ul>
</div>
However, the default styling of the dropdown adds a pointer that is left-aligned, as shown here: https://i.sstatic.net/f9vuc.png
I would like to know how I can adjust the styling so that the pointer aligns to the right instead.
I have noticed that the desired alignment exists in the dropdowns at the top of the page, demonstrated here: https://i.sstatic.net/krc9l.png
Unfortunately, I have not been able to replicate this outside of the navigation panel. You can view the specific page where I am working on this issue here (please note that there are many styles included, making it difficult to upload to JSFiddle):