This will remove the "First Name" and "Last name" text from the login page. Could also be manipulated to make text transparent in other parts of the app
/* make login field placeholder text transparent */
@media only screen
and (min-device-width : 1px)
and (max-device-width : 4000px) {
.menu-form .menu-input::-webkit-input-placeholder {
color: transparent !important;
}
:-moz-placeholder { /* Firefox 18- */
color: transparent !important;
}
::-moz-placeholder { /* Firefox 19+ */
color: transparent !important;
}
:-ms-input-placeholder {
color: transparent !important;
}
Comments
Article is closed for comments.