You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The entire select element fits within the bounds of the screen
What is the actual behavior?
The select overflows the bounds of the screen.
Any other information you believe would be useful?
This seems to happen because we don't put any constraints on the width of the select when we calculate it. We should consider putting a max-width: 100% style on the element and then truncating the text with an ellipsis, or something similar.
The text was updated successfully, but these errors were encountered:
- Set max-width of component to 100% - the size of the padding added to
accomodate the drop-down arrow
- Truncate overflowing selected text, similar to a normal <select>
element
[Delivers #136281135]
Resolves#112
- Set max-width of component to 100% - the size of the padding added to
accomodate the drop-down arrow
- Truncate overflowing selected text, similar to a normal <select>
element
- Adds "ignore: local" for scss/dollar-variable-pattern to stylelint
config so local Sass vars don't have to be prefixed
- Disallows the legacy "md-" prefix that was allowed in our stylelint
config
[Delivers #136281135]
Resolves#112
- Set max-width of component to 100% - the size of the padding added to
accomodate the drop-down arrow
- Truncate overflowing selected text, similar to a normal <select>
element
- Adds "ignore: local" for scss/dollar-variable-pattern to stylelint
config so local Sass vars don't have to be prefixed
- Disallows the legacy "md-" prefix that was allowed in our stylelint
config
[Delivers #136281135]
Resolves#112
What MDC-Web Version are you using?
Latest (0.1.1)
What browser(s) is this bug affecting?
iOS (Chrome)
What OS are you using?
iOS v10.1.1 (but affects all OSs)
What are the steps to reproduce the bug?
What is the expected behavior?
The entire select element fits within the bounds of the screen
What is the actual behavior?
The select overflows the bounds of the screen.
Any other information you believe would be useful?
This seems to happen because we don't put any constraints on the width of the select when we calculate it. We should consider putting a
max-width: 100%
style on the element and then truncating the text with an ellipsis, or something similar.The text was updated successfully, but these errors were encountered: