Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(382)

Side by Side Diff: chrome/browser/resources/extensions/extensions.css

Issue 9584038: [uber] fix up header (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698