| 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 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 display: block; | 75 display: block; |
| 76 line-height: 1.5; | 76 line-height: 1.5; |
| 77 margin-top: 16px; | 77 margin-top: 16px; |
| 78 width: 100%; | 78 width: 100%; |
| 79 } | 79 } |
| 80 | 80 |
| 81 html[dir='rtl'] #search-field { | 81 html[dir='rtl'] #search-field { |
| 82 background-position: right 16px center; | 82 background-position: right 16px center; |
| 83 } | 83 } |
| 84 | 84 |
| 85 .no-results-message { | |
| 86 padding: 24px 16px; | |
| 87 } | |
| 88 | |
| 89 #notification-bar.alone { | 85 #notification-bar.alone { |
| 90 float: none; | 86 float: none; |
| 91 font-size: 75%; | 87 font-size: 75%; |
| 92 margin: 0; | 88 margin: 0; |
| 93 padding-bottom: 0; | 89 padding-bottom: 0; |
| 94 padding-top: 0; | 90 padding-top: 0; |
| 95 } | 91 } |
| 96 | 92 |
| 97 #remove-selected, | 93 #remove-selected, |
| 98 #search-button, | 94 #search-button, |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 } | 291 } |
| 296 | 292 |
| 297 #scrolling-container > * { | 293 #scrolling-container > * { |
| 298 margin-left: auto; | 294 margin-left: auto; |
| 299 margin-right: auto; | 295 margin-right: auto; |
| 300 max-width: 718px; | 296 max-width: 718px; |
| 301 } | 297 } |
| 302 | 298 |
| 303 h1, | 299 h1, |
| 304 #notification-bar, | 300 #notification-bar, |
| 305 #loading-spinner, | 301 #loading-spinner { |
| 306 .no-results-message { | |
| 307 padding-left: 0; | 302 padding-left: 0; |
| 308 padding-right: 0; | 303 padding-right: 0; |
| 309 } | 304 } |
| 310 | 305 |
| 311 } /* @media only screen and (max-width:720px) */ | 306 } /* @media only screen and (max-width:720px) */ |
| 312 | 307 |
| 313 <if expr="is_ios"> | 308 <if expr="is_ios"> |
| 314 .ios-keyboard-visible #clear-browsing-data { | 309 .ios-keyboard-visible #clear-browsing-data { |
| 315 display: none; | 310 display: none; |
| 316 } | 311 } |
| 317 | 312 |
| 318 .ios-keyboard-visible #scrolling-container { | 313 .ios-keyboard-visible #scrolling-container { |
| 319 /* Should be 0, but that breaks scrolling -- see crbug.com/292715. */ | 314 /* Should be 0, but that breaks scrolling -- see crbug.com/292715. */ |
| 320 bottom: -1px; | 315 bottom: -1px; |
| 321 } | 316 } |
| 322 </if> /* is_ios */ | 317 </if> /* is_ios */ |
| OLD | NEW |