| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 The Chromium Authors. All rights reserved. | 2 * Copyright 2014 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 .responsive-design { | 7 .responsive-design { |
| 8 position: relative; | 8 position: relative; |
| 9 background-color: rgb(0, 0, 0); | 9 background-color: rgb(0, 0, 0); |
| 10 overflow: hidden; | 10 overflow: hidden; |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 } | 346 } |
| 347 | 347 |
| 348 /* Device section */ | 348 /* Device section */ |
| 349 | 349 |
| 350 .responsive-design-section-device .responsive-design-section-decorator { | 350 .responsive-design-section-device .responsive-design-section-decorator { |
| 351 background: linear-gradient(to bottom, rgb(255, 186, 68), rgb(255, 119, 0)); | 351 background: linear-gradient(to bottom, rgb(255, 186, 68), rgb(255, 119, 0)); |
| 352 margin-left: 0; | 352 margin-left: 0; |
| 353 } | 353 } |
| 354 | 354 |
| 355 .responsive-design-section-device select { | 355 .responsive-design-section-device select { |
| 356 width: 185px; | 356 width: 283px; |
| 357 } | 357 } |
| 358 | 358 |
| 359 .responsive-design-section-device input[type='text'], | 359 .responsive-design-section-device input[type='text'], |
| 360 .responsive-design-section-device input[type='text']::-webkit-input-placeholder, | 360 .responsive-design-section-device input[type='text']::-webkit-input-placeholder, |
| 361 .responsive-design-section-device select { | 361 .responsive-design-section-device select { |
| 362 color: rgb(255, 156, 0); | 362 color: rgb(255, 156, 0); |
| 363 } | 363 } |
| 364 | 364 |
| 365 .responsive-design-section-device input[type='checkbox']:checked:after { | 365 .responsive-design-section-device input[type='checkbox']:checked:after { |
| 366 background: rgb(255, 156, 0); | 366 background: rgb(255, 156, 0); |
| 367 } | 367 } |
| 368 | 368 |
| 369 /* Network section */ | 369 .responsive-design-user-agent { |
| 370 | 370 overflow: hidden; |
| 371 .responsive-design-section-network select { | |
| 372 width: 185px; | |
| 373 } | |
| 374 | |
| 375 .responsive-design-section-network input[type='text'] { | |
| 376 width: 222px; | |
| 377 margin-left: 5px; | |
| 378 text-overflow: ellipsis; | 371 text-overflow: ellipsis; |
| 379 } | 372 width: 85px; |
| 380 | 373 color: rgb(255, 156, 0); |
| 381 .responsive-design-section-network input[type='text'], | |
| 382 .responsive-design-section-network input[type='text']::-webkit-input-placeholder
, | |
| 383 .responsive-design-section-network select { | |
| 384 color: rgb(65, 175, 255); | |
| 385 } | |
| 386 | |
| 387 .responsive-design-section-network .responsive-design-section-decorator { | |
| 388 background: linear-gradient(to bottom, rgb(77, 170, 243), rgb(0, 130, 255)); | |
| 389 } | 374 } |
| 390 | 375 |
| 391 /* Warning message */ | 376 /* Warning message */ |
| 392 | 377 |
| 393 .responsive-design-warning { | 378 .responsive-design-warning { |
| 394 position: absolute; | 379 position: absolute; |
| 395 left: 0; | 380 left: 0; |
| 396 right: 0; | 381 right: 0; |
| 397 top: 0; | 382 top: 0; |
| 398 overflow: hidden; | 383 overflow: hidden; |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 pointer-events: none; | 471 pointer-events: none; |
| 487 } | 472 } |
| 488 | 473 |
| 489 .media-inspector-label-right { | 474 .media-inspector-label-right { |
| 490 right: 4px; | 475 right: 4px; |
| 491 } | 476 } |
| 492 | 477 |
| 493 .media-inspector-label-left { | 478 .media-inspector-label-left { |
| 494 left: 4px; | 479 left: 4px; |
| 495 } | 480 } |
| OLD | NEW |