Caret too low on small and mini buttons
Created by: fredrock
Small and mini buttons contain different metrics, which make the margin-top of 7px too much.
To hack-fix the issue I use the following classes:
.btn-small .caret { margin-top: 6px; }
.btn-mini .caret { margin-top: 5px; }