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

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

Issue 12677002: Adds animation on a hovered directory/volume when dragging files in Files.app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 { 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 830 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 border-color: hsl(214, 91%, 85%); 841 border-color: hsl(214, 91%, 85%);
842 } 842 }
843 843
844 #list-container.nohover list > :not([selected]):hover, 844 #list-container.nohover list > :not([selected]):hover,
845 #list-container.nohover grid > :not([selected]):hover, 845 #list-container.nohover grid > :not([selected]):hover,
846 #list-container.nohover grid > .accepts { 846 #list-container.nohover grid > .accepts {
847 background-color: transparent; 847 background-color: transparent;
848 border-color: transparent; 848 border-color: transparent;
849 } 849 }
850 850
851 #roots-list > .accepts,
852 #list-container list > .accepts,
853 #list-container grid > .accepts {
854 -webkit-animation: acceptsBlink 200ms linear 1s 3;
855 }
856
857 @-webkit-keyframes acceptsBlink {
858 0% {
859 background-color: transparent;
860 }
861 50% {
862 }
863 }
864
851 .table-row-cell .filename-label, 865 .table-row-cell .filename-label,
852 .thumbnail-item .filename-label, 866 .thumbnail-item .filename-label,
853 /* Show ellipsis in cells. The name column has different structure and overrides 867 /* Show ellipsis in cells. The name column has different structure and overrides
854 this rule. */ 868 this rule. */
855 .table-row-cell > div { 869 .table-row-cell > div {
856 display: block; 870 display: block;
857 overflow: hidden; 871 overflow: hidden;
858 text-overflow: ellipsis; 872 text-overflow: ellipsis;
859 white-space: nowrap; 873 white-space: nowrap;
860 } 874 }
(...skipping 795 matching lines...) Expand 10 before | Expand all | Expand 10 after
1656 } 1670 }
1657 1671
1658 list.autocomplete-suggestions[hasElementFocus] > [selected], 1672 list.autocomplete-suggestions[hasElementFocus] > [selected],
1659 list.autocomplete-suggestions[hasElementFocus] > [lead], 1673 list.autocomplete-suggestions[hasElementFocus] > [lead],
1660 list.autocomplete-suggestions:not([hasElementFocus]) > [selected], 1674 list.autocomplete-suggestions:not([hasElementFocus]) > [selected],
1661 list.autocomplete-suggestions:not([hasElementFocus]) > [lead] { 1675 list.autocomplete-suggestions:not([hasElementFocus]) > [lead] {
1662 background-color: rgb(238, 238, 238); 1676 background-color: rgb(238, 238, 238);
1663 background-image: none; 1677 background-image: none;
1664 border: 1px solid white; 1678 border: 1px solid white;
1665 } 1679 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698