Reputation: 2508
I must be missing something really simple, but I could not find anyone else with the problem. Basically, Rails 3.1 merges all the .css files into application.css. After I installed ActiveAdmin, ActiveAdmin's CSS are also merged into application.css, causes conflict and overrides my stylesheet.
What am I missing here?
Upvotes: 4
Views: 1068
Reputation: 3232
I solved it by adding the generated active_admin css and js in the vendor directory..
Upvotes: 3
Reputation: 2508
I removed *= require_tree . from application.css and added each other css individually. Not sure whether this is the best way, but it works.
Upvotes: 7