Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect readme instructions for CSS #48

Open
bluengreen opened this issue Jan 9, 2017 · 3 comments
Open

Incorrect readme instructions for CSS #48

bluengreen opened this issue Jan 9, 2017 · 3 comments

Comments

@bluengreen
Copy link

This section is incorrect in my app. Not sure why or how you get the actual scss into your project since its a link to the other repo. But this section doesn't work

If you are using SCSS, modify your application.css.scss

// import bootstrap-sprockets before bootstrap if using bootstrap >= 3.2
@import 'bootstrap-sprockets';
@import 'bootstrap';
@import 'bootstrap-datetimepicker';

application.scss is now the default.

And @import 'bootstrap-datetimepicker'; should be
@import 'bootstrap-datetimepicker.css';

Thanks

@skuark
Copy link

skuark commented Jan 18, 2017

Same problem, but to import bootstrap-datetimepicker.css don't solves the problem for me: the CSS file is not loading really, you can see it in rails log or in the browser console (Chrome).

@bluengreen It is working for you with .css extension? Did you found another solution. Thanks.

@skuark
Copy link

skuark commented Jan 18, 2017

Oh, I've found a solution. This application.scss works for me:

/*
 *= require_tree .
 *= require_self
 *= require bootstrap-datetimepicker
 */

@import 'bootstrap-sprockets';
@import 'bootstrap';

@rdavid369
Copy link

@bluengreen is correct. You should be doing @import 'bootstrap-datetimepicker.css';, if your manifest file is a sass file, application.css.scss.

The other thing they could do, is just add a bootstrap-datetimepicker.scss file to the gem and it should be just fine.

Let me know if you want me to just make a pull request.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants