fix(input): fix floating/stacked label relocate

This commit is contained in:
Adam Bradley
2016-01-26 16:24:31 -06:00
parent f79a121bde
commit ad7885f6a4
5 changed files with 36 additions and 15 deletions

View File

@ -7,11 +7,10 @@ ion-input,
ion-textarea {
display: block;
flex: 1;
width: 100%;
}
// Textarea Within An Item
// --------------------------------------------------
@ -108,9 +107,12 @@ input.text-input:-webkit-autofill {
// Cloned Input
// --------------------------------------------------
.text-input.cloned-input,
.text-input.cloned-hidden {
.text-input.cloned-input {
position: absolute;
top: 0;
pointer-events: none;
}
.item-input:not(.item-label-floating) .text-input.cloned-active {
display: none;
}