[Bug] Input field not resizing when wrap in ui labeled input #1448
-
Bug Report
Steps to reproduce
Expected resultInput field resize to smaller like others (textarea, dropdown) Actual resultInput not resizing. Testcasehttps://jsfiddle.net/46u2p91x/3/ Screenshot (if possible)Version2.8.4 |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Mmh, the browser does not seem to calculate the input width correctly because of the It's very hacky but you can quickly fix this by forcing a much smaller width for the input element itself. .ui.ui.ui.labeled.input > input {
width:10px;
} |
Beta Was this translation helpful? Give feedback.
-
Isn’t it a case of changing it from |
Beta Was this translation helpful? Give feedback.
-
Indeed 👍 and forget my previous comment 🙄 😄 |
Beta Was this translation helpful? Give feedback.
Isn’t it a case of changing it from
ui labeled input
toui labeled fluid input
?