|
|
@ -17,7 +17,7 @@ |
|
|
<div id="nativeControlsContainer" @ref="_nativeControlsContainer" /> |
|
|
<div id="nativeControlsContainer" @ref="_nativeControlsContainer" /> |
|
|
|
|
|
|
|
|
<input id="inputElement" @ref="_inputElement" type="text" |
|
|
<input id="inputElement" @ref="_inputElement" type="text" |
|
|
onpaste="return false;" |
|
|
spellcheck="false" onpaste="return false;" |
|
|
oncopy="return false;" |
|
|
oncopy="return false;" |
|
|
oncut="return false;" |
|
|
oncut="return false;" |
|
|
autocapitalize="none"/> |
|
|
autocapitalize="none"/> |
|
|
@ -50,11 +50,18 @@ |
|
|
#inputElement { |
|
|
#inputElement { |
|
|
padding: 0; |
|
|
padding: 0; |
|
|
margin: 0; |
|
|
margin: 0; |
|
|
opacity: 0; |
|
|
|
|
|
position: absolute; |
|
|
position: absolute; |
|
|
height: 20px; |
|
|
height: 20px; |
|
|
z-index: 1000; |
|
|
z-index: 1000; |
|
|
overflow: hidden; |
|
|
overflow: hidden; |
|
|
|
|
|
caret-color: transparent; |
|
|
|
|
|
border-top-style: hidden; |
|
|
|
|
|
border-bottom-style: hidden; |
|
|
|
|
|
border-right-style: hidden; |
|
|
|
|
|
border-left-style: hidden; |
|
|
|
|
|
outline: none; |
|
|
|
|
|
background: transparent; |
|
|
|
|
|
color: transparent; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
</style> |
|
|
</style> |
|
|
|