Chromium Code Reviews| 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; |
| 11 overflow: hidden; | 11 overflow: hidden; |
| 12 pointer-events: none; | 12 pointer-events: none; |
| 13 } | 13 } |
| 14 | 14 |
| 15 #destination-search > .page { | 15 #destination-search > .page { |
| 16 width: 640px; | 16 width: 640px; |
| 17 } | 17 } |
| 18 | 18 |
| 19 #destination-search .user-info { | 19 #destination-search .user-info { |
| 20 -webkit-padding-bottom: 14px; | |
|
dpapad
2017/03/28 23:53:17
I don't think webkit-padding-bottom exists, does i
rbpotter
2017/03/29 00:00:22
I had tried -webkit-padding-after and the presubmi
| |
| 21 -webkit-padding-start: 18px; | |
| 20 display: flex; | 22 display: flex; |
| 21 position: absolute; | |
| 22 right: 40px; | |
| 23 text-align: right; | |
| 24 top: 14px; | |
| 25 width: 350px; | |
| 26 } | |
| 27 | |
| 28 [dir='rtl'] #destination-search .user-info { | |
| 29 left: 40px; | |
| 30 right: auto; | |
| 31 } | 23 } |
| 32 | 24 |
| 33 #destination-search .account-select-label { | 25 #destination-search .account-select-label { |
| 34 -webkit-user-select: none; | 26 -webkit-user-select: none; |
| 35 flex: 1; | |
| 36 height: 2em; | 27 height: 2em; |
| 37 line-height: 2em; | 28 line-height: 2em; |
| 38 overflow: hidden; | 29 overflow: hidden; |
| 39 text-overflow: ellipsis; | 30 text-overflow: ellipsis; |
| 40 white-space: nowrap; | 31 white-space: nowrap; |
| 41 } | 32 } |
| 42 | 33 |
| 43 #destination-search .account-select { | 34 #destination-search .account-select { |
| 44 flex: 1; | 35 -webkit-margin-start: 18px; |
| 45 margin-left: 8px; | 36 width: auto; |
| 46 } | 37 } |
| 47 | 38 |
| 48 #destination-search > .page > .close-button { | 39 #destination-search > .page > .close-button { |
| 49 top: 9px; | 40 top: 9px; |
| 50 } | 41 } |
| 51 | 42 |
| 52 #destination-search .search-box { | 43 #destination-search .search-box { |
| 53 -webkit-user-select: none; | 44 -webkit-user-select: none; |
| 54 margin: 14px; | 45 margin: 14px; |
| 55 } | 46 } |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 136 background-image: -webkit-image-set( | 127 background-image: -webkit-image-set( |
| 137 url(chrome://theme/IDR_CLOSE_DIALOG_H) 1x, | 128 url(chrome://theme/IDR_CLOSE_DIALOG_H) 1x, |
| 138 url(chrome://theme/IDR_CLOSE_DIALOG_H@2x) 2x); | 129 url(chrome://theme/IDR_CLOSE_DIALOG_H@2x) 2x); |
| 139 } | 130 } |
| 140 | 131 |
| 141 #destination-search .cloudprint-promo .close-button:active { | 132 #destination-search .cloudprint-promo .close-button:active { |
| 142 background-image: -webkit-image-set( | 133 background-image: -webkit-image-set( |
| 143 url(chrome://theme/IDR_CLOSE_DIALOG_P) 1x, | 134 url(chrome://theme/IDR_CLOSE_DIALOG_P) 1x, |
| 144 url(chrome://theme/IDR_CLOSE_DIALOG_P@2x) 2x); | 135 url(chrome://theme/IDR_CLOSE_DIALOG_P@2x) 2x); |
| 145 } | 136 } |
| OLD | NEW |