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

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

Issue 16132003: Move the gear menu a little bit lower to match the specs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 2348 matching lines...) Expand 10 before | Expand all | Expand 10 after
2359 body[new-ui] list.autocomplete-suggestions > [lead] { 2359 body[new-ui] list.autocomplete-suggestions > [lead] {
2360 background-color: rgb(66, 129, 244); 2360 background-color: rgb(66, 129, 244);
2361 color: white; 2361 color: white;
2362 } 2362 }
2363 2363
2364 body[new-ui] list.autocomplete-suggestions > [selected] > div.detail-text em, 2364 body[new-ui] list.autocomplete-suggestions > [selected] > div.detail-text em,
2365 body[new-ui] list.autocomplete-suggestions > [lead] > div.detail-text em { 2365 body[new-ui] list.autocomplete-suggestions > [lead] > div.detail-text em {
2366 color: white; 2366 color: white;
2367 } 2367 }
2368 2368
2369 body[new-ui] #gear-menu {
2370 margin-top: 8px;
2371 }
2372
2369 body[new-ui] #gear-menu > menuitem:not(.menuitem-button) { 2373 body[new-ui] #gear-menu > menuitem:not(.menuitem-button) {
2370 margin-right: 50px; 2374 margin-right: 50px;
2371 } 2375 }
2372 2376
2373 /* View buttons in the gear menu. */ 2377 /* View buttons in the gear menu. */
2374 2378
2375 body[new-ui] menuitem#detail-view { 2379 body[new-ui] menuitem#detail-view {
2376 background-image: -webkit-image-set( 2380 background-image: -webkit-image-set(
2377 url('../images/files/ui/new-ui/button_list_view.png') 1x, 2381 url('../images/files/ui/new-ui/button_list_view.png') 1x,
2378 url('../images/files/ui/new-ui/2x/button_list_view.png') 2x); 2382 url('../images/files/ui/new-ui/2x/button_list_view.png') 2x);
2379 } 2383 }
2380 2384
2381 body[new-ui] menuitem#thumbnail-view { 2385 body[new-ui] menuitem#thumbnail-view {
2382 background-image: -webkit-image-set( 2386 background-image: -webkit-image-set(
2383 url('../images/files/ui/new-ui/button_mosaic_view.png') 1x, 2387 url('../images/files/ui/new-ui/button_mosaic_view.png') 1x,
2384 url('../images/files/ui/new-ui/2x/button_mosaic_view.png') 2x); 2388 url('../images/files/ui/new-ui/2x/button_mosaic_view.png') 2x);
2385 } 2389 }
2386 2390
2387 body[new-ui] #iframe-drag-area { 2391 body[new-ui] #iframe-drag-area {
2388 -webkit-app-region: drag; 2392 -webkit-app-region: drag;
2389 height: 45px; 2393 height: 45px;
2390 left: 64px; 2394 left: 64px;
2391 position: absolute; 2395 position: absolute;
2392 right: 70px; 2396 right: 70px;
2393 top: 0; 2397 top: 0;
2394 width: auto; 2398 width: auto;
2395 z-index: 101; 2399 z-index: 101;
2396 } 2400 }
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