An ActiveAdmin skin based on Google's Material Design.
Add this line to your application's Gemfile:
gem "active_material", github: "vigetlabs/active_material"
And then execute:
$ bundle
Or install it yourself as:
$ gem install active_material
In app/assets/stylesheets/active_admin.css.scss
, replace:
@import "active_admin/base";
with
@import "active_material";
Additionally, ActiveMaterial comes with an optional JavaScript bundle that adds a few additional features. It should be included right after the active_admin base script.
In app/assets/javascripts/active_admin.js, add:
//= require active_material
Refer to the Customization Guide.
- Fork it ( https://github.com/[my-github-username]/active_material/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am "Add some feature"
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Visit code.viget.com to see more projects from Viget.