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

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

Issue 821703003: Hide "result-headers" on mobile when empty (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use :empty CSS pseudo selector Created 6 years 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) 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 body.uber-frame > .page.big-topbar-page { 9 body.uber-frame > .page.big-topbar-page {
10 padding-top: 78px; 10 padding-top: 78px;
(...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after
629 background-image: url(../../../../ui/webui/resources/images/phone_small.png); 629 background-image: url(../../../../ui/webui/resources/images/phone_small.png);
630 background-position: 14px center; 630 background-position: 14px center;
631 padding-left: 43px; 631 padding-left: 43px;
632 } 632 }
633 633
634 #action-menu[data-devicetype='tablet']::before { 634 #action-menu[data-devicetype='tablet']::before {
635 background-image: url(../../../../ui/webui/resources/images/tablet_small.png); 635 background-image: url(../../../../ui/webui/resources/images/tablet_small.png);
636 background-position: 17px center; 636 background-position: 17px center;
637 padding-left: 49px; 637 padding-left: 49px;
638 } 638 }
639
640 <if expr="is_ios">
641 #results-header:empty {
Dan Beam 2014/12/23 18:03:44 add this to history_mobile.css instead
642 display: none;
643 }
644 </if>
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