We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following example in the documentation is incorrect using sass:
http://getkickstart.com/docs/3.x/ui/forms/#horizontal
There is no selection like in the source code of the example:
.form_group.form_group-horizontal > * { vertical-align: middle; margin-right: 5px; display: inline-block; }
So, no display: inline-block is applied, so the result appear vertically instead of horizontally.
display: inline-block
Is there a simple solution?
The text was updated successfully, but these errors were encountered:
Sorry, it is working, my bad.
Sorry, something went wrong.
Actually there is a problem, the example in the doc should add
form .group { @include form_group('horizontal'); }
instead of:
.group { @include form_group('horizontal'); }
If we don't select form .group, the specificity is too low and the default input configuration will win. It contains:
form .group
margin: 0; display: block; ...
so it stays vertical.
No branches or pull requests
The following example in the documentation is incorrect using sass:
http://getkickstart.com/docs/3.x/ui/forms/#horizontal
There is no selection like in the source code of the example:
So, no
display: inline-block
is applied, so the result appear vertically instead of horizontally.Is there a simple solution?
The text was updated successfully, but these errors were encountered: