• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/* Copyright 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
6input[type=email]:focus,
7input[type=number]:focus,
8input[type=password]:focus,
9input[type=tel]:focus,
10input[type=text]:focus,
11input[type=url]:focus {
12  box-shadow: inset 0 1px 2px rgba(0,0,0,0.3),
13              0 0 23px rgb(77, 144, 254)
14              !important;
15}
16
17.g-button-submit:focus,
18a:focus {
19  box-shadow: inset 0 0 0 1px #fff,
20              0 0 23px rgb(77, 144, 254)
21              !important;
22}
23