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