| 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 | |
| 6 body { | |
| 7 font-family: "Arial", "Helvetica", sans-serif; | |
| 8 color: #222; | |
| 9 font-size: 13px; | |
| 10 margin: 0; | |
| 11 direction: __MSG_@@bidi_dir__; | |
| 12 overflow: auto; | |
| 13 } | |
| 14 | |
| 15 a { | |
| 16 text-decoration: none; | |
| 17 color: #15c; | |
| 18 cursor: pointer; | |
| 19 } | |
| 20 | |
| 21 a:active { | |
| 22 color: #d14836; | |
| 23 } | |
| 24 | |
| 25 body.show-only-selected .product:not(.selected) { | |
| 26 display: none; | |
| 27 } | |
| 28 | |
| 29 .page-title { | |
| 30 font-size: 164%; | |
| 31 font-weight: bold; | |
| 32 } | |
| 33 | |
| 34 .entries { | |
| 35 margin: 8px; | |
| 36 } | |
| 37 | |
| 38 .product { | |
| 39 background-color: #c3d9ff; | |
| 40 border-radius: 5px; | |
| 41 margin-top: 16px; | |
| 42 overflow: auto; | |
| 43 padding: 2px; | |
| 44 } | |
| 45 | |
| 46 .product .title { | |
| 47 float: left; | |
| 48 font-size: 110%; | |
| 49 font-weight: bold; | |
| 50 margin: 3px; | |
| 51 } | |
| 52 | |
| 53 .right-align { | |
| 54 float: right; | |
| 55 margin: 3px 6px; | |
| 56 } | |
| 57 | |
| 58 .licence { | |
| 59 background-color: #e8eef7; | |
| 60 border-radius: 3px; | |
| 61 clear: both; | |
| 62 padding: 16px; | |
| 63 } | |
| 64 | |
| 65 .product:not(.selected) .licence { | |
| 66 display: none; | |
| 67 } | |
| 68 | |
| 69 .licence h3 { | |
| 70 margin-top: 0; | |
| 71 } | |
| 72 | |
| 73 .licence pre { | |
| 74 white-space: pre-wrap; | |
| 75 } | |
| OLD | NEW |