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

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

Issue 22320012: History: Remove extra padding around search field on mobile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
« 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 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
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
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) */
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