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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe.css

Issue 7520037: [cros] Network dropdown button in WebUI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nits 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 /* 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 * This is the stylesheet used by the Out of the box experience (OOBE) flow. 5 * This is the stylesheet used by the Out of the box experience (OOBE) flow.
6 */ 6 */
7 7
8 body { 8 body {
9 background: -webkit-gradient(radial, center center, 0, center center, 400, 9 background: -webkit-gradient(radial, center center, 0, center center, 400,
10 from(#fefefe), to(#efefef)); 10 from(#fefefe), to(#efefef));
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 background: -webkit-linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.0)); 48 background: -webkit-linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.0));
49 border-top: 1px solid rgba(0,0,0,0.5); 49 border-top: 1px solid rgba(0,0,0,0.5);
50 height: 4px; 50 height: 4px;
51 } 51 }
52 52
53 hr.bottom { 53 hr.bottom {
54 background: -webkit-linear-gradient(bottom, top, 54 background: -webkit-linear-gradient(bottom, top,
55 rgba(0,0,0,0.2)), rgba(0,0,0,0.0)); 55 rgba(0,0,0,0.2)), rgba(0,0,0,0.0));
56 border-bottom: 1px solid rgba(0,0,0,0.5); 56 border-bottom: 1px solid rgba(0,0,0,0.5);
57 height: 2px; 57 height: 2px;
58 z-index: 0;
58 } 59 }
59 60
60 #header { 61 #header {
61 background: url('chrome://theme/IDR_PRODUCT_LOGO_64') left center no-repeat; 62 background: url('chrome://theme/IDR_PRODUCT_LOGO_64') left center no-repeat;
62 background-size: 48px; 63 background-size: 48px;
63 color: #737373; 64 color: #737373;
64 display: -webkit-box; 65 display: -webkit-box;
65 font-size: 20px; 66 font-size: 20px;
66 height: 48px; 67 height: 48px;
67 line-height: 48px; 68 line-height: 48px;
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 body.login-display #footer { 501 body.login-display #footer {
501 margin-left: auto; 502 margin-left: auto;
502 margin-right: auto; 503 margin-right: auto;
503 width: 640px; /* Same width as .step screens */ 504 width: 640px; /* Same width as .step screens */
504 } 505 }
505 506
506 body.login-display #progress { 507 body.login-display #progress {
507 visibility: hidden; 508 visibility: hidden;
508 } 509 }
509 510
511 .dropdown-title {
512 -webkit-border-radius: 2px;
513 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
514 -webkit-padding-end: 20px;
515 -webkit-padding-start: 2px;
516 -webkit-user-select: none;
517 background-image: url('../../shared/images/select.png'),
518 -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5);
519 background-position: center right;
520 background-repeat: no-repeat;
521 border: 1px solid #aaa;
522 color: #555;
523 font-size: inherit;
524 height: 24px;
525 margin: 0;
526 overflow: hidden;
527 padding-top: 2px;
528 padding-bottom: 2px;
529 text-overflow: ellipsis;
530 text-align: left;
531 text-indent: 4px;
532 white-space: nowrap;
533 width: 250px;
534 }
535
536 .dropdown-title:hover {
537 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
538 background-image: url('../../shared/images/select.png'),
539 -webkit-linear-gradient(#fefefe, #f8f8f8 40%, #e9e9e9);
540 color: #333;
541 background-position: center right;
542 background-repeat: no-repeat;
543 }
544
545 .dropdown-title:active {
546 -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
547 background-image: url('../../shared/images/select.png'),
548 -webkit-linear-gradient(#f4f4f4, #efefef 40%, #dcdcdc);
549 color: #444;
550 }
551
552 .dropdown-container {
553 background: #f7f7f7;
554 border: 1px solid #7c91bf;
555 overflow: hidden;
556 position: relative;
557 top: 100%;
558 width: 248px;
559 z-index: 1;
560 }
561
562 .dropdown-item-container {
563 display: -webkit-box;
564 height: 24px;
565 padding-left: 5px;
566 }
567
568 .dropdown-item-container:hover {
569 background: #dce4fa;
570 }
571
572 .dropdown-image {
573 width: 24px;
574 }
575
576 .dropdown-item {
577 cursor: default;
578 color: #555;
579 padding-top: 4px;
580 white-space: nowrap;
581 }
582
583 .dropdown-divider {
584 height: 2px;
585 }
586
587 .dropdown-divider hr {
588 -webkit-margin-before: 0;
589 -webkit-margin-after: 2px;
590 }
591
592 .dropdown-item.disabled-item {
593 color: graytext;
594 }
595
596 span.bold {
597 font-weight: bold;
598 }
599
510 .error-message { 600 .error-message {
511 -webkit-padding-start: 30px; 601 -webkit-padding-start: 30px;
512 background-image: url('chrome://theme/IDR_WARNING'); 602 background-image: url('chrome://theme/IDR_WARNING');
513 background-position: left top; 603 background-position: left top;
514 background-repeat: no-repeat; 604 background-repeat: no-repeat;
515 } 605 }
516 606
517 .error-message-padding { 607 .error-message-padding {
518 margin-bottom: 10px; 608 margin-bottom: 10px;
519 } 609 }
520 610
521 html[dir=rtl] .error-message { 611 html[dir=rtl] .error-message {
522 background-position: right top; 612 background-position: right top;
523 } 613 }
524 614
525 #version-labels { 615 #version-labels {
526 -webkit-transition: all .5s linear; 616 -webkit-transition: all .5s linear;
527 bottom: 10px; 617 bottom: 10px;
528 color: #999; 618 color: #999;
529 font-size: 11px; 619 font-size: 11px;
530 left: 10px; 620 left: 10px;
531 opacity: 1.0; 621 opacity: 1.0;
532 position: absolute; 622 position: absolute;
533 text-shadow: 0 1px 1px #fff; 623 text-shadow: 0 1px 1px #fff;
534 } 624 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698