OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 #destination-search { | 5 #destination-search { |
6 z-index: 3; | 6 z-index: 3; |
7 } | 7 } |
8 | 8 |
9 #destination-search.transparent { | 9 #destination-search.transparent { |
10 opacity: 0; | 10 opacity: 0; |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 #destination-search .lists { | 57 #destination-search .lists { |
58 -webkit-box-flex: 1; | 58 -webkit-box-flex: 1; |
59 overflow-y: auto; | 59 overflow-y: auto; |
60 } | 60 } |
61 | 61 |
62 #destination-search .lists > * { | 62 #destination-search .lists > * { |
63 -webkit-user-select: none; | 63 -webkit-user-select: none; |
64 padding: 0 14px 18px; | 64 padding: 0 14px 18px; |
65 } | 65 } |
66 | 66 |
| 67 #destination-search .invitation-container { |
| 68 -webkit-animation: invitation-fadein 500ms; |
| 69 background-color: rgb(249, 237, 190); |
| 70 border-top: solid 1px rgb(245, 233, 183); |
| 71 padding: 12px; |
| 72 } |
| 73 |
| 74 @-webkit-keyframes invitation-fadein { |
| 75 from { |
| 76 opacity: 0; |
| 77 } |
| 78 to { |
| 79 opacity: 1; |
| 80 } |
| 81 } |
| 82 |
| 83 #destination-search .invitation-text { |
| 84 -webkit-padding-after: 12px; |
| 85 text-align: center; |
| 86 } |
| 87 |
| 88 #destination-search .invitation-buttons { |
| 89 align-items: center; |
| 90 display: flex; |
| 91 justify-content: center; |
| 92 } |
| 93 |
| 94 #destination-search .invitation-buttons > *:not(:first-child) { |
| 95 -webkit-margin-start: 10px; |
| 96 } |
| 97 |
| 98 #destination-search #invitation-process-throbber { |
| 99 display: block; |
| 100 } |
| 101 |
67 #destination-search .cloudprint-promo { | 102 #destination-search .cloudprint-promo { |
68 -webkit-box-align: center; | 103 -webkit-box-align: center; |
69 -webkit-user-select: none; | 104 -webkit-user-select: none; |
70 background-color: rgb(249, 237, 190); | 105 background-color: rgb(249, 237, 190); |
71 display: -webkit-box; | 106 display: -webkit-box; |
72 padding: 12px; | 107 padding: 12px; |
73 } | 108 } |
74 | 109 |
75 #destination-search .cloudprint-promo .sign-in.link-button { | 110 #destination-search .cloudprint-promo .sign-in.link-button { |
76 padding: inherit; | 111 padding: inherit; |
(...skipping 25 matching lines...) Expand all Loading... |
102 background-image: -webkit-image-set( | 137 background-image: -webkit-image-set( |
103 url('chrome://theme/IDR_CLOSE_DIALOG_H') 1x, | 138 url('chrome://theme/IDR_CLOSE_DIALOG_H') 1x, |
104 url('chrome://theme/IDR_CLOSE_DIALOG_H@2x') 2x); | 139 url('chrome://theme/IDR_CLOSE_DIALOG_H@2x') 2x); |
105 } | 140 } |
106 | 141 |
107 #destination-search .cloudprint-promo .close-button:active { | 142 #destination-search .cloudprint-promo .close-button:active { |
108 background-image: -webkit-image-set( | 143 background-image: -webkit-image-set( |
109 url('chrome://theme/IDR_CLOSE_DIALOG_P') 1x, | 144 url('chrome://theme/IDR_CLOSE_DIALOG_P') 1x, |
110 url('chrome://theme/IDR_CLOSE_DIALOG_P@2x') 2x); | 145 url('chrome://theme/IDR_CLOSE_DIALOG_P@2x') 2x); |
111 } | 146 } |
OLD | NEW |