We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
cloned-input
1 parent 54597a3 commit 6bd5256Copy full SHA for 6bd5256
core/src/components/input/input.ionic.scss
@@ -233,3 +233,19 @@
233
:host(.has-focus) .input-highlight {
234
transform: scale(1);
235
}
236
+
237
+// Input Cover: Unfocused
238
+// --------------------------------------------------
239
+// The input cover is the div that actually receives the
240
+// tap/click event when scroll assist is configured to true.
241
+// This make it so the native input element is not clickable.
242
+// This will only show when the scroll assist is configured
243
+// otherwise the .input-cover will not be rendered at all
244
+// The input cover is not clickable when the input is disabled
245
+.cloned-input {
246
+ @include position(0, null, 0, null);
247
248
+ position: absolute;
249
250
+ pointer-events: none;
251
+}
0 commit comments