alxlit/bootstrap-chosen

Separate CSS file of bootstrap-chosen

vbauer opened this issue · 3 comments

Is it possible to make separate CSS file file without needs to have bootstrap sources and glue them?

Use case example: Bootstrap is located on CDN.

The following procedure worked for me:

$ git clone https://github.com/alxlit/bootstrap-chosen
$ cd bootstrap-chosen
bootstrap-chosen $ git clone https://github.com/twbs/bootstrap
bootstrap-chosen $ vi bootstrap-chosen.less

// Add this before the first @import
@import "bootstrap/less/variables.less";
@import "bootstrap/less/mixins.less";

bootstrap-chosen $ lessc bootstrap-chosen.less > bootstrap-chosen.css

@pinhead84 thanks for the info!

Is anyone working on this? Would an explicit dependency on bootstrap 3 be acceptable for bootstrap-chosen?