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

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

Issue 14799005: Fix legacy UI in Files.app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 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 | « no previous file | chrome/browser/resources/file_manager/js/file_manager.js » ('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 { 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 696 matching lines...) Expand 10 before | Expand all | Expand 10 after
707 cursor: pointer; 707 cursor: pointer;
708 overflow: hidden; 708 overflow: hidden;
709 text-overflow: ellipsis; 709 text-overflow: ellipsis;
710 white-space: nowrap; 710 white-space: nowrap;
711 } 711 }
712 712
713 body[new-ui] .breadcrumb-path:not(.breadcrumb-last) { 713 body[new-ui] .breadcrumb-path:not(.breadcrumb-last) {
714 -webkit-app-region: no-drag; 714 -webkit-app-region: no-drag;
715 } 715 }
716 716
717 #search-breadcrumbs .breadcrumb-path { 717 body:not([new-ui]) #search-breadcrumbs .breadcrumb-path {
718 color: #888; 718 color: #888;
719 } 719 }
720 720
721 #search-breadcrumbs .breadcrumb-path:hover { 721 body[new-ui] #search-breadcrumbs .breadcrumb-path {
722 color: #969696;
723 }
724
725 body[new-ui] #search-breadcrumbs .breadcrumb-path:hover,
726 body:not([new-ui]) #search-breadcrumbs .breadcrumb-path:hover {
722 color: #666; 727 color: #666;
723 } 728 }
724 729
725 /* The final breadcrumb, representing the current directory. */ 730 /* The final breadcrumb, representing the current directory. */
726 .breadcrumb-last { 731 body[new-ui] #search-breadcrumbs .breadcrumb-path.breadcrumb-last {
732 color: #141414;
733 cursor: default;
734 }
735
736 body:not([new-ui]) .breadcrumb-last {
727 color: black; 737 color: black;
728 cursor: default; 738 cursor: default;
729 } 739 }
730 740
731 /* The > arrow between breadcrumbs. */ 741 /* The > arrow between breadcrumbs. */
732 742
733 .breadcrumbs .separator { 743 .breadcrumbs .separator {
734 background-image: -webkit-image-set( 744 background-image: -webkit-image-set(
735 url('../images/files/ui/breadcrumb-separator.png') 1x, 745 url('../images/files/ui/breadcrumb-separator.png') 1x,
736 url('../images/files/ui/2x/breadcrumb-separator.png') 2x); 746 url('../images/files/ui/2x/breadcrumb-separator.png') 2x);
(...skipping 1489 matching lines...) Expand 10 before | Expand all | Expand 10 after
2226 body[new-ui] #iframe-drag-area { 2236 body[new-ui] #iframe-drag-area {
2227 -webkit-app-region: drag; 2237 -webkit-app-region: drag;
2228 height: 45px; 2238 height: 45px;
2229 left: 64px; 2239 left: 64px;
2230 position: absolute; 2240 position: absolute;
2231 right: 70px; 2241 right: 70px;
2232 top: 0; 2242 top: 0;
2233 width: auto; 2243 width: auto;
2234 z-index: 101; 2244 z-index: 101;
2235 } 2245 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/file_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698