In the inputFields' layout code (in both the TextField and TextArea decorators) we should make sure we draw the placeholder behind the BTF. This way the cursor will display in front of the placeholder text instead of behind it.
This should be as simple as ensuring the BTF has a higher z-order than the placeholder (either by setting an explicit zIndex, or implicitly by changing the order the components are added to the layout)
In the inputFields' layout code (in both the
TextField
andTextArea
decorators) we should make sure we draw the placeholder behind the BTF. This way the cursor will display in front of the placeholder text instead of behind it.This should be as simple as ensuring the BTF has a higher z-order than the placeholder (either by setting an explicit zIndex, or implicitly by changing the order the components are added to the layout)