| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 The Chromium Authors. All rights reserved. | 2 * Copyright 2016 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 :host { | 7 :host { |
| 8 -webkit-user-select: none; | 8 -webkit-user-select: none; |
| 9 padding: 4px 12px 12px 12px; | 9 padding: 4px 12px 12px 12px; |
| 10 } | 10 } |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 border-radius: 2px; | 86 border-radius: 2px; |
| 87 background-color: #ffffff; | 87 background-color: #ffffff; |
| 88 color: #333; | 88 color: #333; |
| 89 text-align: right; | 89 text-align: right; |
| 90 } | 90 } |
| 91 | 91 |
| 92 .shadow-editor-text-input:focus, -theme-preserve { | 92 .shadow-editor-text-input:focus, -theme-preserve { |
| 93 border-color: #4285F4; | 93 border-color: #4285F4; |
| 94 } | 94 } |
| 95 | 95 |
| 96 .shadow-editor-text-input.invalid { | 96 .shadow-editor-text-input.invalid:not(:focus) { |
| 97 border-color: #E67C73; | 97 border-color: #E67C73; |
| 98 } | 98 } |
| OLD | NEW |