Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(284)

Side by Side Diff: chrome/browser/resources/history/history_mobile.css

Issue 821703003: Hide "result-headers" on mobile when empty (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move code to history_mobile.css Created 5 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 308
309 <if expr="is_ios"> 309 <if expr="is_ios">
310 .ios-keyboard-visible #clear-browsing-data { 310 .ios-keyboard-visible #clear-browsing-data {
311 display: none; 311 display: none;
312 } 312 }
313 313
314 .ios-keyboard-visible #scrolling-container { 314 .ios-keyboard-visible #scrolling-container {
315 /* Should be 0, but that breaks scrolling -- see crbug.com/292715. */ 315 /* Should be 0, but that breaks scrolling -- see crbug.com/292715. */
316 bottom: -1px; 316 bottom: -1px;
317 } 317 }
318
319 #results-header:empty {
320 display: none;
Dan Beam 2014/12/24 19:00:48 why did you put this for ios only? doesn't this a
sdefresne 2014/12/26 09:42:08 The original bug was reported against iOS and I ca
321 }
318 </if> /* is_ios */ 322 </if> /* is_ios */
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698