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

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

Issue 7348010: Added Header and Footer support using Skia (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Rebased and moved PrintHeaderAndFooter to private member function. Created 9 years, 4 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
OLDNEW
1 html { 1 html {
2 height: 100%; 2 height: 100%;
3 } 3 }
4 4
5 body { 5 body {
6 background: white; 6 background: white;
7 display: -webkit-box; 7 display: -webkit-box;
8 height: 100%; 8 height: 100%;
9 margin: 0; 9 margin: 0;
10 overflow: hidden; 10 overflow: hidden;
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 content: url('./checkmark.png'); 339 content: url('./checkmark.png');
340 height: 16px; 340 height: 16px;
341 left: 2px; 341 left: 2px;
342 position: absolute; 342 position: absolute;
343 } 343 }
344 344
345 html[os=mac] input[type='checkbox']:checked::before { 345 html[os=mac] input[type='checkbox']:checked::before {
346 top: 2px; 346 top: 2px;
347 } 347 }
348 348
349 html[os=mac] hr[id='options-horizontal-separator'] {
dpapad 2011/07/28 20:26:00 Instead of hr[id='options-horizontal-separator'],
Aayush Kumar 2011/07/29 00:21:46 Done.
350 display: none;
351 }
352
353 html[os=mac] div[id='options-option'] {
dpapad 2011/07/28 20:26:00 Same here.
Aayush Kumar 2011/07/29 00:21:46 Done.
354 display: none;
355 }
356
349 input[type='radio'] { 357 input[type='radio'] {
350 -webkit-box-shadow: inset 0 1px 2px white, 358 -webkit-box-shadow: inset 0 1px 2px white,
351 0 1px 2px rgba(0, 0, 0, .2); 359 0 1px 2px rgba(0, 0, 0, .2);
352 -webkit-appearance: none; 360 -webkit-appearance: none;
353 -webkit-margin-start: 0; 361 -webkit-margin-start: 0;
354 -webkit-margin-end: 5px; 362 -webkit-margin-end: 5px;
355 -webkit-transition: border 500ms; 363 -webkit-transition: border 500ms;
356 background: -webkit-linear-gradient(#fafafa, #dcdcdc); 364 background: -webkit-linear-gradient(#fafafa, #dcdcdc);
357 border-radius: 100%; 365 border-radius: 100%;
358 border: 1px solid #a0a0a0; 366 border: 1px solid #a0a0a0;
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
769 margin-top: 10px; 777 margin-top: 10px;
770 } 778 }
771 779
772 input[disabled] + label { 780 input[disabled] + label {
773 color: gray; 781 color: gray;
774 } 782 }
775 783
776 #error-action-area { 784 #error-action-area {
777 margin-top: 10px; 785 margin-top: 10px;
778 } 786 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698