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

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

Issue 8772046: Make input boxes on history and downloads look nice. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 9 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 | « chrome/browser/resources/downloads.html ('k') | 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) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 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 #results-separator { 6 #results-summary {
7 border-top: 1px solid rgb(156, 194, 239); 7 border-top: 1px solid rgb(156, 194, 239);
8 background-color: rgb(235, 239, 249); 8 background-color: rgb(235, 239, 249);
9 font-weight: bold; 9 font-weight: bold;
10 padding: 3px; 10 padding: 3px;
11 margin-bottom: -8px; 11 margin-bottom: -8px;
12 margin-top: 12px; 12 margin-top: 12px;
13 }
14
15 #results-separator table {
16 width: 100%;
17 }
18
19 #results-summary {
20 overflow: hidden; 13 overflow: hidden;
21 text-overflow: ellipsis; 14 text-overflow: ellipsis;
22 white-space: nowrap; 15 white-space: nowrap;
23 width: 50%;
24 } 16 }
25 17
26 #editing-controls button { 18 #editing-controls button {
27 margin: 18px 0 -8px 0; 19 margin: 18px 0 -8px 0;
28 } 20 }
29 21
30 #results-display { 22 #results-display {
31 margin: 16px 0 0 0; 23 margin: 16px 0 0 0;
32 max-width: 740px; 24 max-width: 740px;
33 } 25 }
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 202
211 /* Since all history links are visited, we can make them blue. */ 203 /* Since all history links are visited, we can make them blue. */
212 .entry .title > a:visted { 204 .entry .title > a:visted {
213 color: rgb(17, 17, 204); 205 color: rgb(17, 17, 204);
214 } 206 }
215 207
216 .fade-out { 208 .fade-out {
217 -webkit-transition: opacity 200ms; 209 -webkit-transition: opacity 200ms;
218 opacity: 0; 210 opacity: 0;
219 } 211 }
212
213 .page-navigation {
214 -webkit-margin-end: 4px;
215 background-color: rgb(235, 239, 249);
216 padding: 8px;
217 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/downloads.html ('k') | chrome/browser/resources/history.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698