Entfernen Sie die Eingabe-Fokus auf Google Chrome

Ich arbeite mit Firefox und Google Chrome.

Auf Firefox habe ich keine Probleme und die Fokus-Farbe ist blau.

Entfernen Sie die Eingabe-Fokus auf Google Chrome

In Chrome der Schwerpunkt ist blau + orange.

Entfernen Sie die Eingabe-Fokus auf Google Chrome

Wie Entferne ich die orange? Es kommt als Standard-Eingabe-focus in Chrom.

CSS:

.input {
  border: 1px solid #dbdbdb;
  padding: 0 5px 0 5px;
  height: 26px;
  width: 200px;
  border-radius: 3px;
  font-family: "Arial Black", Gadget, sans-serif;
  font-size: 13px;
}

.input:focus {
  border: 1px solid rgba(51, 153, 255, 0.4);
  box-shadow: 0 0 5px rgba(51, 153, 255, 0.4);
}

HTML:

<td><input type="text" name="user_login" class="input" autocomplete="off"></td>

InformationsquelleAutor Dan Miller | 2013-04-13
Schreibe einen Kommentar