Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save LuisHCK/5d5dff78e16bf10882781d5467145c4d to your computer and use it in GitHub Desktop.
Save LuisHCK/5d5dff78e16bf10882781d5467145c4d to your computer and use it in GitHub Desktop.
Material Design Lite wrappers for Simple Form
# Simple wrappers for Material Design Lite text fields to use with SimpleForm (Rails)
SimpleForm.setup do |config|
config.wrappers :mdl_field, tag: 'div', class: 'mdl-textfield mdl-js-textfield', error_class: 'mdl-textfield__error' do |b|
b.use :html5
b.use :input, class: 'mdl-textfield__input'
b.use :label, class: 'mdl-textfield__label'
end
config.wrappers :mdl_field_floating, tag: 'div', class: 'mdl-textfield mdl-js-textfield mdl-textfield--floating-label', error_class: 'mdl-textfield__error' do |b|
b.use :html5
b.use :input, class: 'mdl-textfield__input'
b.use :label, class: 'mdl-textfield__label'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment