float-label-css icon indicating copy to clipboard operation
float-label-css copied to clipboard

Bootstrap 4 input-group

Open KeithTurkowski opened this issue 6 years ago • 0 comments

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; }

KeithTurkowski avatar Mar 24 '19 01:03 KeithTurkowski