-
Notifications
You must be signed in to change notification settings - Fork 358
New issue
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
Styling issues with input-addons in DDF #7167
Comments
So.. what's the issue? The button shouldn't have the border? |
I guess the border is unnecessary + the button is larger than the input. |
OK, to get this (in pure bootstrap 3)... the html needs to be.. <div class="input-group">
<input class="form-control" style="border-color: red;">
<div class="input-group-btn">
<button type="button" class="btn btn-default" style="border-color: red">
Action
</button>
</div>
</div> (without border-color by default) Looking.. |
Yeah, I got almost the same, but the |
But seeing the same issue when using the schema, it looks like the generated HTML is.. <span class="input-group">
<input name="endpoints.hawkular.hostname" id="endpoints.hawkular.hostname" class="form-control" value="">
<span class="input-group-addon">
<button name="detect-hawkular-button" type="button" class="btn btn-default">Detect</button>
</span>
</span> |
- "component": "input-addon-group",
+ "component": "input-addon-button-group", works :) |
Great, thanks! |
I'm trying to reimplement the endpoint detection for openshift/kubernetes in the DDF provider forms and I found this styling issue:
Parent issue: ManageIQ/manageiq#18818
The text was updated successfully, but these errors were encountered: