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

Side by Side Diff: chrome/browser/resources/options/options_page.css

Issue 8566025: print preview css: fix labels (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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/color_settings.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 .hbox { 1 .hbox {
2 display: -webkit-box; 2 display: -webkit-box;
3 -webkit-box-orient: horizontal; 3 -webkit-box-orient: horizontal;
4 } 4 }
5 5
6 .vbox { 6 .vbox {
7 display: -webkit-box; 7 display: -webkit-box;
8 -webkit-box-orient: vertical; 8 -webkit-box-orient: vertical;
9 } 9 }
10 10
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 /* 52 /*
53 * Override the font-size rule in shared_options.css file. 53 * Override the font-size rule in shared_options.css file.
54 * 16 px font-size proved to be more touch friendly. It increases the touchable 54 * 16 px font-size proved to be more touch friendly. It increases the touchable
55 * area for buttons and input boxes. 55 * area for buttons and input boxes.
56 */ 56 */
57 body { 57 body {
58 font-size: 16px; 58 font-size: 16px;
59 } 59 }
60 </if> 60 </if>
61 61
62
63 .overlay { 62 .overlay {
64 -webkit-box-align: center; 63 -webkit-box-align: center;
65 -webkit-box-orient: vertical; 64 -webkit-box-orient: vertical;
66 -webkit-box-pack: center; 65 -webkit-box-pack: center;
67 -webkit-transition: 0.25s opacity; 66 -webkit-transition: 0.25s opacity;
68 background: -webkit-radial-gradient(rgba(127, 127, 127, 0.5), 67 background: -webkit-radial-gradient(rgba(127, 127, 127, 0.5),
69 rgba(127, 127, 127, 0.5) 35%, 68 rgba(127, 127, 127, 0.5) 35%,
70 rgba(0, 0, 0, 0.7)); 69 rgba(0, 0, 0, 0.7));
71 bottom: 0; 70 bottom: 0;
72 display: -webkit-box; 71 display: -webkit-box;
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
603 .displaytable > section > * { 602 .displaytable > section > * {
604 display: table-cell; 603 display: table-cell;
605 vertical-align: baseline; 604 vertical-align: baseline;
606 border-bottom: 1px solid #eeeeee; 605 border-bottom: 1px solid #eeeeee;
607 } 606 }
608 607
609 /* do not display a border after the last section in the table */ 608 /* do not display a border after the last section in the table */
610 .displaytable:not([searching='true']) > section:last-child > * { 609 .displaytable:not([searching='true']) > section:last-child > * {
611 border-bottom: none; 610 border-bottom: none;
612 } 611 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/print_preview/color_settings.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698