| OLD | NEW |
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. | 1 /* Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 :host { | 5 :host { |
| 6 border-radius: 2px; | 6 border-radius: 2px; |
| 7 cursor: pointer; | 7 cursor: pointer; |
| 8 display: inline-block; | 8 display: inline-block; |
| 9 height: 32px; | 9 height: 32px; |
| 10 outline: none; | 10 outline: none; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 files-toggle-ripple { | 27 files-toggle-ripple { |
| 28 background-position: center; | 28 background-position: center; |
| 29 background-repeat: no-repeat; | 29 background-repeat: no-repeat; |
| 30 height: 28px; | 30 height: 28px; |
| 31 left: 2px; | 31 left: 2px; |
| 32 pointer-events: none; | 32 pointer-events: none; |
| 33 position: absolute; | 33 position: absolute; |
| 34 top: 2px; | 34 top: 2px; |
| 35 width: 28px; | 35 width: 28px; |
| 36 } | 36 } |
| 37 |
| 38 :host(.keyboard-focus) { |
| 39 /* We use box-shadow rather than outline to make it rounded. */ |
| 40 box-shadow: 0 0 0 1px rgba(66, 133, 244, 0.5); |
| 41 } |
| OLD | NEW |