| 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 body { | 7 body { |
| 8 color: rgb(76, 76, 76); | 8 color: rgb(76, 76, 76); |
| 9 margin: 0; | 9 margin: 0; |
| 10 margin-bottom: 46px; | 10 margin-bottom: 46px; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 } | 49 } |
| 50 | 50 |
| 51 #search-field { | 51 #search-field { |
| 52 -webkit-padding-start: 64px; | 52 -webkit-padding-start: 64px; |
| 53 background-image: | 53 background-image: |
| 54 url('../../../../ui/webui/resources/images/2x/search.png'); | 54 url('../../../../ui/webui/resources/images/2x/search.png'); |
| 55 background-position: left 16px center; | 55 background-position: left 16px center; |
| 56 background-repeat: no-repeat; | 56 background-repeat: no-repeat; |
| 57 background-size: 32px; | 57 background-size: 32px; |
| 58 border: 0; | 58 border: 0; |
| 59 display: block; |
| 59 line-height: 1.5; | 60 line-height: 1.5; |
| 60 margin-top: 16px; | 61 margin-top: 16px; |
| 61 width: 100%; | 62 width: 100%; |
| 62 } | 63 } |
| 63 | 64 |
| 64 html[dir='rtl'] #search-field { | 65 html[dir='rtl'] #search-field { |
| 65 background-position: right 16px center; | 66 background-position: right 16px center; |
| 66 } | 67 } |
| 67 | 68 |
| 68 /* Hide the search field if it is empty (!valid) and there are no results. */ | 69 /* Hide the search field if it is empty (!valid) and there are no results. */ |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 | 274 |
| 274 h1, | 275 h1, |
| 275 #notification-bar, | 276 #notification-bar, |
| 276 #loading-spinner, | 277 #loading-spinner, |
| 277 .no-results-message { | 278 .no-results-message { |
| 278 padding-left: 0; | 279 padding-left: 0; |
| 279 padding-right: 0; | 280 padding-right: 0; |
| 280 } | 281 } |
| 281 | 282 |
| 282 } /* @media only screen and (max-width:720px) */ | 283 } /* @media only screen and (max-width:720px) */ |
| OLD | NEW |