Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 * found in the LICENSE file. */ | |
| 4 | |
| 5 body { | |
| 6 font-family: 'DejaVu Sans', Arial, sans-serif; | |
| 7 max-width: 480px; | |
| 8 min-width: 360px; | |
| 9 } | |
| 10 | |
| 11 #extension-item { | |
| 12 background-repeat: no-repeat; | |
| 13 display: -webkit-box; | |
| 14 min-height: 48px; | |
| 15 } | |
| 16 | |
| 17 #extension-title-running { | |
| 18 -webkit-padding-after: 5px; | |
| 19 -webkit-padding-end: 5px; | |
| 20 font-size: 14px; | |
| 21 font-weight: 500; | |
| 22 } | |
| 23 | |
| 24 #extension-last-updated, | |
| 25 #extension-update-time { | |
| 26 -webkit-padding-end: 7px; | |
| 27 color: rgb(78, 83, 86); | |
| 28 font-size: 13px; | |
|
Evan Stade
2012/06/21 18:56:22
define fonts in em.
Yoyo Zhou
2012/06/21 21:38:05
Done.
| |
| 29 font-weight: 400; | |
| 30 } | |
| 31 | |
| 32 #extension-description { | |
| 33 -webkit-padding-end: 5px; | |
| 34 color: rgb(121, 126, 130); | |
| 35 font-size: 13px; | |
| 36 margin: 5px 0; | |
| 37 white-space: normal; | |
| 38 } | |
| 39 | |
| 40 #extension-details { | |
| 41 -webkit-box-flex: 1; | |
| 42 -webkit-padding-start: 57px; | |
| 43 } | |
| OLD | NEW |