Chromium Code Reviews| 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 22 matching lines...) Expand all Loading... | |
| 33 .device-mode-toolbar-spacer { | 33 .device-mode-toolbar-spacer { |
| 34 flex: 1 1 0; | 34 flex: 1 1 0; |
| 35 display: flex; | 35 display: flex; |
| 36 flex-direction: row; | 36 flex-direction: row; |
| 37 overflow: hidden; | 37 overflow: hidden; |
| 38 } | 38 } |
| 39 | 39 |
| 40 .device-mode-content-clip { | 40 .device-mode-content-clip { |
| 41 overflow: hidden; | 41 overflow: hidden; |
| 42 flex: auto; | 42 flex: auto; |
| 43 z-index: 0; | |
|
caseq
2016/05/05 01:09:21
unrelated?
| |
| 43 } | 44 } |
| 44 | 45 |
| 45 .device-mode-media-container { | 46 .device-mode-media-container { |
| 46 flex: none; | 47 flex: none; |
| 47 overflow: hidden; | 48 overflow: hidden; |
| 48 box-shadow: inset 0 -1px #ccc; | 49 box-shadow: inset 0 -1px #ccc; |
| 49 } | 50 } |
| 50 | 51 |
| 51 .device-mode-presets-container { | 52 .device-mode-presets-container { |
| 52 flex: 0 0 20px; | 53 flex: 0 0 20px; |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 327 .device-mode-ruler-top .device-mode-ruler-text { | 328 .device-mode-ruler-top .device-mode-ruler-text { |
| 328 left: 2px; | 329 left: 2px; |
| 329 top: -2px; | 330 top: -2px; |
| 330 } | 331 } |
| 331 | 332 |
| 332 .device-mode-ruler-left .device-mode-ruler-text { | 333 .device-mode-ruler-left .device-mode-ruler-text { |
| 333 left: -4px; | 334 left: -4px; |
| 334 top: -15px; | 335 top: -15px; |
| 335 transform: rotate(270deg); | 336 transform: rotate(270deg); |
| 336 } | 337 } |
| OLD | NEW |