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

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

Issue 9372111: History page: Removing ugly css hack (negative margins). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebasing Created 8 years, 10 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 | chrome/browser/resources/history.html » ('j') | 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 5
6 #editing-controls button { 6 #editing-controls {
7 margin: 18px 0 -8px 0; 7 margin-top: 16px;
8 white-space: nowrap;
9 }
10
11 #editing-controls button:first-of-type {
12 -webkit-margin-start: 0;
8 } 13 }
9 14
10 #results-display { 15 #results-display {
11 margin: 16px 0 0 0; 16 margin: 16px 0 0 0;
12 max-width: 740px; 17 max-width: 740px;
13 } 18 }
14 19
15 .edit-button { 20 .edit-button {
16 -webkit-appearance: none; 21 -webkit-appearance: none;
17 background: none; 22 background: none;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 /* The box should be no bigger than its parent. */ 58 /* The box should be no bigger than its parent. */
54 max-width: 100%; 59 max-width: 100%;
55 overflow: hidden; 60 overflow: hidden;
56 padding-bottom: 1px; 61 padding-bottom: 1px;
57 } 62 }
58 63
59 html[dir=rtl] .entry-box { 64 html[dir=rtl] .entry-box {
60 float: right; /* To make the box shrink to fit its content. */ 65 float: right; /* To make the box shrink to fit its content. */
61 } 66 }
62 67
68 .day {
69 white-space: nowrap;
70 }
71
63 .search-results, .day-results { 72 .search-results, .day-results {
64 margin: 0 0 24px 0; 73 margin: 0 0 24px 0;
65 padding: 0; 74 padding: 0;
66 } 75 }
67 76
68 .snippet { 77 .snippet {
69 -webkit-box-orient: vertical; 78 -webkit-box-orient: vertical;
70 -webkit-line-clamp: 2; 79 -webkit-line-clamp: 2;
71 -webkit-margin-start: 110px; 80 -webkit-margin-start: 110px;
72 clear: both; 81 clear: both;
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 .fade-out { 207 .fade-out {
199 -webkit-transition: opacity 200ms; 208 -webkit-transition: opacity 200ms;
200 opacity: 0; 209 opacity: 0;
201 } 210 }
202 211
203 .page-navigation { 212 .page-navigation {
204 -webkit-margin-end: 4px; 213 -webkit-margin-end: 4px;
205 background-color: rgb(235, 239, 249); 214 background-color: rgb(235, 239, 249);
206 padding: 8px; 215 padding: 8px;
207 } 216 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/history.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698