If you want to use bootstrap style from Kevin Brown's answer
https://github.com/select2/select2-bootstrap-theme
You add this css file to your page, keep select2 styles as default
<link href="/select2-bootstrap-theme/select2-bootstrap.min.css" type="text/css" rel="stylesheet" />
Then install the theme
$("#elem").select2({theme:"bootstrap"});
Also , use the .select2-bootstrap-prepend and .select2-bootstrap-append classes in .input-group shell elements to group buttons and select without problems.
source share