| 1 | /* ***** BEGIN LICENSE BLOCK ***** |
| 2 | * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
| 3 | * |
| 4 | * The contents of this file are subject to the Mozilla Public License Version |
| 5 | * 1.1 (the "License"); you may not use this file except in compliance with |
| 6 | * the License. You may obtain a copy of the License at |
| 7 | * http://www.mozilla.org/MPL/ |
| 8 | * |
| 9 | * Software distributed under the License is distributed on an "AS IS" basis, |
| 10 | * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License |
| 11 | * for the specific language governing rights and limitations under the |
| 12 | * License. |
| 13 | * |
| 14 | * The Original Code is mozilla.org code. |
| 15 | * |
| 16 | * The Initial Developer of the Original Code is Daniel Brooks. |
| 17 | * Portions created by the Initial Developer are Copyright (C) 2001-2007 |
| 18 | * the Initial Developer. All Rights Reserved. |
| 19 | * |
| 20 | * Contributor(s): |
| 21 | * Kevin Gerich <webmail@kmgerich.com> |
| 22 | * Daniel Brooks <db48x@yahoo.com> |
| 23 | * Florian QUEZE <f.qu@queze.net> |
| 24 | * |
| 25 | * Alternatively, the contents of this file may be used under the terms of |
| 26 | * either the GNU General Public License Version 2 or later (the "GPL"), or |
| 27 | * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), |
| 28 | * in which case the provisions of the GPL or the LGPL are applicable instead |
| 29 | * of those above. If you wish to allow use of your version of this file only |
| 30 | * under the terms of either the GPL or the LGPL, and not to allow others to |
| 31 | * use your version of this file under the terms of the MPL, indicate your |
| 32 | * decision by deleting the provisions above and replace them with the notice |
| 33 | * and other provisions required by the GPL or the LGPL. If you do not delete |
| 34 | * the provisions above, a recipient may use your version of this file under |
| 35 | * the terms of any one of the MPL, the GPL or the LGPL. |
| 36 | * |
| 37 | * ***** END LICENSE BLOCK ***** */ |
| 38 | |
| 39 | @import "chrome://global/skin/"; |
| 40 | |
| 41 | /* Misc */ |
| 42 | tree { |
| 43 | margin: .5em; |
| 44 | } |
| 45 | |
| 46 | .gridSeparator { |
| 47 | width: .5em; |
| 48 | } |
| 49 | |
| 50 | textbox { |
| 51 | background: transparent !important; |
| 52 | border: none; |
| 53 | padding: 0px; |
| 54 | -moz-user-focus: none; |
| 55 | } |
| 56 | |
| 57 | textbox.header { |
| 58 | -moz-margin-start: 0; |
| 59 | } |
| 60 | |
| 61 | .iframe { |
| 62 | margin: .5em; |
| 63 | background: white; |
| 64 | overflow: auto; |
| 65 | } |
| 66 | |
| 67 | .fixedsize { |
| 68 | height: 8.5em; |
| 69 | } |
| 70 | |
| 71 | textbox[disabled] { |
| 72 | font-style: italic; |
| 73 | } |
| 74 | |
| 75 | /* General Tab */ |
| 76 | groupbox tree { |
| 77 | margin: 0; |
| 78 | border: none; |
| 79 | } |
| 80 | |
| 81 | groupbox.treebox .groupbox-body { |
| 82 | padding-top: 0; |
| 83 | } |
| 84 | |
| 85 | #general-security-identity { |
| 86 | white-space: pre-wrap; |
| 87 | line-height: 2em; |
| 88 | } |
| 89 | |
| 90 | /* Media Tab */ |
| 91 | #imagetree { |
| 92 | min-height: 10em; |
| 93 | } |
| 94 | |
| 95 | #thepreviewimage { |
| 96 | margin: 1em; |
| 97 | } |
| 98 | |
| 99 | treechildren::-moz-tree-cell-text(broken) { |
| 100 | font-style: italic; |
| 101 | color: #808080; |
| 102 | } |
| 103 | |
| 104 | /* Feeds Tab */ |
| 105 | #feedListbox richlistitem { |
| 106 | padding-top: 6px; |
| 107 | padding-bottom: 6px; |
| 108 | -moz-padding-start: 7px; |
| 109 | -moz-padding-end: 7px; |
| 110 | min-height: 25px; |
| 111 | border-bottom: 1px dotted #9999CC; |
| 112 | } |
| 113 | |
| 114 | .feedTitle { |
| 115 | font-weight: bold; |
| 116 | } |
| 117 | |
| 118 | /* Permissions Tab */ |
| 119 | #permList { |
| 120 | margin-top: .5em; |
| 121 | overflow: auto; |
| 122 | } |
| 123 | |
| 124 | #permList > vbox { |
| 125 | padding-top: 6px; |
| 126 | padding-bottom: 6px; |
| 127 | -moz-padding-start: 7px; |
| 128 | -moz-padding-end: 7px; |
| 129 | min-height: 25px; |
| 130 | border-bottom: 1px dotted #9999CC; |
| 131 | } |
| 132 | |
| 133 | #permList > vbox > label { |
| 134 | font-weight: bold; |
| 135 | } |
| 136 | |
| 137 | /* Security Tab */ |
| 138 | #securityPanel > .header { |
| 139 | font-size: 120%; |
| 140 | } |
| 141 | |
| 142 | #securityPanel > .fieldLabel { |
| 143 | margin: 2px 10px 3px 10px; |
| 144 | } |
| 145 | |
| 146 | #securityPanel > .fieldValue { |
| 147 | font-weight: bold; |
| 148 | margin: 2px 10px 0px 10px; |
| 149 | } |