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

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: Testing fix. 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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
801 * (See Webkit bug #40216) 789 * (See Webkit bug #40216)
802 */ 790 */
803 html[dir='rtl'] select.weakrtl { 791 html[dir='rtl'] select.weakrtl {
804 direction: rtl; 792 direction: rtl;
805 } 793 }
806 794
807 html[dir='rtl'] select.weakrtl option { 795 html[dir='rtl'] select.weakrtl option {
808 direction: ltr; 796 direction: ltr;
809 } 797 }
810 798
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698