| 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
| 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
| 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
| 4 | |
| 5 | @import url("chrome://global/skin/in-content/common.css"); |
| 6 | |
| 7 | #addon-page { |
| 8 | font-size: 1.1em; |
| 9 | } |
| 10 | |
| 11 | #addon-scrollbox { |
| 12 | overflow: auto; |
| 13 | -moz-box-orient: vertical; |
| 14 | -moz-box-flex: 1; |
| 15 | } |
| 16 | |
| 17 | #spacer-start { |
| 18 | -moz-box-flex: 1; |
| 19 | } |
| 20 | |
| 21 | #spacer-end { |
| 22 | -moz-box-flex: 3; |
| 23 | } |
| 24 | |
| 25 | #addon-container { |
| 26 | overflow: visible; /* bug 761489 */ |
| 27 | max-width: 800px; |
| 28 | margin: 20px; |
| 29 | padding: 30px 90px; |
| 30 | } |
| 31 | |
| 32 | #addon-info { |
| 33 | -moz-box-align: start; |
| 34 | margin: 25px 10px; |
| 35 | } |
| 36 | |
| 37 | #icon { |
| 38 | margin-top: 8px; |
| 39 | -moz-margin-end: 10px; |
| 40 | max-width: 64px; |
| 41 | max-height: 64px; |
| 42 | list-style-image: url("chrome://mozapps/skin/extensions/extensionGeneric.png"); |
| 43 | } |
| 44 | |
| 45 | .addon-info[type="theme"] #icon { |
| 46 | list-style-image: url("chrome://mozapps/skin/extensions/themeGeneric.png"); |
| 47 | } |
| 48 | |
| 49 | .addon-info[type="locale"] #icon { |
| 50 | list-style-image: url("chrome://mozapps/skin/extensions/localeGeneric.png"); |
| 51 | } |
| 52 | |
| 53 | .addon-info[type="plugin"] #icon { |
| 54 | list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric.png"); |
| 55 | } |
| 56 | |
| 57 | .addon-info[type="dictionary"] #icon { |
| 58 | list-style-image: url("chrome://mozapps/skin/extensions/dictionaryGeneric.png"); |
| 59 | } |
| 60 | |
| 61 | #name { |
| 62 | font-size: 130%; |
| 63 | } |
| 64 | |
| 65 | #author { |
| 66 | color: #8050B0; |
| 67 | } |
| 68 | |
| 69 | #location { |
| 70 | color: #8050B0; |
| 71 | } |
| 72 | |
| 73 | #warning { |
| 74 | margin-bottom: 25px; |
| 75 | -moz-box-align: start; |
| 76 | } |
| 77 | |
| 78 | #warning-icon { |
| 79 | list-style-image: url("chrome://global/skin/icons/alert-exclam.gif"); |
| 80 | width: 16px; |
| 81 | height: 15px; |
| 82 | margin-top: 5px; |
| 83 | -moz-margin-end: 5px; |
| 84 | } |
| 85 | |
| 86 | #allow { |
| 87 | -moz-margin-start: 84px; |
| 88 | margin-bottom: 20px; |
| 89 | } |
| 90 | |
| 91 | #continuePanel, |
| 92 | #restartPanel { |
| 93 | margin-top: 25px; |
| 94 | -moz-box-pack: end; |
| 95 | -moz-box-align: center; |
| 96 | } |
| 97 | |
| 98 | #continuePanel { |
| 99 | -moz-box-pack: end; |
| 100 | } |
| 101 | |
| 102 | #restartMessage { |
| 103 | text-align: right; |
| 104 | } |
| 105 | |
| 106 | #restartSpacer { |
| 107 | -moz-box-flex: 1; |
| 108 | } |
| 109 | |
| 110 | #later { |
| 111 | color: #8050B0; |
| 112 | } |