-
Couldn't load subscription status.
- Fork 2.3k
Theming and customization
RailsAdmin uses a sass release of bootstrap for CSS, and bootstrap/jquery-ui for JS.
app/assets/stylesheets/rails_admin/custom/mixins.scss
app/assets/stylesheets/rails_admin/custom/theming.scss
app/assets/stylesheets/rails_admin/custom/variables.scss
app/assets/javascripts/rails_admin/custom/ui.js
Don't forget to re-compile your assets or simply delete the content of your tmp/cache folder. Some additional steps might be required, as others reported here: https://github.com/sferik/rails_admin/issues/738#issuecomment-26615578
RailsAdmin uses jquery-pajax (https://github.com/defunkt/jquery-pjax) to load pages instead normal HTTP requests, use $(document).on('rails_admin.dom_ready', function(){ /* your js code here */ }); instead jQuery's default on ready function $(function(){ /* your js code here */ }); to check if page is loaded. It will work to both normal and pajax requests.
rails plugin new rails_admin_<__THEME_NAME__> -m https://raw.github.com/gist/1523639 --skip-gemfile --skip-bundle -T -O --full
Then add to your application Gemfile (before RailsAdmin):
gem 'rails_admin_<__THEME_NAME__>', :path => '../rails_admin_<__THEME_NAME__>'Inside your rails_admin application config/application.rb, just after Bundler.require:
ENV['RAILS_ADMIN_THEME'] = '<__THEME_NAME__>'This will allow for convenient live development testing.
Please follow the convention: rails_admin_ prefix for all RailsAdmin related gems.
Once done, upload it on Github with a valid gemspec (change authors, email and project descriptions) to share your work.
Put all the real theming in theming.css.scss. It can be regular CSS, LESS or SCSS
Note that if you choose to use SCSS, you can:
- modify all the mixins provided by rails_admin and bootstrap and add others for you to use in
mixins.scss. (available mixins here) - modify all the variables provided by rails_admin and bootstrap and add others for you to use in
variables.scss. (available variables here) - In
theming.scss:- use all mixins and variables. (your owns, Bootstrap's and RailsAdmin's)
- include any other .scss file with
@import rails_admin/themes/__THEME_NAME__/my_scss_fileand organize your the rest of your theme the way you want.
Use anything you want that the asset pipeline supports: regular JS, includes, Coffee, ..
You can use any image available to the asset pipeline.
In your Gemfile:
gem 'rails_admin_example_theme', :git => 'git://github.com/bbenezech/rails_admin_example_theme.git'Inside config/application.rb, just after Bundler.require:
ENV['RAILS_ADMIN_THEME'] = 'example_theme'- Example theme: technical stub you can use for bootstrapping. Everything should look painfully greenish.
- Designer, or feel like one? Add your own.