| 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 21 matching lines...) Expand all Loading... |
| 32 flex-direction: column; | 32 flex-direction: column; |
| 33 justify-content: center; | 33 justify-content: center; |
| 34 font-size: 14px; | 34 font-size: 14px; |
| 35 } | 35 } |
| 36 | 36 |
| 37 .devices-sidebar-item.selected { | 37 .devices-sidebar-item.selected { |
| 38 border-left: 6px solid #666 !important; | 38 border-left: 6px solid #666 !important; |
| 39 padding-left: 10px; | 39 padding-left: 10px; |
| 40 } | 40 } |
| 41 | 41 |
| 42 .devices-sidebar-item-status { | |
| 43 font-size: 11px; | |
| 44 } | |
| 45 | |
| 46 .devices-sidebar-item-status:before { | 42 .devices-sidebar-item-status:before { |
| 47 content: "\25cf"; | 43 content: "\25cf"; |
| 48 font-size: 16px; | 44 font-size: 16px; |
| 49 color: red; | 45 color: red; |
| 50 position: relative; | 46 position: relative; |
| 51 top: 1px; | 47 top: 1px; |
| 52 margin-right: 2px; | 48 margin-right: 2px; |
| 53 } | 49 } |
| 54 | 50 |
| 55 .devices-sidebar-item.device-connected .devices-sidebar-item-status:before { | 51 .devices-sidebar-item.device-connected .devices-sidebar-item-status:before { |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 } | 326 } |
| 331 | 327 |
| 332 .device-view-port-icon.device-view-port-icon-error { | 328 .device-view-port-icon.device-view-port-icon-error { |
| 333 background-color: red; | 329 background-color: red; |
| 334 } | 330 } |
| 335 | 331 |
| 336 .device-view-port-icon.device-view-port-icon-transient { | 332 .device-view-port-icon.device-view-port-icon-transient { |
| 337 transform: scale(1.2); | 333 transform: scale(1.2); |
| 338 background-color: orange; | 334 background-color: orange; |
| 339 } | 335 } |
| OLD | NEW |