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
Doesn't work nicely with rounding the corners on input-group.
Here's an example:
<div class="form-group input-group has-float-label"> <input class="form-control" type="text" name="title" id="title" value="" placeholder=" "> <label for="title">Title</label> </div>
And here's kind of a fix, could be improved probably:
.has-float-label input:first-child:nth-last-child(2) { border-top-right-radius: .25em; border-bottom-right-radius: .25em; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Doesn't work nicely with rounding the corners on input-group.
Here's an example:
And here's kind of a fix, could be improved probably:
.has-float-label input:first-child:nth-last-child(2) { border-top-right-radius: .25em; border-bottom-right-radius: .25em; }
The text was updated successfully, but these errors were encountered: