Chromium Code Reviews| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 130 | 130 |
| 131 .port-forwarding-list-item { | 131 .port-forwarding-list-item { |
| 132 padding: 3px 5px 3px 5px; | 132 padding: 3px 5px 3px 5px; |
| 133 height: 30px; | 133 height: 30px; |
| 134 display: flex; | 134 display: flex; |
| 135 align-items: center; | 135 align-items: center; |
| 136 position: relative; | 136 position: relative; |
| 137 flex: auto 1 1; | 137 flex: auto 1 1; |
| 138 } | 138 } |
| 139 | 139 |
| 140 .port-forwarding-value { | 140 .list-item .port-forwarding-value { |
| 141 white-space: nowrap; | 141 white-space: nowrap; |
| 142 text-overflow: ellipsis; | 142 text-overflow: ellipsis; |
| 143 -webkit-user-select: none; | 143 -webkit-user-select: none; |
| 144 color: #222; | 144 color: #222; |
| 145 overflow: hidden; | |
| 146 } | |
| 147 | |
| 148 .port-forwarding-value { | |
| 145 flex: 3 1 0; | 149 flex: 3 1 0; |
| 146 overflow: hidden; | |
|
luoe
2017/05/26 23:41:04
.port-forwarding-value applies to
- values in the
| |
| 147 } | 150 } |
| 148 | 151 |
| 149 .port-forwarding-value.port-forwarding-port { | 152 .port-forwarding-value.port-forwarding-port { |
| 150 flex: 1 1 0; | 153 flex: 1 1 0; |
| 151 } | 154 } |
| 152 | 155 |
| 153 .port-localhost { | 156 .port-localhost { |
| 154 color: #aaa; | 157 color: #aaa; |
| 155 } | 158 } |
| 156 | 159 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 217 | 220 |
| 218 .network-discovery-list-item { | 221 .network-discovery-list-item { |
| 219 padding: 3px 5px 3px 5px; | 222 padding: 3px 5px 3px 5px; |
| 220 height: 30px; | 223 height: 30px; |
| 221 display: flex; | 224 display: flex; |
| 222 align-items: center; | 225 align-items: center; |
| 223 position: relative; | 226 position: relative; |
| 224 flex: auto 1 1; | 227 flex: auto 1 1; |
| 225 } | 228 } |
| 226 | 229 |
| 227 .network-discovery-value { | 230 .list-item .network-discovery-value { |
| 228 white-space: nowrap; | 231 white-space: nowrap; |
| 229 text-overflow: ellipsis; | 232 text-overflow: ellipsis; |
| 230 -webkit-user-select: none; | 233 -webkit-user-select: none; |
| 231 color: #222; | 234 color: #222; |
| 235 overflow: hidden; | |
| 236 } | |
| 237 | |
| 238 .network-discovery-value { | |
| 232 flex: 3 1 0; | 239 flex: 3 1 0; |
| 233 overflow: hidden; | |
| 234 } | 240 } |
| 235 | 241 |
| 236 .network-discovery-edit-row { | 242 .network-discovery-edit-row { |
| 237 flex: none; | 243 flex: none; |
| 238 display: flex; | 244 display: flex; |
| 239 flex-direction: row; | 245 flex-direction: row; |
| 240 margin: 6px 5px; | 246 margin: 6px 5px; |
| 241 align-items: center; | 247 align-items: center; |
| 242 } | 248 } |
| 243 | 249 |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 455 } | 461 } |
| 456 | 462 |
| 457 :host-context(.node-frontend) .network-discovery-edit-row input { | 463 :host-context(.node-frontend) .network-discovery-edit-row input { |
| 458 height: 30px; | 464 height: 30px; |
| 459 padding-left: 5px; | 465 padding-left: 5px; |
| 460 } | 466 } |
| 461 | 467 |
| 462 :host-context(.node-frontend) .network-discovery-edit-row { | 468 :host-context(.node-frontend) .network-discovery-edit-row { |
| 463 margin: 6px 9px; | 469 margin: 6px 9px; |
| 464 } | 470 } |
| OLD | NEW |