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

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

Powered by Google App Engine
This is Rietveld 408576698