OLD | NEW |
---|---|
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 body { | 5 body { |
6 margin: 10px; | 6 margin: 10px; |
7 min-width: 47em; | 7 min-width: 47em; |
8 /* Should match needs-restart.(height + padding-top + padding-bottom + 5) */ | 8 /* Should match needs-restart.(height + padding-top + padding-bottom + 5) */ |
9 padding-bottom: 65px; | 9 padding-bottom: 65px; |
10 } | 10 } |
(...skipping 10 matching lines...) Expand all Loading... | |
21 /* 67px is the height of the header's background image. */ | 21 /* 67px is the height of the header's background image. */ |
22 min-height: 67px; | 22 min-height: 67px; |
23 overflow: hidden; | 23 overflow: hidden; |
24 padding-bottom: 20px; | 24 padding-bottom: 20px; |
25 padding-top: 20px; | 25 padding-top: 20px; |
26 position: relative; | 26 position: relative; |
27 } | 27 } |
28 | 28 |
29 #header h1 { | 29 #header h1 { |
30 -webkit-padding-start: 75px; | 30 -webkit-padding-start: 75px; |
31 background: url('../../app/theme/flags_section.png') 0 20px no-repeat; | 31 background-image: url('../../app/theme/flags_section.png'); |
32 background-position-y: 20px; | |
33 background-repeat: no-repeat; | |
Dan Beam
2013/01/03 04:55:23
what's the point of this change?
Evan Stade
2013/01/03 05:31:23
no point any more, removed.
| |
32 display: inline; | 34 display: inline; |
33 margin: 0; | 35 margin: 0; |
34 padding-bottom: 40px; | 36 padding-bottom: 40px; |
35 padding-top: 40px; | 37 padding-top: 40px; |
36 } | 38 } |
37 | 39 |
38 html[dir=rtl] #header h1 { | 40 html[dir=rtl] #header h1 { |
39 background: url('../../app/theme/flags_section.png') right no-repeat; | 41 background: url('../../app/theme/flags_section.png') right no-repeat; |
40 } | 42 } |
41 | 43 |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
156 /* If you change this, update body.padding-bottom */ | 158 /* If you change this, update body.padding-bottom */ |
157 padding-top: 15px; | 159 padding-top: 15px; |
158 position: fixed; | 160 position: fixed; |
159 width: 100%; | 161 width: 100%; |
160 } | 162 } |
161 | 163 |
162 button { | 164 button { |
163 font-size: 104%; | 165 font-size: 104%; |
164 } | 166 } |
165 | 167 |
OLD | NEW |