| 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: 29px; | 19 height: 29px; |
| 20 margin-bottom: 10px; | 20 margin-bottom: 10px; |
| 21 } | 21 } |
| 22 | 22 |
| 23 .destination-settings-box.stale { |
| 24 opacity: 0.4; |
| 25 } |
| 26 |
| 23 #destination-settings .destination-settings-change-button { | 27 #destination-settings .destination-settings-change-button { |
| 24 margin-bottom: 10px; | 28 margin-bottom: 10px; |
| 25 } | 29 } |
| 26 | 30 |
| 27 .destination-settings-icon { | 31 .destination-settings-icon { |
| 28 -webkit-margin-end: 8px; | 32 -webkit-margin-end: 8px; |
| 29 height: 24px; | 33 height: 24px; |
| 30 vertical-align: middle; | 34 vertical-align: middle; |
| 31 width: 24px; | 35 width: 24px; |
| 32 } | 36 } |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 font-size: 110%; | 73 font-size: 110%; |
| 70 overflow: hidden; | 74 overflow: hidden; |
| 71 text-overflow: ellipsis; | 75 text-overflow: ellipsis; |
| 72 } | 76 } |
| 73 | 77 |
| 74 .destination-settings-location { | 78 .destination-settings-location { |
| 75 opacity: 0.4; | 79 opacity: 0.4; |
| 76 overflow: hidden; | 80 overflow: hidden; |
| 77 text-overflow: ellipsis; | 81 text-overflow: ellipsis; |
| 78 } | 82 } |
| 83 |
| 84 .destination-settings-offline-status { |
| 85 overflow: hidden; |
| 86 text-overflow: ellipsis; |
| 87 } |
| OLD | NEW |