| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 .destination-list-item { | 5 .destination-list-item { |
| 6 -webkit-padding-end: 2px; | 6 -webkit-padding-end: 2px; |
| 7 -webkit-padding-start: 18px; | 7 -webkit-padding-start: 18px; |
| 8 cursor: default; | 8 cursor: default; |
| 9 padding-bottom: 3px; | 9 padding-bottom: 3px; |
| 10 padding-top: 3px; | 10 padding-top: 3px; |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 | 91 |
| 92 .extension-icon { | 92 .extension-icon { |
| 93 background-position: center; | 93 background-position: center; |
| 94 background-repeat: no-repeat; | 94 background-repeat: no-repeat; |
| 95 cursor: pointer; | 95 cursor: pointer; |
| 96 flex: 0 0 auto; | 96 flex: 0 0 auto; |
| 97 height: 24px; | 97 height: 24px; |
| 98 margin: 0 3px; | 98 margin: 0 3px; |
| 99 width: 24px; | 99 width: 24px; |
| 100 } | 100 } |
| 101 |
| 102 .configuring-in-progress-text, |
| 103 .configuring-failed-text { |
| 104 -webkit-margin-start: 1em; |
| 105 flex: 0 1 auto; |
| 106 line-height: 24px; |
| 107 vertical-align: middle; |
| 108 } |
| 109 |
| 110 .configuring-failed-text { |
| 111 color: red; |
| 112 font-style: italic; |
| 113 } |
| OLD | NEW |