-
Notifications
You must be signed in to change notification settings - Fork 13.5k
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
ion-item should allow overflow css variable #17670
Comments
Thank you for the issue! Do you have an example of the HTML / CSS you are using so we can reproduce the issue and make sure we understand the use case? Here's a sample Ionic 4 Codepen if you would like to fork it: https://codepen.io/pen?template=aXENNW |
I have the same request. My <ion-item>
<ion-label position="fixed">PIN</ion-label>
<ion-input
type="number"
pattern="[0-9]*"
(keydown)="onKeyDownLimitLength($event, 7)"
inputmode="numeric"
formControlName="acct_no"
></ion-input>
<span class="error">Please you need to enter 7 digits!</span>
</ion-item> |
@brandyscarney Hi, I created some sample codepen code snippet here: https://codepen.io/uniquejava/pen/OqqyOj You see the message The following are some visual effect we'd like to implement. Thank you. |
Hello! I have a case where overflow is needed for Also, I've opened a PR (#18410) adding this feature, where overflow css variable is exposed. |
fixes #17670 Co-authored-by: Stefanos Anagnostou <[email protected]>
Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out. |
Feature Request
Ionic version:
[x] 4.x
Describe the Feature Request
Currently item-inner and input-wrapper add some overflow:hidden, but due to webcomponent and how there are working it's not possible to override this settings.
We have a custom input that should be over the input but not possible due to overflow:hidden
The text was updated successfully, but these errors were encountered: