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:not(.focus-outline-visible) :focus { |
| 8 outline: none; |
| 9 } |
| 10 |
7 html { | 11 html { |
8 height: 100%; | 12 height: 100%; |
9 } | 13 } |
10 | 14 |
11 body { | 15 body { |
12 color: rgb(76, 76, 76); | 16 color: rgb(76, 76, 76); |
13 font-size: initial; | 17 font-size: initial; |
14 height: 100%; | 18 height: 100%; |
15 margin: 0; | 19 margin: 0; |
16 } | 20 } |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
313 | 317 |
314 .ios-keyboard-visible #scrolling-container { | 318 .ios-keyboard-visible #scrolling-container { |
315 /* Should be 0, but that breaks scrolling -- see crbug.com/292715. */ | 319 /* Should be 0, but that breaks scrolling -- see crbug.com/292715. */ |
316 bottom: -1px; | 320 bottom: -1px; |
317 } | 321 } |
318 | 322 |
319 #results-header:empty { | 323 #results-header:empty { |
320 display: none; | 324 display: none; |
321 } | 325 } |
322 </if> /* is_ios */ | 326 </if> /* is_ios */ |
OLD | NEW |