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

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

Issue 8619009: Fix print preview control button order for views. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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/print_preview/print_preview.html » ('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) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 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 5
6 html { 6 html {
7 height: 100%; 7 height: 100%;
8 } 8 }
9 9
10 body { 10 body {
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 margin-top: 10px; 406 margin-top: 10px;
407 } 407 }
408 408
409 /* TODO(estade): unfork this code. */ 409 /* TODO(estade): unfork this code. */
410 .button-strip { 410 .button-strip {
411 -webkit-box-orient: horizontal; 411 -webkit-box-orient: horizontal;
412 -webkit-box-pack: end; 412 -webkit-box-pack: end;
413 display: -webkit-box; 413 display: -webkit-box;
414 } 414 }
415 415
416 html[toolkit=views] .button-strip { 416 .button-strip button {
417 display: block;
418 }
419
420 html:not([toolkit=views]) .button-strip {
Evan Stade 2011/12/07 04:37:27 prefer to group all rules that act on .button-stri
Lei Zhang 2011/12/07 04:44:12 Done.
417 -webkit-box-direction: reverse; 421 -webkit-box-direction: reverse;
418 } 422 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/print_preview/print_preview.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698