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

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

Issue 11143021: [FileBrowser] Restored visibility of eject button on unselected removable drives. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 | « no previous file | no next file » | 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 { 5 html {
6 height: 100%; 6 height: 100%;
7 } 7 }
8 8
9 html.col-resize * { 9 html.col-resize * {
10 cursor: col-resize !important; 10 cursor: col-resize !important;
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 div.root-eject { 304 div.root-eject {
305 -webkit-transition: opacity 70ms linear; 305 -webkit-transition: opacity 70ms linear;
306 background-image: -webkit-image-set( 306 background-image: -webkit-image-set(
307 url('../images/files/ui/eject.png') 1x, 307 url('../images/files/ui/eject.png') 1x,
308 url('../images/files/ui/2x/eject.png') 2x); 308 url('../images/files/ui/2x/eject.png') 2x);
309 background-position: center center; 309 background-position: center center;
310 background-repeat: no-repeat; 310 background-repeat: no-repeat;
311 cursor: pointer; 311 cursor: pointer;
312 height: 20px; 312 height: 20px;
313 margin-right: 6px; 313 margin-right: 6px;
314 opacity: 0; 314 opacity: 0.7;
315 width: 20px; 315 width: 20px;
316 } 316 }
317 317
318 div.root-eject:hover { 318 div.root-eject:hover {
319 opacity: 1; 319 opacity: 1;
320 } 320 }
321 321
322 .root-item[selected] > div.root-eject:not(:hover), 322 .root-item[selected] > div.root-eject:not(:hover),
323 .root-item:hover > div.root-eject:not(:hover) { 323 .root-item:hover > div.root-eject:not(:hover) {
324 opacity: 0.7; 324 opacity: 0.7;
(...skipping 1289 matching lines...) Expand 10 before | Expand all | Expand 10 after
1614 } 1614 }
1615 1615
1616 #new-folder { 1616 #new-folder {
1617 margin-right: 30px; 1617 margin-right: 30px;
1618 } 1618 }
1619 1619
1620 #default-action-dialog { 1620 #default-action-dialog {
1621 min-width: 300px; 1621 min-width: 300px;
1622 width: auto; 1622 width: auto;
1623 } 1623 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698