Not sure which ones are broken. I know I’m going spend some time this weekend to get the bootstrap datepicker working again. If anyone can highlight the major ones, I can spend time helping to unblock.
I use the bootstrap-sass-official bower pkg. Works very well for me. Overriding the defaults can be a pain if one doesn’t use precisely the same selectors as in BS’s styles. Overriding the variables where possible will save much grief, and no more !important.
bower install --save bootstrap-sass-official
// ember-cli-build.js
// if you want the JS as well
app.import('bower_components/bootstrap-sass-official/assets/javascripts/bootstrap.js');
// app/styles/app.scss
@import "partials/variables";
@import "bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap";
//other @imports ...
// app/styles/partials/_variables.scss
$text-fill: #444;
$z-modal : 10000;
// etc.
Note that i’m not importing the SCSS in build. The SASS compiler will do the right thing.