Project

formadmin

0.06
No commit activity in last 3 years
No release in over 3 years
Modern theme for Active Admin used by Formaweb.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Formadmin

Modern and responsive theme for Active Admin used by Formaweb.

Formadmin

Installation

Please make sure that you are using Active Admin:

gem 'activeadmin'

Add this gem in your Gemfile:

gem 'formadmin'

So, bundle...

$ bundle install

Usage

All you have to do is change your assets/stylesheets/active_admin.scss:

Remove the loading defaults...

@import 'active_admin/mixins';
@import 'active_admin/base';

Replace with Formadmin:

@import 'formadmin/formadmin';

Overriding colors

You can override the default colors (as defined in app/assets/stylesheets/formadmin/core/_settings.scss) by setting the color variable in your assets/stylesheets/active_admin.scss before formadmin is loaded.

For example, to change the primary color, use:

$primary-color: #c0ffee;
@import 'formadmin/formadmin';

Video

Formadmin

Donating

  • Bitcoin (BTC): 1QDoa2Cr8Lbt15mSDQwQc1vRxH9HHT8AC
  • Ethereum (ETH): 0x9d55a96d00B70FF9c23B05D610261E61e398f5BF
  • Litecoin (LTC): LVu6cTKF1VDVVFBxQPKpRUmbcshEeeWy8H

Contributing

  1. Fork it ( https://github.com/formaweb/formadmin/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am "Add some feature")
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Testing

All you need to do is set the local path on your project Gemfile, like this:

gem 'formadmin', path: '/path/to/formadmin'