You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the boostrap layout you can see in this line how the form-group is created for every field.
it is easy to configure the layout for the "label" field in each type of field, but it is "hardcoded" for change the layout in the "body" fields. For example this config:
As you can see, the problem is trying to change "col-sm-10" in
that only could be overwritten if you overwrite the entire layout .twig.html for bootstrap_3_horizontal_layout.html.twig, because it is very common, that you could get long labels and they are streched because the col-sm-10 probably should be reduced in favor of the label width layout.
If I will have the knowledge to make a PR, I will do it, but I don't know how to rewrite this properly for a twig block and implement a attribute per field, maybe form_group_class?
The text was updated successfully, but these errors were encountered:
I'm closing this issue because we're starting a new phase in the history of this bundle (see #2059). We've moved it into a new GitHub organization and we need to start from scratch: no past issues, no pending pull requests, etc.
I understand if you are angry or disappointed by this, but we really need to "reset" everything in order to reignite the development of this bundle.
In the boostrap layout you can see in this line how the form-group is created for every field.
it is easy to configure the layout for the "label" field in each type of field, but it is "hardcoded" for change the layout in the "body" fields. For example this config:
Will generate something like:
As you can see, the problem is trying to change "col-sm-10" in
What I am purposing is something like:
But in this part:
If I will have the knowledge to make a PR, I will do it, but I don't know how to rewrite this properly for a twig block and implement a attribute per field, maybe form_group_class?
The text was updated successfully, but these errors were encountered: