| 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-settings h1 { | 5 #destination-settings h1 { |
| 6 padding-top: 20px; | 6 padding-top: 20px; |
| 7 vertical-align: top; | 7 vertical-align: top; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #destination-settings .throbber { | 10 #destination-settings .throbber { |
| 11 display: block; | 11 display: block; |
| 12 margin-bottom: 14px; | 12 margin-bottom: 14px; |
| 13 margin-top: 8px; | 13 margin-top: 8px; |
| 14 } | 14 } |
| 15 | 15 |
| 16 #destination-settings .destination-settings-box { | 16 #destination-settings .destination-settings-box { |
| 17 -webkit-box-align: center; | 17 -webkit-box-align: center; |
| 18 display: -webkit-box; | 18 display: -webkit-box; |
| 19 height: 32px; | 19 height: 29px; |
| 20 margin-top: 0; | 20 margin-bottom: 10px; |
| 21 padding-bottom: 6px; | 21 } |
| 22 |
| 23 #destination-settings .destination-settings-change-button { |
| 24 margin-bottom: 10px; |
| 22 } | 25 } |
| 23 | 26 |
| 24 .destination-settings-icon { | 27 .destination-settings-icon { |
| 25 -webkit-margin-end: 8px; | 28 -webkit-margin-end: 8px; |
| 26 height: 24px; | 29 height: 24px; |
| 27 vertical-align: middle; | 30 vertical-align: middle; |
| 28 width: 24px; | 31 width: 24px; |
| 29 } | 32 } |
| 30 | 33 |
| 31 .destination-settings-info-wrapper { | 34 .destination-settings-info-wrapper { |
| 32 -webkit-box-flex: 1; | 35 -webkit-box-flex: 1; |
| 33 height: 32px; | 36 height: 29px; |
| 34 position: relative; | 37 position: relative; |
| 35 } | 38 } |
| 36 | 39 |
| 37 .destination-settings-info { | 40 .destination-settings-info { |
| 38 -webkit-box-orient: vertical; | 41 -webkit-box-orient: vertical; |
| 39 -webkit-box-pack: center; | 42 -webkit-box-pack: center; |
| 40 display: -webkit-box; | 43 display: -webkit-box; |
| 41 height: 100%; | 44 height: 100%; |
| 42 position: absolute; | 45 position: absolute; |
| 43 white-space: nowrap; | 46 white-space: nowrap; |
| 44 width: 100%; | 47 width: 100%; |
| 45 } | 48 } |
| 46 | 49 |
| 47 .destination-settings-name { | 50 .destination-settings-name { |
| 48 font-size: 110%; | 51 font-size: 110%; |
| 49 overflow: hidden; | 52 overflow: hidden; |
| 50 text-overflow: ellipsis; | 53 text-overflow: ellipsis; |
| 51 } | 54 } |
| 52 | 55 |
| 53 .destination-settings-location { | 56 .destination-settings-location { |
| 54 opacity: 0.4; | 57 opacity: 0.4; |
| 55 overflow: hidden; | 58 overflow: hidden; |
| 56 text-overflow: ellipsis; | 59 text-overflow: ellipsis; |
| 57 } | 60 } |
| OLD | NEW |