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

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

Issue 10378026: Reland 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
207 /* Trash */ 217 /* Trash */
208 218
209 #extension-settings .trash { 219 #extension-settings .trash {
210 -webkit-transition: opacity 200ms; 220 -webkit-transition: opacity 200ms;
211 height: 22px; 221 height: 22px;
212 opacity: 0.8; 222 opacity: 0.8;
213 position: absolute; 223 position: absolute;
214 right: 0; 224 right: 0;
215 top: 3px; 225 top: 3px;
216 vertical-align: middle; 226 vertical-align: middle;
217 } 227 }
218 228
219 html[dir='rtl'] #extension-settings .trash { 229 html[dir='rtl'] #extension-settings .trash {
220 left: 0; 230 left: 0;
221 right: auto; 231 right: auto;
222 } 232 }
223 233
224 .extension-list-item:not(:hover) .trash:not(:focus) { 234 .extension-list-item:not(:hover) .trash:not(:focus) {
225 opacity: 0; 235 opacity: 0;
226 } 236 }
227 237
228 .extension-list-item-wrapper.may-not-disable .trash { 238 .extension-list-item-wrapper.may-not-disable .trash {
229 visibility: hidden; 239 visibility: hidden;
230 } 240 }
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