A theme for Select2 v4 and Bootstrap 3.
npm install select2-bootstrap-themeA Select2 v4 Theme for Bootstrap 3
!select2-bootstrap-theme version

Demonstrations available at
select2.github.io/select2-bootstrap-theme
#### Compatibility
Built and tested with Bootstrap v3.3.7 and Select2 v4.0.3 in latest Chrome, Firefox and Safari (Mac) and Internet Explorer 11, 10 and 9 (should work in IE8).
#### Installation
You can download select2-bootstrap-theme from this GitHub repo, install it using Bower or npm – required if you want to integrate the Sass or Less sources in your build process – or source the compiled CSS directly from CDNJS or jsDelivr.
##### Install using Bower or npm/yarn
You may install select2-bootstrap-theme with Bower, npm or Yarn:
``shell
// Bower
bower install select2-bootstrap-theme
// npm
npm install select2-bootstrap-theme
// yarn
yarn add select2-bootstrap-theme
`
##### Source select2-bootstrap-theme from CDNJS or jsDelivr
select2-bootstrap-theme is also available on CDNJS and jsDelivr.
#### Usage
select2-bootstrap-theme only works with Select2 v4.x. Applying the theme requires select2-bootstrap.css referenced after the default select2.css that comes with Select2:
`html`
To apply the theme, tell Select2 to do so by passing bootstrap to the theme option when initializing Select2:
`js`
$( "#dropdown" ).select2({
theme: "bootstrap"
});
You may also set it as the default theme for all Select2 widgets like so:
`js`
$.fn.select2.defaults.set( "theme", "bootstrap" );
#### Changelog
##### 0.1.0-beta.10
* Compiled with grunt-sass v2.0.0 (was v1.2.1).
* Merged pull request #54 by @odahcam (and fixed it: :first-child/:not(:first-child)/:last-child for .select2-container--bootstrap won’t play nice in our case; we have to take the original
##### 0.1.0-beta.9
* Built on Bootstrap 3 v3.3.7 and corresponding bootstrap-sass.
* Prefixed all Sass and Less variables with s2bs to avoid conflicts and improve customizability as select2-bootstrap-theme does not "force" you to use (specific) Bootstrap Sass/Less variables anymore; a nice side effect is that we now also provide (a raw) documentation for the inherited Bootstrap variables in one place.font-size
* Added Sass and Less variables to override select2-bootstrap-themes default , color and vertical padding for .select2-results__group. [#19].select2-selection__clear
* Added Sass and Less variables replacing hardcoded values in styles for , .select2-selection__choice__remove and .select2-selection__choice..select2-results__option
* Added padding to root level – fixes alignment of .select2-results__message and .select2-results__option--load-more. [#28]font-family
* Removed definition for .select2-container--bootstrap .select2-selection. [#50]bower.json
* Added Select2 and Bootstrap as dependencies in – fingers crossed, low hopes. [#52]bower.json
* Added "repository" to .
* Sass is now compiled using LibSass/node-sass instead of Ruby Sass (and grunt-sass instead of grunt-contrib-sass).
* Decreased Sass number precision from 9 to 8 – now Sass numbers really matches its Less counterpart.
* Added Grunt task to compile Less and altered Less test (via grunt-contrib-less).
* Switched Sass and Less source tab size/indention from four to two spaces.
* Updated development dependencies: Autoprefixer to v6.4.0 (was v6.3.6), diff to v2.2.3 (was v2.2.2), grunt-gh-pages to v1.2.0 (was v1.1.0).
* Docs: Added "plain" (not nested in an
##### 0.1.0-beta.8
* Fixed bower.jsons "main" field. [#45]
* Do no re-assign the $form-control-default-box-shadow, $form-control-focus-box-shadow, and $form-control-transition Sass variables if they are already assigned. [#45]
##### 0.1.0-beta.7
* Fixed version number in distribution files.
##### 0.1.0-beta.6
* Fixed a bug where math would not compile correctly in Less v2.6.0. [#36]
* Fixed version number for Bower and NPM.
* Docs: Updated AnchorJS to latest version.
##### 0.1.0-beta.5
* Updated all development dependencies.
* Added Browsersync, Autoprefixer (as required by bootstrap-sass) and scss2less to the build process.
* Built on Bootstrap 3 v3.3.6 and corresponding bootstrap-sass.
* Rewrote the sizing class CSS to work with containerCssClass option available with the full Select2 build. [#34]
* Added copyright and license information. [#43]
##### 0.1.0-beta.4
* Added missing styles for .select2-container--focus. [#18].form-inline
* Added support for Bootstrap's . [#13].select2-selection__clear
* Added basic styles for in .select2-selection--multiple. [#11]
* Brought Less source in line with the Sass version and fixed Less patch file and test. [3e86f34]
##### 0.1.0-beta.3
* Fixed specifity problems with .form-control.select2-hidden-accessible.
##### 0.1.0-beta.2
* Added Less version.
##### 0.1.0-beta.1
#### Contributing
The project offers Less and Sass sources for building select2-bootstrap.css; both make use of variables from either Bootstrap (Less) or Bootstrap for Sass. The demo pages are built using Jekyll and there are a bunch of Grunt tasks to ease development.
With Jekyll, node.js and Less installed, run
`sh`
npm install
to install all necessary development dependencies (Sass is compiled vLibSass/node-sass).
* grunt build builds docsgrunt serve
* builds docs and serves them via Jekyll's --watch flag on http://localhost:3000
Develop in src/select2-bootstrap.scss and test your changes using grunt serve. Ideally, port your changes to lib/select2-bootstrap.less and make sure tests are passing to verify that both Less and Sass compile down to the target CSS via npm test.
grunt scss2less helps in converting the Sass source to its Less counterpart (and overwrites the existing src/select2-bootstrap.less`), but doesn't do the full job – please review the changes to the Less source file and make the necessary adjustments.
#### Copyright and license
The license is available within the repository in the LICENSE file.