We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
Content of the DropdownItem Component, that exceeds the size of the Component, will be hidden.
To Reproduce
One possible way:
locale: 'de'
config.yml
Expected behavior
No overflowing content.
Screenshots
Applicable Versions:
netlify-cms-app 2.12.5 netlify-cms-core 2.24.0 netlify-cms 2.10.41 os: linux x64 pop_os 19.10 browser: chrome Version 80.0.3987.163
Additional context
Can be fixed by setting the min-width: max-content property to anything different https://github.com/netlify/netlify-cms/blob/174d86f0a083a8c89e832962e3bdfe4163def428/packages/netlify-cms-ui-default/src/styles.js#L328
min-width: max-content
The text was updated successfully, but these errors were encountered:
This could be a possible solution too, overriding the DropdownList style with:
element.style { right: 0; left: auto; width: auto; }
Maybe in combination with a max-width: 200px + the fix from above. Would result in something like this:
max-width: 200px
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Content of the DropdownItem Component, that exceeds the size of the Component, will be hidden.
To Reproduce
One possible way:
locale: 'de'
in theconfig.yml
Expected behavior
No overflowing content.
Screenshots
Applicable Versions:
Additional context
Can be fixed by setting the
min-width: max-content
property to anything differenthttps://github.com/netlify/netlify-cms/blob/174d86f0a083a8c89e832962e3bdfe4163def428/packages/netlify-cms-ui-default/src/styles.js#L328
The text was updated successfully, but these errors were encountered: