| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 html { | |
| 6 height: 100%; /* For printing. */ | |
| 7 } | |
| 8 | |
| 9 body { | 5 body { |
| 10 /* http://crbug.com/129406 --- horizontal scrollbars flicker when changing | 6 /* http://crbug.com/129406 --- horizontal scrollbars flicker when changing |
| 11 * sections. */ | 7 * sections. */ |
| 12 overflow-x: hidden; | 8 overflow-x: hidden; |
| 13 } | 9 } |
| 14 | 10 |
| 15 #navigation { | 11 #navigation { |
| 16 height: 100%; | 12 height: 100%; |
| 17 left: 0; | 13 left: 0; |
| 18 /* This is a hack to prevent the navigation bar from occluding pointer events | 14 /* This is a hack to prevent the navigation bar from occluding pointer events |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 .iframe-container.expanded { | 54 .iframe-container.expanded { |
| 59 left: 0; | 55 left: 0; |
| 60 } | 56 } |
| 61 | 57 |
| 62 iframe { | 58 iframe { |
| 63 border: none; | 59 border: none; |
| 64 display: block; | 60 display: block; |
| 65 height: 100%; | 61 height: 100%; |
| 66 width: 100%; | 62 width: 100%; |
| 67 } | 63 } |
| OLD | NEW |