Skip to content

Instantly share code, notes, and snippets.

@khmyznikov
Created December 6, 2013 10:08
Show Gist options
  • Save khmyznikov/7821430 to your computer and use it in GitHub Desktop.
Save khmyznikov/7821430 to your computer and use it in GitHub Desktop.
Change a color of all input focus glow of bootstrap 3 From http://stackoverflow.com/questions/14820952/change-bootstrap-input-focus-blue-glow
textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
border-color: rgba(126, 239, 104, 0.8);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(126, 239, 104, 0.6);
outline: 0 none;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment