| 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 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 .device-mode-media-container { | 36 .device-mode-media-container { |
| 37 flex: none; | 37 flex: none; |
| 38 overflow: hidden; | 38 overflow: hidden; |
| 39 } | 39 } |
| 40 | 40 |
| 41 .device-mode-content-area { | 41 .device-mode-content-area { |
| 42 flex: auto; | 42 flex: auto; |
| 43 position: relative; | 43 position: relative; |
| 44 margin: 0; | 44 margin: 0; |
| 45 overflow: hidden; |
| 45 } | 46 } |
| 46 | 47 |
| 47 .device-mode-screen-area { | 48 .device-mode-screen-area { |
| 48 position: absolute; | 49 position: absolute; |
| 49 left: 0; | 50 left: 0; |
| 50 right: 0; | 51 right: 0; |
| 51 width: 0; | 52 width: 0; |
| 52 height: 0; | 53 height: 0; |
| 53 background-color: #171717; | 54 background-color: #171717; |
| 54 box-shadow: hsl(0, 0%, 88%) 1px 1px 0 1px, hsla(0, 0%, 80%, 0.6) 0 0 16px; | 55 box-shadow: hsl(0, 0%, 88%) 1px 1px 0 1px, hsla(0, 0%, 80%, 0.6) 0 0 16px; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 | 100 |
| 100 .device-mode-page-area { | 101 .device-mode-page-area { |
| 101 position: absolute; | 102 position: absolute; |
| 102 left: 0; | 103 left: 0; |
| 103 right: 0; | 104 right: 0; |
| 104 width: 0; | 105 width: 0; |
| 105 height: 0; | 106 height: 0; |
| 106 display: flex; | 107 display: flex; |
| 107 background-color: #fcfcfc; | 108 background-color: #fcfcfc; |
| 108 } | 109 } |
| OLD | NEW |