diff --git a/CHANGELOG.md b/CHANGELOG.md index 2470104aa4..1b85cc9cfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ The following classes are deprecated. Support for them will be dropped in a futu * `ffe-check-box` (use `ffe-checkbox`) * `ffe-select-box` (use `ffe-dropdown`) +## Unreleased +* Breaking: removed `--inline` support from `.ffe-form-label`. It was just setting max-width to 100% which is not the same as inlining. Removed `max-width: 85%` from `ffe-form-label`. It's layout and doesn't belong in the component. It now defaults to browser default which should be `none`. If you were using `ffe-form-label ffe-form-label--inline` you can just use `ffe-form-label`. If you were relying on the max-width being 85% then action is required. + ## v.6.3.2 * Change background position of dropdown arrows from fluid to static * Rollback breaking change from v.6.3.1 - `--inline` support has been restored to `.ffe-form-label` @@ -14,7 +17,6 @@ The following classes are deprecated. Support for them will be dropped in a futu * Add isLoading style for ffe-dropdown-react * Focus state styling fix for select element in IE * Focus state styling fix for ghost action button -* Breaking: removed `--inline` support from `.ffe-form-label`. It was just setting max-width to 100% which is not the same as inlining. Removed `max-width: 85%` from `ffe-form-label`. It's layout and doesn't belong in the component. It now defaults to browser default which should be `none`. If you were using `ffe-form-label ffe-form-label--inline` you can just use `ffe-form-label`. If you were relying on the max-width being 85% then action is required. ## v.6.3.0 * Add description list component diff --git a/less/components/form-label.less b/less/components/form-label.less index d618d3264d..0f97703b1b 100644 --- a/less/components/form-label.less +++ b/less/components/form-label.less @@ -4,9 +4,4 @@ padding: 8px 0; display: block; position: relative; - max-width: 85%; - - &--inline { - max-width: 100%; - } }