| 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 * { | 7 * { |
| 8 /* This is required for correct sizing of flex items because we rely | 8 /* This is required for correct sizing of flex items because we rely |
| 9 * on an old version of the flexbox spec. | 9 * on an old version of the flexbox spec. |
| 10 * Longer-term we should remove this, see crbug.com/473625 */ | 10 * Longer-term we should remove this, see crbug.com/473625 */ |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 left: 0; | 65 left: 0; |
| 66 right: 0; | 66 right: 0; |
| 67 bottom: 0; | 67 bottom: 0; |
| 68 } | 68 } |
| 69 | 69 |
| 70 iframe.fill { | 70 iframe.fill { |
| 71 width: 100%; | 71 width: 100%; |
| 72 height: 100%; | 72 height: 100%; |
| 73 } | 73 } |
| 74 | 74 |
| 75 iframe.extension { |
| 76 flex: auto; |
| 77 width: 100%; |
| 78 height: 100%; |
| 79 } |
| 80 |
| 81 iframe.panel.extension { |
| 82 display: block; |
| 83 height: 100%; |
| 84 } |
| 85 |
| 75 .widget { | 86 .widget { |
| 76 position: relative; | 87 position: relative; |
| 77 flex: auto; | 88 flex: auto; |
| 78 } | 89 } |
| 79 | 90 |
| 80 .hbox { | 91 .hbox { |
| 81 display: flex; | 92 display: flex; |
| 82 flex-direction: row !important; | 93 flex-direction: row !important; |
| 83 position: relative; | 94 position: relative; |
| 84 } | 95 } |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 padding: 20px; | 318 padding: 20px; |
| 308 position: absolute; | 319 position: absolute; |
| 309 top: 0; | 320 top: 0; |
| 310 right: 0; | 321 right: 0; |
| 311 bottom: 0; | 322 bottom: 0; |
| 312 left: 0; | 323 left: 0; |
| 313 font-size: 13px; | 324 font-size: 13px; |
| 314 overflow: auto; | 325 overflow: auto; |
| 315 z-index: 500; | 326 z-index: 500; |
| 316 } | 327 } |
| OLD | NEW |