OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 body { | 7 body { |
8 margin: 10px; | 8 margin: 10px; |
9 min-width: 47em; | 9 min-width: 47em; |
10 } | 10 } |
(...skipping 12 matching lines...) Expand all Loading... | |
23 -webkit-padding-start: 0; | 23 -webkit-padding-start: 0; |
24 padding-top: 20px; | 24 padding-top: 20px; |
25 position: relative; | 25 position: relative; |
26 box-sizing: border-box; | 26 box-sizing: border-box; |
27 } | 27 } |
28 | 28 |
29 #header h1 { | 29 #header h1 { |
30 background: url('../../app/theme/extensions_section.png') 0px 20px no-repeat; | 30 background: url('../../app/theme/extensions_section.png') 0px 20px no-repeat; |
31 display: inline; | 31 display: inline; |
32 margin: 0; | 32 margin: 0; |
33 padding-bottom: 43px; | 33 padding-bottom: 20px; |
34 padding-left: 75px; | 34 padding-left: 75px; |
35 padding-top: 40px; | 35 padding-top: 40px; |
36 } | 36 } |
37 | 37 |
38 html[dir=rtl] #header h1 { | 38 html[dir=rtl] #header h1 { |
39 background: url('../../app/theme/extensions_section.png') right no-repeat; | 39 background: url('../../app/theme/extensions_section.png') right no-repeat; |
40 padding-right: 95px; | 40 padding-right: 95px; |
41 padding-left: 0; | 41 padding-left: 0; |
42 } | 42 } |
43 | 43 |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
244 | 244 |
245 /* Match the indentation of .plugin-text. */ | 245 /* Match the indentation of .plugin-text. */ |
246 .plugin-actions { | 246 .plugin-actions { |
247 -webkit-padding-start: 5px; | 247 -webkit-padding-start: 5px; |
248 margin-top: 0.2em; | 248 margin-top: 0.2em; |
249 margin-bottom: 0.2em; | 249 margin-bottom: 0.2em; |
250 } | 250 } |
251 | 251 |
252 button { | 252 button { |
253 font-size: 104%; | 253 font-size: 104%; |
254 } | 254 } |
James Hawkins
2011/11/20 23:33:08
What's the change here? I can't see it in this fo
benwells
2011/11/21 00:32:45
The original file doesn't have a CR after the clos
| |
OLD | NEW |