I need to customize the active admin layout, but how can I do it?
|
feedback
|
|
When a view is defined in a gem AND in the rails app, the one defined in the Rails app is served. It's a logic priority. So if you need to override all or some active admin views, you'll have to copy these in your app and change them as you desire. | |||
|
feedback
|
|
The active admin layout is not actually defined as a layout file, but is generated programatically. Placing a custom layout in the layout directory will therefore not actually override the default layout. You can, however, monkey-patch or duck-punch the active admin layout methods inside your application. The following will add an ie-specific stylesheet to the header:
Clearly an ugly solution. | ||||
|
feedback
|