Checkboxes and radios should conform to Bootstrap examples

Created on 23 September 2024, 6 months ago

Problem/Motivation

Bootstrap provides examples on how to implement checkboxes and radios. Bootstrap5 theme should adhere to these examples if checkboxes and radios are created through regular Drupal form elements (type checkbox and radio). Currently some of the classes given by Bootstrap examples are missing.

Especially there are missing:

  • form-check-label class on checkbox and radio label
  • form-check-input class on radio input
  • form-check class on the wrapper for checkbox and radio

Additionally there is a CSS margin set especially for description inside a checkbox and radio markup, which does not make sense imho.

Steps to reproduce

Create a checkbox and radio form element and check the markup.
Compare with what is given by https://getbootstrap.com/docs/5.3/forms/checks-radios/

Proposed resolution

Add classes via theme preprocessing and remove unnecessary CSS margin.

Remaining tasks

User interface changes

API changes

Data model changes

🐛 Bug report
Status

Active

Version

4.0

Component

Code

Created by

🇩🇪Germany stefan.korn Jossgrund

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @stefan.korn
  • 🇩🇪Germany stefan.korn Jossgrund
  • Pipeline finished with Failed
    6 months ago
    Total: 297s
    #290299
  • 🇦🇺Australia jannakha Brisbane!

    @stefan.korn thanks for your contribution!

    After application of patch:
    + HTML has required classes:

    + removed margin on description:
    before:

    after:

    Unfortunately, css/components is a volatile folder and can be overwritten by updates coming from web/core/themes/starterkit_theme/css/components (see Starterkit theme - Tracking upstream changes )

    Please make update to scss in web/themes/contrib/bootstrap5/scss/drupal/_forms.scss

  • 🇩🇪Germany stefan.korn Jossgrund

    @jannakha: thanks for reviewing this.

    Regarding css/components/form.css: We could do the changes instead in scss/drupal/_forms.scss, but this does have some caveats too I suppose. One would need to overwrite the CSS from form.css in forms.scss, maybe something like margin-left: inherit;. While this is possible, seems not to be the cleanest way.

    In addition this would somehow still depend on form.css. If for example the CSS selectors are changed in form.css, the fix in forms.scss might not apply anymore. This is kind of a hidden dependency.

    So maybe think about if you might not still prefer the way via form.css. Maybe one could add a line with comment like "removed unnecessary margin for description" and then if you incorporate upstream changes from starterkit you would see this line in a git diff and can keep track of the change this way. This would of course not work if you incorporate the upstream changes automatically without reviewing. In that case we would probably need to do it elsewhere like in forms.scss

  • 🇩🇪Germany stefan.korn Jossgrund
Production build 0.71.5 2024