-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
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
[Form] Min-width Interfering with Appearance in (X) Fields #2705
Comments
Generally selection dropdowns get awkward when really small. So we try to provide a reasonable minimum width. However there probably should be no minimum width when inside a form. |
Can we do min-width only in media query for small screen since it seems the driving issue is screen size? If we limit the exception only to not in form it may creep up again in three columns grid outside form? |
The driving issue is not screen size but word-wrapping on You are familiar with |
Working through this test case |
this declaration of
14em
is used withmin-width
property here which overrides declarations like.ui.form.field > .selection.dropdown { width 100% }
. (or in my case.three .fields
)It may be okay when in standard
.container
, but I'm using custom container widths (smaller than default) which causes the dropdown to extend out of bounds.Set
.ui.selection.dropdown
propertywidth
instead ofmin-width
fixes; but will that have unintended conflict with other things? ...The text was updated successfully, but these errors were encountered: