correcting more messsages arrow color in msgHeaderView
[themes.git] / LCARStrek / messenger / skin / msgHdrViewOverlay.css
CommitLineData
fbbedfbc 1/*
c9990331 2 * The contents of this file are subject to the Netscape Public
3 * License Version 1.1 (the "License"); you may not use this file
4 * except in compliance with the License. You may obtain a copy of
5 * the License at http://www.mozilla.org/NPL/
6 *
7 * Software distributed under the License is distributed on an "AS
8 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
9 * implied. See the License for the specific language governing
10 * rights and limitations under the License.
11 *
12 * The Original Code is Mozilla Communicator client code, released
13 * March 31, 1998.
14 *
15 * The Initial Developer of the Original Code is Netscape
16 * Communications Corporation. Portions created by Netscape are
17 * Copyright (C) 1998-2001 Netscape Communications Corporation. All
18 * Rights Reserved.
19 *
20 * Contributor(s):
21 * Scott MacGregor (mscott@netscape.com)
22 * Joe Hewitt (hewitt@netscape.com)
23 * Robert Kaiser (KaiRo@KaiRo.at)
fbbedfbc 24*/
c9990331 25
fbbedfbc 26@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to HTML */
27@namespace html url("http://www.w3.org/1999/xhtml"); /* namespace for XUL elements */
28
4651f2d5 29#msgHeaderView
30 {
31 background-color: #E7ADE7;
fbbedfbc 32 background-image: none;
4651f2d5 33 -moz-border-radius: 8px 8px 8px 8px;
fbbedfbc 34 padding-right: 12px;
4651f2d5 35 margin-bottom: 3px;
36 }
fbbedfbc 37
38mail-emailaddress
39 {
40 -moz-binding : url(chrome://messenger/content/mailWidgets.xml#mail-emailaddress);
c9990331 41 display : -moz-xul-inline-box;
fbbedfbc 42 }
43
c9990331 44.buttonTopSpacer
45 {
46 height : 0.3em;
47 }
48
49.buttonSpacer
50 {
51 width : 0.5em;
52 }
fbbedfbc 53
c9990331 54.headerValueBox
55 {
56 width : 7.0em;
57 text-align : right;
fbbedfbc 58}
59
c9990331 60.headerBox
61 {
62 overflow : hidden;
63 min-width : 50px;
64 }
fbbedfbc 65
c9990331 66
67#addToAddressBookButton
fbbedfbc 68 {
c9990331 69 list-style-image:url("chrome://messenger/skin/addtoab.gif");
70 min-height: 20px;
71 margin: 0px;
fbbedfbc 72 }
73
c9990331 74#attachmentButton
fbbedfbc 75 {
c9990331 76 list-style-image:url("chrome://messenger/skin/attach.gif");
77 min-height: 20px;
78 margin: 0px;
fbbedfbc 79 }
80
c9990331 81.emailDisplayImage
fbbedfbc 82 {
c9990331 83 text-align : right;
84 }
85
86.emailDisplayButton
87 {
4651f2d5 88 color : black;
fbbedfbc 89 cursor : pointer;
c9990331 90 min-height : 16px;
fbbedfbc 91 -moz-border-radius: : 3px;
4651f2d5 92 background-color : transparent;
fbbedfbc 93 }
94
95.emailDisplayButton:hover
96 {
fbbedfbc 97 color : black;
98 background-color : #FFCF00;
99 }
100
101.showMoreAddressesButton
102 {
c1dabd0c 103 list-style-image : url("chrome://global/skin/twisty-closed-selected.gif");
fbbedfbc 104 }
105
106.showFewerAddressesButton
107 {
c1dabd0c 108 list-style-image : url("chrome://global/skin/twisty-open-selected.gif");
fbbedfbc 109 }
110
111html.headerValue
112 {
4651f2d5 113 color : black;
fbbedfbc 114 white-space : normal;
115 min-width : 50px;
116 margin : 0px;
4651f2d5 117 padding-top : 1px;
fbbedfbc 118 }
119
120html.subjectvalue
121 {
122 font-weight : bold;
4651f2d5 123 color : black;
fbbedfbc 124 }
125
126text.headerdisplayname
127 {
128 font-weight : bold;
4651f2d5 129 color : black;
fbbedfbc 130 margin-right : 0.5em;
131 margin-left : 0.5em;
132 min-height : 18px
133 }
134
135text.headerValue
136 {
4651f2d5 137 color : black;
fbbedfbc 138 white-space : normal;
139 min-width : 50px;
c9990331 140/* border-bottom : 1px solid #9999CC; */
fbbedfbc 141 }
c9990331 142
143.expandHeaderViewButton {
4651f2d5 144 list-style-image: url("chrome://global/skin/twisty-open-selected.gif");
c9990331 145 margin-left: .5em;
146 margin-right: .5em;
147}
148
149.collapsedHeaderViewButton
150{
4651f2d5 151 list-style-image: url("chrome://global/skin/twisty-closed-selected.gif");
c9990331 152 margin-left: .5em;
153 }
154
155
156/* ::::: collapsed view styles ::::: */
157.collapsedToggleHdrBox
158{
159 vertical-align: middle;
160}
161
162#collapsedAttachmentBox {
163 text-align: center;
164}
165
166#collapseddateValue
167{
168 margin-left: .7em;
169}
170
171#collapsedfromBox
172{
173 width: 18em;
174}
175
176#collapseddateBox
177 {
178 width: 12em;
179}
180
181text.collapsedHeaderDisplayName
182{
4651f2d5 183 color: black;
c9990331 184 font-weight: bold;
185 margin-left: .7em;
186 min-height: 16px;
187}
188
4651f2d5 189text.collapsedHeaderValue
190{
191 color: black;
192}
193
c9990331 194.collapsedAttachmentButton
195{
196 list-style-image: url("chrome://messenger/skin/message-mail-attach.gif");
197 margin-right: .5em;
198 margin-left: 1em;
199}
200
201[hide] {
202 visibility: hidden;
203}
fbbedfbc 204
4651f2d5 205
c1dabd0c 206