Skip to content

Instantly share code, notes, and snippets.

@mushfiqweb
Created May 3, 2017 22:02
Show Gist options
  • Select an option

  • Save mushfiqweb/2af515f63d62384ec8e75608aae98069 to your computer and use it in GitHub Desktop.

Select an option

Save mushfiqweb/2af515f63d62384ec8e75608aae98069 to your computer and use it in GitHub Desktop.
input.addEventListener( 'focus', function(){ input.classList.add( 'has-focus' ); });
input.addEventListener( 'blur', function(){ input.classList.remove( 'has-focus' ); });
.inputfile:focus + label,
.inputfile.has-focus + label {
outline: 1px dotted #000;
outline: -webkit-focus-ring-color auto 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment