Created by: claviska
- The custom select menu doesn't honor the
$enable-roundedflag. It should also set theborder-radiusproperty using$input-border-radiusfor consistency. - When
$enable-roundedisfalse, a 5px border-radius persists on the custom select menu control. It appears to be from Chrome's user agent stylesheet. This can't be reset using the border-radius mixin because it doesn't execute when$enable-roundedisfalse. ce77c09f fixes both these issues. - Input group addons use
$border-radiusinstead of$input-border-radius, making them inconsistent with form controls when the default value is changed. 7430a263 fixes this. - Custom select menus, file inputs, checkboxes, and radios have hard-coded colors for their focus states. 463d83e8, 5f57e41f, and fe47d5cb let them use
$input-border-focusvariable to stay consistent with other form controls. - The focus state on file inputs is not visible when
$enable-roundedisfalse. ecc75f93 fixes this in the same manner that custom checkboxes/radios force the focus state. - Custom file inputs use hardcoded values. 9fcfdf9b and e940d607 makes them use variables to stay consistent with other form controls.
- The box-shadow size for custom select menus is inconsistent with other form controls. Using the
form-control-focusmixin in a0757d11 fixes this.
Sorry for all the little updates—I'm working on something with v4-dev and finding/fixing as I go.