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 /** | 5 /** |
6 * The following style rules affect Extension Infobars on the Mac. | 6 * The following style rules affect Extension Infobars on the Mac. |
7 */ | 7 */ |
8 | 8 |
9 body { | 9 body { |
10 background: -webkit-linear-gradient(#ebebeb, #cfcfcf); | 10 background: -webkit-linear-gradient(#ebebeb, #cfcfcf); |
11 font-family: 'Lucida Grande', Helvetica, sans-serif; | |
12 font-size: 12px; | 11 font-size: 12px; |
13 height: 36px; /* Infobars are limited to 36-72px */ | 12 height: 36px; /* Infobars are limited to 36-72px */ |
14 margin: 0 38px; | 13 margin: 0 38px; |
15 overflow: hidden; | 14 overflow: hidden; |
16 } | 15 } |
OLD | NEW |