bootstrap-ruby / bootstrap_form

Official repository of the bootstrap_form gem, a Rails form builder that makes it super easy to create beautiful-looking forms using Bootstrap 5.
MIT License
1.64k stars 353 forks source link

Support/how-to for floating labels #534

Open johanlunds opened 5 years ago

johanlunds commented 5 years ago

Hi,

Is there an easy or recommended way to generate markup for floating labels? Two examples:

Basically I think it needs:

I think this could be a nice addition to bootstrap_form, either as a section in the README or as actual code/API additions.

Screenshot

Example_Rails_application_with_SimpleForm_and_Bootstrap
lcreid commented 5 years ago

This is a great suggestion! Thanks! We'd be happy to entertain a pull request (PR) to add this functionality. I expect we'd want floating labels to be turned on at the form level via an option to bootstrap_form_for or bootstrap_form_with.

If you decide to work on a PR, please assign this issue to yourself (look for the link in the upper-right area of this page).

I'm a little busy at the moment, but if no one else picks up this issue in the meantime, I'll definitely look into it.

Thanks again for your interest in bootstrap_form.

istvanp commented 4 years ago

Here's my drop-in monkey patch to support this on v5 (it's surprisingly straightforward): https://gist.github.com/istvanp/9d7dedff7c56f69d5524c054565ae42a I have not tested it in all situations so I'm going to wait before doing a proper PR.

odysseyjason commented 1 year ago

Its 2023, not sure if something changed in the interim since the last comment, but I got floating-labels to work by adding istvanp's method above, with the addition of :

wrapper: { class: 'form-floating'}

as in:

<%= form.text_field :description , autofocus: true, autocomplete: "description", placeholder: "description", wrapper: { class: 'form-floating'} %>