There is a (very small heheh) mistake with input-group-text class, i think we can remove border radius to fix it. Also try to fix the shadow of focus on these inputs to glow too.
I'm not a pro in github or these things related to template, so sorry for any mistake on bug report.
Here is a screenshots:
Border focus: https://i.imgur.com/GAJbSGo.png
For a better web! Thanks again
Thanks for the bug report, it's perfect 馃槃.
I've found the bugs both are related to the html markup, I'll fix it soon in my PR.
It's this
<div class="input-group mb-3">
<input type="email" class="form-control" placeholder="Email">
<div class="input-group-append input-group-text">
<span class="fas fa-envelope"></span>
</div>
</div>
instead of
<div class="input-group mb-3">
<input type="email" class="form-control" placeholder="Email">
<div class="input-group-append">
<div class="input-group-text">
<span class="fas fa-envelope"></span>
</div>
</div>
</div>
Also the box-shadow is missing too.
Also it is possible to reduce the shadow in focused controls for adminlte?
Is a bit default from bootstrap, make it like adminlte v2.
Thanks
Also it is possible to reduce the shadow in focused controls for adminlte?
Is a bit default from bootstrap, make it like adminlte v2.
That's a good idea I'm also doesn't like the box-shadow's in bootstrap and it's more similar to v2, I'll look over it in the next days
I've fixed the markup in demo & removed the box-shadow from the inputs, it's added in my PR #2169.
Thanks
Most helpful comment
That's a good idea I'm also doesn't like the box-shadow's in bootstrap and it's more similar to v2, I'll look over it in the next days