I have created a bootstrap pager using the code below.
<style>
.navigation-bar .pagination {
margin-top: 0;
}
</style>
<div class="navigation-bar">
<span class="pull-left"><strong>Total record(s) 1000</strong></span>
<ul class="pagination pull-right">
<li>
<a href="#"><span class="glyphicon glyphicon-search"></span> Search</a>
</li>
<li>
<a style="padding: 6px;"><div>Filter By<select><option>1</option><option>2</option><option>3</option></select></div></a>
</li>
<li>
<a href="#"><span class="glyphicon glyphicon-fast-backward"></span> First</a>
</li>
<li>
<a href="#"><span class="glyphicon glyphicon-backward"></span> Previous</a>
</li>
<li>
<a href="#"><span></span> 1</a>
</li>
<li>
<a href="#"><span></span> 2</a>
</li>
<li>
<a href="#"><span></span> 3</a>
</li>
<li>
<a href="#"><span class="glyphicon glyphicon-forward"></span> Next</a>
</li>
<li>
<a href="#"><span class="glyphicon glyphicon-fast-forward"></span> Last</a>
</li>
</ul>
The issue is that the drop-down control is not at the same height as the others.
https://i.sstatic.net/U99EK.png
Please share your suggestions with me.