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 6 input[type=email]:focus, 7 input[type=number]:focus, 8 input[type=password]:focus, 9 input[type=tel]:focus, 10 input[type=text]:focus, 11 input[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, 18 a:focus { 19 box-shadow: inset 0 0 0 1px #fff, 20 0 0 23px rgb(77, 144, 254) 21 !important; 22 } 23