| 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 margin: 8px; |
| 8 max-width: 480px; |
| 9 min-width: 360px; |
| 10 } |
| 11 |
| 12 p { |
| 13 line-height: normal; |
| 14 } |
| 15 |
| 16 #extension-item { |
| 17 background-repeat: no-repeat; |
| 18 display: -webkit-box; |
| 19 min-height: 48px; |
| 20 } |
| 21 |
| 22 #extension-title-running { |
| 23 -webkit-padding-after: 5px; |
| 24 -webkit-padding-end: 5px; |
| 25 font-size: 1.2em; |
| 26 font-weight: 500; |
| 27 } |
| 28 |
| 29 #extension-last-updated, |
| 30 #extension-update-time { |
| 31 -webkit-padding-end: 7px; |
| 32 color: rgb(78, 83, 86); |
| 33 font-size: 1em; |
| 34 font-weight: 400; |
| 35 } |
| 36 |
| 37 #extension-description { |
| 38 -webkit-padding-end: 5px; |
| 39 color: rgb(121, 126, 130); |
| 40 font-size: 1em; |
| 41 margin: 5px 0; |
| 42 white-space: normal; |
| 43 } |
| 44 |
| 45 #extension-details { |
| 46 -webkit-box-flex: 1; |
| 47 -webkit-padding-start: 57px; |
| 48 } |
| OLD | NEW |