| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 html[dir=rtl] body.uber-frame > .page { | 5 html[dir=rtl] body.uber-frame > .page { |
| 6 -webkit-margin-end: 0; | 6 -webkit-margin-end: 0; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #top-container { | 9 #top-container { |
| 10 margin-top: 16px; | 10 margin-top: 16px; |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 } | 142 } |
| 143 | 143 |
| 144 .gap { | 144 .gap { |
| 145 -webkit-border-end: 1px solid rgb(192, 195, 198); | 145 -webkit-border-end: 1px solid rgb(192, 195, 198); |
| 146 height: 14px; | 146 height: 14px; |
| 147 margin: 1px 0; | 147 margin: 1px 0; |
| 148 width: 45px; | 148 width: 45px; |
| 149 } | 149 } |
| 150 | 150 |
| 151 .entry { | 151 .entry { |
| 152 display: -webkit-flex; |
| 152 overflow: auto; | 153 overflow: auto; |
| 153 } | 154 } |
| 154 | 155 |
| 155 .entry-box, | 156 .entry-box, |
| 156 .site-domain-wrapper { | 157 .site-domain-wrapper { |
| 157 -webkit-align-items: center; | 158 -webkit-align-items: center; |
| 158 cursor: default; | 159 cursor: default; |
| 159 display: -webkit-flex; | 160 display: -webkit-flex; |
| 160 /* An odd line-height ensures a consistent baseline on all platforms. */ | 161 /* An odd line-height ensures a consistent baseline on all platforms. */ |
| 161 line-height: 1.75em; | 162 line-height: 1.75em; |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 } | 487 } |
| 487 | 488 |
| 488 /* Clear the float to ensure that #results-pagination encloses its children. */ | 489 /* Clear the float to ensure that #results-pagination encloses its children. */ |
| 489 #results-pagination::after { | 490 #results-pagination::after { |
| 490 clear: both; | 491 clear: both; |
| 491 content: ''; | 492 content: ''; |
| 492 display: block; | 493 display: block; |
| 493 height: 0; | 494 height: 0; |
| 494 visibility: hidden; | 495 visibility: hidden; |
| 495 } | 496 } |
| OLD | NEW |