This commit is contained in:
Seth Call 2018-01-14 21:50:44 -06:00
parent 210f112845
commit e8ec5820a0
4 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1 @@
#= require active_admin/base

View File

@ -0,0 +1,17 @@
// SASS variable overrides must be declared before loading up Active Admin's styles.
//
// To view the variables that Active Admin provides, take a look at
// `app/assets/stylesheets/active_admin/mixins/_variables.scss` in the
// Active Admin source.
//
// For example, to change the sidebar width:
// $sidebar-width: 242px;
// Active Admin's got SASS!
@import "active_admin/mixins";
@import "active_admin/base";
// Overriding any non-variable SASS must be done after the fact.
// For example, to change the default status-tag color:
//
// .status_tag { background: #6090DB; }

View File

@ -0,0 +1,12 @@
ActiveadminAddons.setup do |config|
# Change to "default" if you want to use ActiveAdmin's default select control.
# config.default_select = "select2"
# Set default options for DateTimePickerInput. The options you can provide are the same as in
# xdan's datetimepicker library (https://github.com/xdan/datetimepicker/tree/2.5.4). Yo need to
# pass a ruby hash, avoid camelCase keys. For example: use min_date instead of minDate key.
# config.datetime_picker_default_options = {}
# Set DateTimePickerInput input format. This if for backend (Ruby)
# config.datetime_picker_input_format = "%Y-%m-%d %H:%M"
end

View File