searches
This commit is contained in:
parent
210f112845
commit
e8ec5820a0
|
|
@ -0,0 +1 @@
|
|||
#= require active_admin/base
|
||||
|
|
@ -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; }
|
||||
|
|
@ -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
|
||||
Loading…
Reference in New Issue