| OLD | NEW |
| 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2013 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 /* This file contains styles specific to Android and iOS. */ | 5 /* This file contains styles specific to Android and iOS. */ |
| 6 | 6 |
| 7 html { | 7 html { |
| 8 height: 100%; | 8 height: 100%; |
| 9 } | 9 } |
| 10 | 10 |
| 11 body { | 11 body { |
| 12 color: rgb(76, 76, 76); | 12 color: rgb(76, 76, 76); |
| 13 font-size: initial; |
| 13 height: 100%; | 14 height: 100%; |
| 14 margin: 0; | 15 margin: 0; |
| 15 } | 16 } |
| 16 | 17 |
| 17 .page { | 18 .page { |
| 18 -webkit-flex-flow: column; | 19 -webkit-flex-flow: column; |
| 19 display: -webkit-flex; | 20 display: -webkit-flex; |
| 20 height: 100%; | 21 height: 100%; |
| 21 } | 22 } |
| 22 | 23 |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 <if expr="is_ios"> | 309 <if expr="is_ios"> |
| 309 .ios-keyboard-visible #clear-browsing-data { | 310 .ios-keyboard-visible #clear-browsing-data { |
| 310 display: none; | 311 display: none; |
| 311 } | 312 } |
| 312 | 313 |
| 313 .ios-keyboard-visible #scrolling-container { | 314 .ios-keyboard-visible #scrolling-container { |
| 314 /* Should be 0, but that breaks scrolling -- see crbug.com/292715. */ | 315 /* Should be 0, but that breaks scrolling -- see crbug.com/292715. */ |
| 315 bottom: -1px; | 316 bottom: -1px; |
| 316 } | 317 } |
| 317 </if> /* is_ios */ | 318 </if> /* is_ios */ |
| OLD | NEW |