Missing border radius variables for small and large inputs
Created by: hoho
There is @input-border-radius
variable and it is used by default for .form-control
.
But for .input-sm
and .input-lg
border radiuses @border-radius-small
and @border-radius-large
are used.
This means that I can reset border radius for default inputs, but for small and large inputs I have to reset radiuses globally (and that's not what I want).
I can create pull request and add @input-border-radius-small
and @input-border-radius-large
variables having @border-radius-small
and @border-radius-large
values by default.
Is it ok?