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

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

Issue 14188034: Invisible butter bar should not be clickable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 width: 30%; 113 width: 30%;
114 z-index: 2; 114 z-index: 2;
115 } 115 }
116 116
117 body[new-ui] #butter-bar { 117 body[new-ui] #butter-bar {
118 color: #666; 118 color: #666;
119 display: -webkit-box; 119 display: -webkit-box;
120 padding: 15px; 120 padding: 15px;
121 } 121 }
122 122
123 #butter-bar:not(.visible) { 123 body #butter-bar:not(.visible) {
124 opacity: 0; 124 opacity: 0;
125 pointer-events: none; 125 pointer-events: none;
126 } 126 }
127 127
128 body[new-ui] #butter-bar:not(.visible) { 128 body[new-ui] #butter-bar:not(.visible) {
129 display: none; 129 display: none;
130 } 130 }
131 131
132 #butter-bar .content { 132 #butter-bar .content {
133 -webkit-box-flex: 1.0; 133 -webkit-box-flex: 1.0;
(...skipping 1904 matching lines...) Expand 10 before | Expand all | Expand 10 after
2038 background-image: -webkit-image-set( 2038 background-image: -webkit-image-set(
2039 url('../images/files/ui/new-ui/button_list_view.png') 1x, 2039 url('../images/files/ui/new-ui/button_list_view.png') 1x,
2040 url('../images/files/ui/new-ui/2x/button_list_view.png') 2x); 2040 url('../images/files/ui/new-ui/2x/button_list_view.png') 2x);
2041 } 2041 }
2042 2042
2043 body[new-ui] menuitem#thumbnail-view { 2043 body[new-ui] menuitem#thumbnail-view {
2044 background-image: -webkit-image-set( 2044 background-image: -webkit-image-set(
2045 url('../images/files/ui/new-ui/button_mosaic_view.png') 1x, 2045 url('../images/files/ui/new-ui/button_mosaic_view.png') 1x,
2046 url('../images/files/ui/new-ui/2x/button_mosaic_view.png') 2x); 2046 url('../images/files/ui/new-ui/2x/button_mosaic_view.png') 2x);
2047 } 2047 }
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