| 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 { | 7 html:not(.focus-outline-visible) :focus { |
| 8 outline: none; | 8 outline: none; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 } | 187 } |
| 188 | 188 |
| 189 .day-results, | 189 .day-results, |
| 190 .search-results { | 190 .search-results { |
| 191 margin: 0; | 191 margin: 0; |
| 192 } | 192 } |
| 193 | 193 |
| 194 /* Fade out the entry-box, rather than its parent node, so that the dividing | 194 /* Fade out the entry-box, rather than its parent node, so that the dividing |
| 195 line between entries doesn't fade out. */ | 195 line between entries doesn't fade out. */ |
| 196 .entry.fade-out .entry-box { | 196 .entry.fade-out .entry-box { |
| 197 -webkit-transition: opacity 200ms; | |
| 198 opacity: 1; | 197 opacity: 1; |
| 198 transition: opacity 200ms; |
| 199 } | 199 } |
| 200 | 200 |
| 201 .entry.fade-out { | 201 .entry.fade-out { |
| 202 opacity: 1; | 202 opacity: 1; |
| 203 } | 203 } |
| 204 | 204 |
| 205 .entry.fade-out .entry-box { | 205 .entry.fade-out .entry-box { |
| 206 opacity: 0; | 206 opacity: 0; |
| 207 } | 207 } |
| 208 | 208 |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 | 354 |
| 355 .ios-keyboard-visible #scrolling-container { | 355 .ios-keyboard-visible #scrolling-container { |
| 356 /* Should be 0, but that breaks scrolling -- see crbug.com/292715. */ | 356 /* Should be 0, but that breaks scrolling -- see crbug.com/292715. */ |
| 357 bottom: -1px; | 357 bottom: -1px; |
| 358 } | 358 } |
| 359 | 359 |
| 360 #results-header:empty { | 360 #results-header:empty { |
| 361 display: none; | 361 display: none; |
| 362 } | 362 } |
| 363 </if> /* is_ios */ | 363 </if> /* is_ios */ |
| OLD | NEW |