-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
[Bug] Vertical scrolling in textarea #1048
Comments
Rather this should be bug instead of request. textarea {
overflow: auto;
overflow-x: auto;
overflow-y: auto;
} overridden by: .q-input-target, .q-input-shadow {
...........
overflow: hidden;
overflow-x: hidden;
overflow-y: hidden;
...........
} as this is more specific selector. Possible fix: textarea, textarea.q-input-target, textarea.q-input-shadow {
overflow: auto;
overflow-x: auto;
overflow-y: auto;
} |
Available in v0.15.6 when using the |
Hi, Just a note - I updated the cli tool and built a brand new project specifically to test the textarea/q-input in .15.6 and still no scrolling? css still shows as 'hidden' too... Thanks |
Small mistake in the CLI. It still bundled Quasar 0.15.5. Upgrade to CLI v0.15.7. Sorry for this. |
Not to be a pain... but still no go? Looks like its still been overridden by:
Global packages Important local packages |
I'm not sure how this was missed, but you are right. Fixed it. Will be available in Quasar v0.15.7 (CLI will probably be at 0.15.8). |
Hey @rstoenescu The text area does not seem scroll on mobile. When you try to scroll on the text area it move the entire web page. |
Can we have vertical scrolling in textarea when content is greater than max-height of said textarea ?
Right now it is not obvious whether textarea currently displaying all text or if some part do not fit.
The text was updated successfully, but these errors were encountered: