Problem/Motivation
In https://www.drupal.org/project/bs_base/issues/3008285#comment-14112148 rules for resetting input radius on left or right side are added when input element has input group prefix or suffix. When floating labels are enabled we are always adding `input-group-label` CSS class and we should add it only when prefix or suffix exist. As a result of this left or right border radius of input element can be reset.
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | floating-label-input-radius-reset-3256688-2.patch | 1.9 KB | pivica |
Comments
Comment #2
pivica commentedActually we need that div.input-group-label wrapper because we are using it to position floating label so that needs to stay. The solution is simple we just need to modify selector for that rules so it is active only when `input-group` wrapper element exist which means that prefix or suffix is set.
Comment #4
pivica commentedCommitted.