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

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

Issue 10382025: Revert 135525 - Add a first-class off-store install UI to chrome://extensions/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/extensions/extensions.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 /* Overlays */ 197 /* Overlays */
198 198
199 #overlay { 199 #overlay {
200 z-index: 5; 200 z-index: 5;
201 } 201 }
202 202
203 #overlay .page:not(.showing) { 203 #overlay .page:not(.showing) {
204 display: none; 204 display: none;
205 } 205 }
206 206
207 #dropTargetOverlay {
208 color: rgb(48, 57, 66);
209 font-size: 18px;
210 text-align: center;
211 }
212
213 #dropTargetOverlay div {
214 margin: 1em;
215 }
216
217 /* Trash */ 207 /* Trash */
218 208
219 #extension-settings .trash { 209 #extension-settings .trash {
220 -webkit-transition: opacity 200ms; 210 -webkit-transition: opacity 200ms;
221 height: 22px; 211 height: 22px;
222 opacity: 0.8; 212 opacity: 0.8;
223 position: absolute; 213 position: absolute;
224 right: 0; 214 right: 0;
225 top: 3px; 215 top: 3px;
226 vertical-align: middle; 216 vertical-align: middle;
227 } 217 }
228 218
229 html[dir='rtl'] #extension-settings .trash { 219 html[dir='rtl'] #extension-settings .trash {
230 left: 0; 220 left: 0;
231 right: auto; 221 right: auto;
232 } 222 }
233 223
234 .extension-list-item:not(:hover) .trash:not(:focus) { 224 .extension-list-item:not(:hover) .trash:not(:focus) {
235 opacity: 0; 225 opacity: 0;
236 } 226 }
237 227
238 .extension-list-item-wrapper.may-not-disable .trash { 228 .extension-list-item-wrapper.may-not-disable .trash {
239 visibility: hidden; 229 visibility: hidden;
240 } 230 }
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/extensions/extensions.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698