kepping up with Classic, turning skinVersion to 1.2
[themes.git] / EarlyBlue / messenger / addressbook / addressbook.css
CommitLineData
128000f4 1/* ***** BEGIN LICENSE BLOCK *****
2 * Version: NPL 1.1/GPL 2.0/LGPL 2.1
f6e0a33f 3 *
128000f4 4 * The contents of this file are subject to the Netscape Public License
5 * Version 1.1 (the "License"); you may not use this file except in
6 * compliance with the License. You may obtain a copy of the License at
7 * http://www.mozilla.org/NPL/
f6e0a33f 8 *
128000f4 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.
f6e0a33f 13 *
128000f4 14 * The Original Code is mozilla.org code.
15 *
16 * The Initial Developer of the Original Code is
17 * Netscape Communications Corporation.
18 * Portions created by the Initial Developer are Copyright (C) 1998
19 * the Initial Developer. All Rights Reserved.
f6e0a33f 20 *
21 * Contributor(s):
22 * Joe Hewitt (hewitt@netscape.com)
128000f4 23 * Robert Kaiser <KaiRo@KaiRo.at>
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 NPL, 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 NPL, the GPL or the LGPL.
36 *
37 * ***** END LICENSE BLOCK ***** */
f6e0a33f 38
39/* ===== addressbook.css ================================================
40 == Styles for the main Address Book window.
41 ======================================================================= */
42
43@import url("chrome://messenger/skin/");
44@import url("chrome://communicator/skin/sidebar/sidebar.css");
45
46@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
47
f6e0a33f 48/* ::::: primary toolbar buttons ::::: */
49
50#button-newcard {
74d14f90 51 list-style-image:url("chrome://messenger/skin/addressbook/icons/newcard.gif");
f6e0a33f 52}
53
74d14f90 54#button-newcard[disabled="true"] {
55 list-style-image: url("chrome://messenger/skin/addressbook/icons/newcard-disabled.gif") !important;
56}
f6e0a33f 57
f6e0a33f 58#button-newlist {
74d14f90 59 list-style-image: url("chrome://messenger/skin/addressbook/icons/newlist.gif");
f6e0a33f 60}
61
74d14f90 62#button-newlist[disabled="true"] {
63 list-style-image: url("chrome://messenger/skin/addressbook/icons/newlist-disabled.gif") !important;
64}
f6e0a33f 65
f6e0a33f 66#button-editcard {
74d14f90 67 list-style-image:url("chrome://messenger/skin/addressbook/icons/person.gif");
f6e0a33f 68}
69
74d14f90 70#button-editcard[disabled="true"] {
71 list-style-image: url("chrome://messenger/skin/addressbook/icons/person-disabled.gif") !important;
72}
f6e0a33f 73
f6e0a33f 74#button-newmessage {
74d14f90 75 list-style-image:url("chrome://messenger/skin/addressbook/icons/newmsg.gif");
f6e0a33f 76}
77
74d14f90 78#button-newmessage[disabled="true"] {
79 list-style-image: url("chrome://messenger/skin/addressbook/icons/newmsg-disabled.gif") !important;
80}
f6e0a33f 81
8a7d0690 82#button-newim {
83 list-style-image:url("chrome://messenger/skin/addressbook/icons/newmsg.gif");
84}
85
86#button-newim[disabled="true"] {
87 list-style-image: url("chrome://messenger/skin/addressbook/icons/newmsg-disabled.gif") !important;
88}
89
f6e0a33f 90#button-delete {
74d14f90 91 list-style-image:url("chrome://global/skin/icons/icons/trash.gif");
f6e0a33f 92}
93
74d14f90 94#button-delete[disabled="true"] {
95 list-style-image: url("chrome://global/skin/icons/trash-disabled.gif") !important;
96}
f6e0a33f 97
f6e0a33f 98/* ::::: sidebar header ::::: */
99
100sidebarheader {
101 border: 1px outset #CCD0DD;
102}
103
104#sidebar-title-box {
105 border: none;
106}
107
108/* CardView styles - used in the Card View Pane */
109
110#CardViewOuterBox {
111/* border-left: 1px solid ThreeDShadow;
112 border-top: 1px solid ThreeDShadow;
113 border-right: 1px solid ThreeDHighlight; */
114}
115
116#CardViewBox {
74d14f90 117 -moz-user-focus: ignore;
118 overflow: auto;
119 min-width: 150px;
120 background-color: #CCD0DD;
f6e0a33f 121}
122
123#CardViewInnerBox {
74d14f90 124 margin-top: 2px;
125 margin-bottom: 2px;
126 padding-left: 8px;
127 padding-right: 8px;
f6e0a33f 128}
129
130#CardTitle {
74d14f90 131 font-size: 150%;
132 font-weight: bold;
133 border-bottom: 2px solid black;
134 min-width: 120px;
135 margin: 0px;
f6e0a33f 136}
137
138.cardViewGroup {
74d14f90 139 margin-top: 8px;
140 padding-bottom: 5px;
141 min-width: 50px;
f6e0a33f 142}
143
144.CardViewHeading {
74d14f90 145 padding: 1px;
146 padding-left: 5px;
147 margin: 0px 0px 1px 0px;
148 background-color: #9999CC;
149 color: #FFFFFF;
150 font-weight: bold;
151 min-width: 30px;
f6e0a33f 152}
153
8a7d0690 154#cvBuddyIcon {
155 padding-left: 20px;
156 padding-top: 2px;
157}
158
cd130c22 159.CardViewText,
160.CardViewLink {
74d14f90 161 padding-left: 20px;
162 padding-right: 2px;
163 min-width: 30px;
164 margin: 0px;
f6e0a33f 165}
166
cd130c22 167.CardViewLink {
74d14f90 168 color: blue;
169 text-decoration: underline;
170 cursor: pointer;
cd130c22 171}
172
c8120ee9 173#cvHomeMapIt, #cvWorkMapIt {
174 margin-bottom: 0px;
53fb801a 175}
c8120ee9 176
f6e0a33f 177html|a {
74d14f90 178 padding-left: 0px;
179 padding-right: 2px;
180 border: none !important;
f6e0a33f 181}
182
183html|p {
184 border: none !important;
185}
186
187/* ::::: border adjustments ::::: */
188
189#sidebar-box {
190/* border-top: none;
191 border-right: 1px solid ThreeDHighlight;
192 border-bottom: none;
193 border-left: 1px solid ThreeDShadow; */
194}
195
e1597424 196#dirTree, #abResultsTree {
f6e0a33f 197 border: none;
f840e302 198 margin: 0px;
f6e0a33f 199}
200
201#resultsTree {
202/* border-left: 1px solid ThreeDShadow; */
203}
d36c7ec4 204
205/* ::::: Search Bar ::::: */
206
207#searchBox {
208/*
209 border-top: 1px solid ThreeDHighlight;
210 border-bottom: 1px solid ThreeDShadow;
211*/
212}