| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 .devices-container { | 7 .devices-container { |
| 8 overflow: hidden; | 8 overflow: hidden; |
| 9 flex: auto; | 9 flex: auto; |
| 10 } | 10 } |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 .view-title { | 69 .view-title { |
| 70 font-size: 16px; | 70 font-size: 16px; |
| 71 flex: none; | 71 flex: none; |
| 72 } | 72 } |
| 73 | 73 |
| 74 .devices-footer { | 74 .devices-footer { |
| 75 border-top: 1px solid #cdcdcd; | 75 border-top: 1px solid #cdcdcd; |
| 76 background-color: #f3f3f3; | 76 background-color: #f3f3f3; |
| 77 flex: none; | 77 flex: none; |
| 78 padding: 3px 10px; | 78 padding: 3px 10px; |
| 79 overflow: hidden; |
| 79 } | 80 } |
| 80 | 81 |
| 81 .devices-footer > span { | 82 .devices-footer > span { |
| 82 white-space: pre; | 83 white-space: pre; |
| 83 } | 84 } |
| 84 | 85 |
| 85 .discovery-view { | 86 .discovery-view { |
| 86 overflow: auto; | 87 overflow-x: hidden; |
| 88 overflow-y: auto; |
| 87 padding: 15px 15px 0px 0px; | 89 padding: 15px 15px 0px 0px; |
| 88 } | 90 } |
| 89 | 91 |
| 90 .discovery-view > * { | 92 .discovery-view > * { |
| 91 flex: none; | 93 flex: none; |
| 92 } | 94 } |
| 93 | 95 |
| 94 .usb-checkbox { | 96 .usb-checkbox { |
| 95 padding-bottom: 8px; | 97 padding-bottom: 8px; |
| 96 margin-top: 20px; | 98 margin-top: 20px; |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 } | 330 } |
| 329 | 331 |
| 330 .device-view-port-icon.device-view-port-icon-error { | 332 .device-view-port-icon.device-view-port-icon-error { |
| 331 background-color: red; | 333 background-color: red; |
| 332 } | 334 } |
| 333 | 335 |
| 334 .device-view-port-icon.device-view-port-icon-transient { | 336 .device-view-port-icon.device-view-port-icon-transient { |
| 335 transform: scale(1.2); | 337 transform: scale(1.2); |
| 336 background-color: orange; | 338 background-color: orange; |
| 337 } | 339 } |
| OLD | NEW |