| 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 .lists > :last-child { |
| 68 padding-bottom: 0; |
| 69 } |
| 70 |
| 67 #destination-search .invitation-container { | 71 #destination-search .invitation-container { |
| 68 -webkit-animation: invitation-fadein 500ms; | 72 -webkit-animation: invitation-fadein 500ms; |
| 69 -webkit-box-align: center; | 73 -webkit-box-align: center; |
| 70 -webkit-box-orient: vertical; | 74 -webkit-box-orient: vertical; |
| 71 } | 75 } |
| 72 | 76 |
| 73 @-webkit-keyframes invitation-fadein { | 77 @-webkit-keyframes invitation-fadein { |
| 74 from { | 78 from { |
| 75 opacity: 0; | 79 opacity: 0; |
| 76 } | 80 } |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 background-image: -webkit-image-set( | 136 background-image: -webkit-image-set( |
| 133 url(chrome://theme/IDR_CLOSE_DIALOG_H) 1x, | 137 url(chrome://theme/IDR_CLOSE_DIALOG_H) 1x, |
| 134 url(chrome://theme/IDR_CLOSE_DIALOG_H@2x) 2x); | 138 url(chrome://theme/IDR_CLOSE_DIALOG_H@2x) 2x); |
| 135 } | 139 } |
| 136 | 140 |
| 137 #destination-search .cloudprint-promo .close-button:active { | 141 #destination-search .cloudprint-promo .close-button:active { |
| 138 background-image: -webkit-image-set( | 142 background-image: -webkit-image-set( |
| 139 url(chrome://theme/IDR_CLOSE_DIALOG_P) 1x, | 143 url(chrome://theme/IDR_CLOSE_DIALOG_P) 1x, |
| 140 url(chrome://theme/IDR_CLOSE_DIALOG_P@2x) 2x); | 144 url(chrome://theme/IDR_CLOSE_DIALOG_P@2x) 2x); |
| 141 } | 145 } |
| OLD | NEW |