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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 } | 194 } |
195 | 195 |
196 .entry .visit-entry { | 196 .entry .visit-entry { |
197 -webkit-flex: auto; | 197 -webkit-flex: auto; |
198 -webkit-flex-flow: column; | 198 -webkit-flex-flow: column; |
199 -webkit-padding-start: 48px; | 199 -webkit-padding-start: 48px; |
200 background-size: 32px; | 200 background-size: 32px; |
201 line-height: 1.3; | 201 line-height: 1.3; |
202 } | 202 } |
203 | 203 |
| 204 .entry .visit-entry.blocked-indicator { |
| 205 line-height: 2; |
| 206 } |
| 207 |
204 .entry .visit-entry :-webkit-any(a, .domain) { | 208 .entry .visit-entry :-webkit-any(a, .domain) { |
205 display: block; | 209 display: block; |
206 margin-left: 0; | 210 margin-left: 0; |
207 margin-right: 0; | 211 margin-right: 0; |
208 min-width: 0; | 212 min-width: 0; |
209 overflow: hidden; | 213 overflow: hidden; |
210 padding-left: 0; | 214 padding-left: 0; |
211 padding-right: 0; | 215 padding-right: 0; |
212 text-overflow: ellipsis; | 216 text-overflow: ellipsis; |
213 white-space: nowrap; | 217 white-space: nowrap; |
214 } | 218 } |
215 | 219 |
| 220 .entry .visit-entry.blocked-indicator a { |
| 221 display: inline; |
| 222 } |
| 223 |
216 .entry .domain { | 224 .entry .domain { |
217 font-size: 14px; | 225 font-size: 14px; |
218 } | 226 } |
219 | 227 |
220 #older-button { | 228 #older-button { |
221 -webkit-padding-end: 16px; | 229 -webkit-padding-end: 16px; |
222 } | 230 } |
223 | 231 |
224 #newest-button { | 232 #newest-button { |
225 -webkit-padding-start: 16px; | 233 -webkit-padding-start: 16px; |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 | 325 |
318 .ios-keyboard-visible #scrolling-container { | 326 .ios-keyboard-visible #scrolling-container { |
319 /* Should be 0, but that breaks scrolling -- see crbug.com/292715. */ | 327 /* Should be 0, but that breaks scrolling -- see crbug.com/292715. */ |
320 bottom: -1px; | 328 bottom: -1px; |
321 } | 329 } |
322 | 330 |
323 #results-header:empty { | 331 #results-header:empty { |
324 display: none; | 332 display: none; |
325 } | 333 } |
326 </if> /* is_ios */ | 334 </if> /* is_ios */ |
OLD | NEW |