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

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: remove debug 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 padding-bottom: 2px;
556 padding-top: 2px;
557 position: relative;
558 top: 100%;
559 width: 248px;
560 z-index: 1;
561 }
562
563 .dropdown-item-container {
564 display: -webkit-box;
565 height: 24px;
566 padding-left: 5px;
567 }
568
569 .dropdown-item-container:hover {
570 background: #dce4fa;
571 }
572
573 .dropdown-image {
574 width: 24px;
575 }
576
577 .dropdown-item {
578 cursor: default;
579 color: #555;
580 overflow: hidden;
581 padding-top: 4px;
582 text-overflow: ellipsis;
583 white-space: nowrap;
584 width: 219px;
585 }
586
587 .dropdown-divider {
588 height: 3px;
589 }
590
591 .dropdown-divider hr {
592 -webkit-margin-before: 2px;
593 -webkit-margin-after: 2px;
594 }
595
596 .dropdown-item.disabled-item {
597 color: graytext;
598 }
599
600 span.bold {
601 font-weight: bold;
602 }
603
510 .error-message { 604 .error-message {
511 -webkit-padding-start: 30px; 605 -webkit-padding-start: 30px;
512 background-image: url('chrome://theme/IDR_WARNING'); 606 background-image: url('chrome://theme/IDR_WARNING');
513 background-position: left top; 607 background-position: left top;
514 background-repeat: no-repeat; 608 background-repeat: no-repeat;
515 } 609 }
516 610
517 .error-message-padding { 611 .error-message-padding {
518 margin-bottom: 10px; 612 margin-bottom: 10px;
519 } 613 }
520 614
521 html[dir=rtl] .error-message { 615 html[dir=rtl] .error-message {
522 background-position: right top; 616 background-position: right top;
523 } 617 }
524 618
525 #version-labels { 619 #version-labels {
526 -webkit-transition: all .5s linear; 620 -webkit-transition: all .5s linear;
527 bottom: 10px; 621 bottom: 10px;
528 color: #999; 622 color: #999;
529 font-size: 11px; 623 font-size: 11px;
530 left: 10px; 624 left: 10px;
531 opacity: 1.0; 625 opacity: 1.0;
532 position: absolute; 626 position: absolute;
533 text-shadow: 0 1px 1px #fff; 627 text-shadow: 0 1px 1px #fff;
534 } 628 }
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/status/network_menu.h ('k') | chrome/browser/resources/chromeos/login/oobe.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698