blob: 92a130e5e2e26cd2ff2b2314e805cc275b24d29a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* The following style rules affect Extension Infobars on the Mac.
*/
body {
background: -webkit-gradient(linear, left top, left bottom,
from(#EBEBEB), to(#CFCFCF));
font-family: 'Lucida Grande', Helvetica, sans-serif;
font-size: 12px;
height: 36px; /* Infobars are limited to 36-72px */
margin: 0 38px;
overflow: hidden;
}
|