File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,9 @@ ionic.tap = {
195
195
clonedInput . placeholder = focusInput . placeholder ;
196
196
clonedInput . type = focusInput . type ;
197
197
clonedInput . value = focusInput . value ;
198
- clonedInput . className = 'cloned-text-input' ;
198
+ clonedInput . style = focusInput . style ;
199
+ clonedInput . className = focusInput . className ;
200
+ clonedInput . classList . add ( 'cloned-text-input' ) ;
199
201
clonedInput . readOnly = true ;
200
202
focusInput . parentElement . insertBefore ( clonedInput , focusInput ) ;
201
203
focusInput . style . top = focusInput . offsetTop ;
Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ input[type="file"] {
270
270
.previous-input-focus ,
271
271
.cloned-text-input + input ,
272
272
.cloned-text-input + textarea {
273
- position : absolute ;
273
+ position : absolute !important ;
274
274
left : -9999px ;
275
275
width : 200px ;
276
276
}
You can’t perform that action at this time.
0 commit comments