Chromium Code Reviews| 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 html.loading * { | 5 html.loading * { |
| 6 -webkit-transition-duration: 0 !important; | 6 -webkit-transition-duration: 0 !important; |
| 7 } | 7 } |
| 8 | 8 |
| 9 /* Developer mode */ | 9 /* Developer mode */ |
| 10 | 10 |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 162 .trash { | 162 .trash { |
| 163 -webkit-transition: opacity 200ms; | 163 -webkit-transition: opacity 200ms; |
| 164 height: 22px; | 164 height: 22px; |
| 165 opacity: 0.8; | 165 opacity: 0.8; |
| 166 vertical-align: middle; | 166 vertical-align: middle; |
| 167 } | 167 } |
| 168 | 168 |
| 169 .extension-list-item:not(:hover) .trash:not(:focus) { | 169 .extension-list-item:not(:hover) .trash:not(:focus) { |
| 170 opacity: 0; | 170 opacity: 0; |
| 171 } | 171 } |
| 172 | |
| 173 .extension-list-item-wrapper.may-not-disable .trash { | |
| 174 visibility: hidden; | |
|
Dan Beam
2012/03/05 22:56:36
this slightly makes me nervous that one can click
| |
| 175 } | |
| OLD | NEW |