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

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

Issue 13534002: History: Prevent entries from taking up all the available space. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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/history.js » ('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 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 #top-container { 9 #top-container {
10 margin-top: 16px; 10 margin-top: 16px;
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 } 142 }
143 143
144 .gap { 144 .gap {
145 -webkit-border-end: 1px solid rgb(192, 195, 198); 145 -webkit-border-end: 1px solid rgb(192, 195, 198);
146 height: 14px; 146 height: 14px;
147 margin: 1px 0; 147 margin: 1px 0;
148 width: 45px; 148 width: 45px;
149 } 149 }
150 150
151 .entry { 151 .entry {
152 display: -webkit-flex;
152 overflow: auto; 153 overflow: auto;
153 } 154 }
154 155
155 .entry-box, 156 .entry-box,
156 .site-domain-wrapper { 157 .site-domain-wrapper {
157 -webkit-align-items: center; 158 -webkit-align-items: center;
158 cursor: default; 159 cursor: default;
159 display: -webkit-flex; 160 display: -webkit-flex;
160 /* An odd line-height ensures a consistent baseline on all platforms. */ 161 /* An odd line-height ensures a consistent baseline on all platforms. */
161 line-height: 1.75em; 162 line-height: 1.75em;
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 } 487 }
487 488
488 /* Clear the float to ensure that #results-pagination encloses its children. */ 489 /* Clear the float to ensure that #results-pagination encloses its children. */
489 #results-pagination::after { 490 #results-pagination::after {
490 clear: both; 491 clear: both;
491 content: ''; 492 content: '';
492 display: block; 493 display: block;
493 height: 0; 494 height: 0;
494 visibility: hidden; 495 visibility: hidden;
495 } 496 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/history/history.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698