alxlit / bootstrap-chosen

An alternate stylesheet for Chosen that integrates with Bootstrap.
848 stars 305 forks source link

Separate CSS file of bootstrap-chosen #27

Open vbauer opened 10 years ago

vbauer commented 10 years ago

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.

pinhead84 commented 10 years ago

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
dimsav commented 10 years ago

@pinhead84 thanks for the info!

alex94cp commented 8 years ago

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