| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 The Chromium Authors. All rights reserved. | 2 * Copyright 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 :host { | 7 :host { |
| 8 overflow: hidden; | 8 overflow: hidden; |
| 9 align-items: stretch; | 9 align-items: stretch; |
| 10 flex: auto; | 10 flex: auto; |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 | 358 |
| 359 .device-mode-ruler-left .device-mode-ruler-marker.device-mode-ruler-marker-mediu
m { | 359 .device-mode-ruler-left .device-mode-ruler-marker.device-mode-ruler-marker-mediu
m { |
| 360 width: 10px; | 360 width: 10px; |
| 361 } | 361 } |
| 362 | 362 |
| 363 .device-mode-ruler-left .device-mode-ruler-marker.device-mode-ruler-marker-large
{ | 363 .device-mode-ruler-left .device-mode-ruler-marker.device-mode-ruler-marker-large
{ |
| 364 width: 15px; | 364 width: 15px; |
| 365 } | 365 } |
| 366 | 366 |
| 367 .device-mode-ruler-text { | 367 .device-mode-ruler-text { |
| 368 font-size: 11px; | |
| 369 color: hsl(0, 0%, 50%); | 368 color: hsl(0, 0%, 50%); |
| 370 position: relative; | 369 position: relative; |
| 371 pointer-events: auto; | 370 pointer-events: auto; |
| 372 } | 371 } |
| 373 | 372 |
| 374 .device-mode-ruler-text:hover { | 373 .device-mode-ruler-text:hover { |
| 375 color: hsl(0, 0%, 10%); | 374 color: hsl(0, 0%, 10%); |
| 376 } | 375 } |
| 377 | 376 |
| 378 .device-mode-ruler-top .device-mode-ruler-text { | 377 .device-mode-ruler-top .device-mode-ruler-text { |
| 379 left: 2px; | 378 left: 2px; |
| 380 top: -2px; | 379 top: -2px; |
| 381 } | 380 } |
| 382 | 381 |
| 383 .device-mode-ruler-left .device-mode-ruler-text { | 382 .device-mode-ruler-left .device-mode-ruler-text { |
| 384 left: -4px; | 383 left: -4px; |
| 385 top: -15px; | 384 top: -15px; |
| 386 transform: rotate(270deg); | 385 transform: rotate(270deg); |
| 387 } | 386 } |
| OLD | NEW |