Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(705)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/devices/devicesView.css

Issue 2864263002: [DevTools] Expose TCP targets config in frontend, use it for Node (Closed)
Patch Set: panel Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 .port-forwarding-footer { 182 .port-forwarding-footer {
183 overflow: hidden; 183 overflow: hidden;
184 margin: 15px 0 0 25px; 184 margin: 15px 0 0 25px;
185 max-width: 500px; 185 max-width: 500px;
186 } 186 }
187 187
188 .port-forwarding-footer > * { 188 .port-forwarding-footer > * {
189 white-space: pre-wrap; 189 white-space: pre-wrap;
190 } 190 }
191 191
192 .network-discovery-header {
193 display: flex;
194 align-items: center;
195 flex-direction: row;
196 margin-top: 5px;
197 }
198
199 .add-network-target-button {
200 margin: 10px 25px;
201 align-self: flex-start;
202 }
203
204 .network-discovery-list {
205 margin: 10px 0 0 25px;
206 max-width: 500px;
207 flex: none;
208 }
209
210 .network-discovery-list-empty {
211 flex: auto;
212 height: 30px;
213 display: flex;
214 align-items: center;
215 justify-content: center;
216 }
217
218 .network-discovery-list-item {
219 padding: 3px 5px 3px 5px;
220 height: 30px;
221 display: flex;
222 align-items: center;
223 position: relative;
224 flex: auto 1 1;
225 }
226
227 .network-discovery-value {
228 white-space: nowrap;
229 text-overflow: ellipsis;
230 -webkit-user-select: none;
231 color: #222;
232 flex: 3 1 0;
233 overflow: hidden;
234 }
235
236 .network-discovery-edit-row {
237 flex: none;
238 display: flex;
239 flex-direction: row;
240 margin: 6px 5px;
241 align-items: center;
242 }
243
244 .network-discovery-edit-row input {
245 width: 100%;
246 text-align: inherit;
247 }
248
249 .network-discovery-footer {
250 overflow: hidden;
251 margin: 15px 0 0 25px;
252 max-width: 500px;
253 }
254
255 .network-discovery-footer > * {
256 white-space: pre-wrap;
257 }
258
192 .device-view { 259 .device-view {
193 overflow: auto; 260 overflow: auto;
194 -webkit-user-select: text; 261 -webkit-user-select: text;
195 flex: auto; 262 flex: auto;
196 } 263 }
197 264
198 .device-text-row { 265 .device-text-row {
199 align-items: baseline; 266 align-items: baseline;
200 margin-right: 25px; 267 margin-right: 25px;
201 } 268 }
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 } 393 }
327 394
328 .device-view-port-icon.device-view-port-icon-error { 395 .device-view-port-icon.device-view-port-icon-error {
329 background-color: red; 396 background-color: red;
330 } 397 }
331 398
332 .device-view-port-icon.device-view-port-icon-transient { 399 .device-view-port-icon.device-view-port-icon-transient {
333 transform: scale(1.2); 400 transform: scale(1.2);
334 background-color: orange; 401 background-color: orange;
335 } 402 }
403
404 .node-frontend .network-discovery-header {
405 display: none;
406 }
407
408 .devices-view-panel {
409 align-items: center;
410 justify-content: flex-start;
411 }
412
413 .node-frontend.network-discovery-view {
414 min-width: 400px;
415 flex: auto;
416 }
417
418 .node-frontend .add-network-target-button {
419 align-self: center;
420 }
421
422 :host-context(.node-frontend) .network-discovery-list-empty {
423 height: 40px;
424 }
425
426 :host-context(.node-frontend) .network-discovery-list-item {
427 padding: 3px 15px;
428 height: 40px;
429 }
430
431 .node-frontend .network-discovery-list {
432 margin: 20px 0 5px 0;
433 max-width: 600px;
434 max-height: 202px;
435 }
436
437 .node-frontend .network-discovery-footer {
438 margin: 0;
439 }
440
441 .devices-view-panel-center {
442 display: flex;
443 align-items: stretch;
444 justify-content: center;
445 max-width: 600px;
446 flex-direction: column;
447 padding-top: 50px;
448 }
449
450 .devices-view-panel-logo {
451 align-self: center;
452 width: 400px;
453 margin-bottom: 50px;
454 flex: none;
455 }
456
457 :host-context(.node-frontend) .network-discovery-edit-row input {
458 height: 30px;
459 padding-left: 5px;
460 }
461
462 :host-context(.node-frontend) .network-discovery-edit-row {
463 margin: 6px 9px;
464 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698