OLD | NEW |
---|---|
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 * | |
5 * This file contains CSS shared by history and downloads. NOTE: These pages are | |
6 * overdue for a revamp so it's more or less deprecated to use or edit this | |
7 * file, or copy its contents. | |
4 */ | 8 */ |
5 | 9 |
6 body { | 10 body { |
7 background-color: white; | 11 background-color: white; |
8 color: black; | 12 color: black; |
9 margin: 10px; | 13 margin: 10px 10px 34px 10px; |
Dan Beam
2011/11/10 09:30:47
You know <body> is not guaranteed to be 100% heigh
Evan Stade
2011/11/10 17:51:47
yes, I'm replacing the footer div with more margin
| |
10 } | 14 } |
11 | 15 |
12 .header { | 16 .header { |
13 clear: both; | 17 clear: both; |
14 overflow: auto; | 18 overflow: auto; |
15 } | 19 } |
16 | 20 |
17 .header .logo { | 21 .header .logo { |
18 float: left; | 22 float: left; |
19 } | 23 } |
20 | 24 |
21 html[dir='rtl'] .logo { | 25 html[dir='rtl'] .logo, |
26 html[dir='rtl'] .form { | |
22 float: right; | 27 float: right; |
23 } | 28 } |
24 | 29 |
25 .header .form { | 30 .header .form { |
26 -webkit-margin-start: 12px; | 31 -webkit-margin-start: 12px; |
27 float: left; | 32 float: left; |
28 margin-top: 22px; | 33 margin-top: 22px; |
29 } | 34 } |
30 | 35 |
31 html[dir='rtl'] .form { | |
32 float: right; | |
33 } | |
34 | |
35 .page-navigation { | 36 .page-navigation { |
36 -webkit-margin-end: 4px; | 37 -webkit-margin-end: 4px; |
37 background-color: #ebeff9; | 38 background-color: #ebeff9; |
38 padding: 8px; | 39 padding: 8px; |
39 } | 40 } |
40 | |
41 .footer { | |
42 height: 24px; | |
43 } | |
44 | |
45 /* TODO(jhawkins): Refactor button styling and remove !important here. This is | |
46 * currently necessary because individual page button element selectors have | |
47 * higher specificity. | |
48 */ | |
49 .link-button, | |
50 .link-button:focus, | |
51 .link-button:hover { | |
52 -webkit-box-shadow: none !important; | |
53 background: transparent none !important; | |
54 border: none !important; | |
55 cursor: pointer; | |
56 text-decoration: underline; | |
57 } | |
58 | |
59 .displaytable { | |
60 display: table; | |
61 } | |
OLD | NEW |