SashaKolbasov
1/4/2017 - 9:46 AM

Placeholder Focus

Placeholder Focus

.plchfcs {
    opacity: 1;
    transition: opacity .15s ease-out;
}
input {
    &::-webkit-input-placeholder {
        .plchfcs;
    }
    &::-moz-placeholder {
        .plchfcs;
    }
    &:-moz-placeholder {
        .plchfcs;
    }
    &:-ms-input-placeholder {
        .plchfcs;
    }
    &:focus {
        &::-webkit-input-placeholder {
            opacity: 0;
        }
        &::-moz-placeholder {
            opacity: 0;
        }
        &:-moz-placeholder {
            opacity: 0;
        }
        &:-ms-input-placeholder {
            opacity: 0;
        }
    }
}