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

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

Issue 7202012: Print Preview: Display a throbber when the user requests the system print (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase and add missing file. Created 9 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
OLDNEW
1 body { 1 body {
2 cursor: default; 2 cursor: default;
3 font-size: 13px; 3 font-size: 13px;
4 } 4 }
5 5
6 a:link { 6 a:link {
7 color: rgb(63, 110, 194); 7 color: rgb(63, 110, 194);
8 } 8 }
9 9
10 a:active { 10 a:active {
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 } 408 }
409 409
410 div.disabled { 410 div.disabled {
411 color: #888; 411 color: #888;
412 } 412 }
413 413
414 .touch-slider { 414 .touch-slider {
415 -webkit-appearance: slider-horizontal; 415 -webkit-appearance: slider-horizontal;
416 } 416 }
417 417
418 .link-button,
419 .link-button:active,
420 .link-button:focus,
421 .link-button:hover {
422 -webkit-box-shadow: none;
423 background: transparent none;
424 border: none;
425 color: blue;
426 cursor: pointer;
427 text-decoration: underline;
428 }
429
430 .text-button, 418 .text-button,
431 .text-button:active, 419 .text-button:active,
432 .text-button:focus, 420 .text-button:focus,
433 .text-button:hover { 421 .text-button:hover {
434 -webkit-box-shadow: none; 422 -webkit-box-shadow: none;
435 background: transparent none; 423 background: transparent none;
436 border-color: transparent; 424 border-color: transparent;
437 color: #000; 425 color: #000;
438 } 426 }
439 427
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
766 .displaytable > section > * { 754 .displaytable > section > * {
767 display: table-cell; 755 display: table-cell;
768 vertical-align: baseline; 756 vertical-align: baseline;
769 border-bottom: 1px solid #eeeeee; 757 border-bottom: 1px solid #eeeeee;
770 } 758 }
771 759
772 /* do not display a border after the last section in the table */ 760 /* do not display a border after the last section in the table */
773 .displaytable > section:last-child > * { 761 .displaytable > section:last-child > * {
774 border-bottom: none; 762 border-bottom: none;
775 } 763 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698