making tooltips smaller
[themes.git] / EarlyBlue / messenger / skin / threadPane.css
CommitLineData
c6a72ce5 1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
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-1999 Netscape Communications Corporation. All
18 * Rights Reserved.
19 */
20
082dab25 21
22outliner:focus > outliner-bodybox
23{
24 border: 1px solid black;
25}
26
27outliner > outliner-bodybox
28{
29 border: 1px solid transparent;
30}
31
32outlinercol.threadColumnHeader {
33 list-style-image: url("chrome://messenger/skin/unthreadcol.gif");
34}
35
36outlinercol.threadColumnHeader[sortDirection="ascending"] {
37 list-style-image: url("chrome://messenger/skin/threadcol.gif");
38}
39
40outlinercol.threadColumnHeader[sortDirection="descending"] {
41 list-style-image: url("chrome://messenger/skin/threadcol.gif");
42}
43
44outlinercol.readColumnHeader {
45 list-style-image: url("chrome://messenger/skin/unreadmail.gif");
46}
47
48outlinercol.flagColumnHeader {
49 list-style-image: url("chrome://messenger/skin/flaggedmail.gif");
50}
51
52outlinerbody:-moz-outliner-cell-text(unread)
53{
54 font-weight: bold;
55}
56
57outlinerbody:-moz-outliner-cell-text(offline)
58{
59 font-style: italic;
60}
61
62outlinerbody:-moz-outliner-cell-text(priority-highest)
63{
64 color:red;
65}
66
67outlinerbody:-moz-outliner-cell-text(priority-high)
68{
69 color: rgb(128, 0, 0);
70}
71
72outlinerbody:-moz-outliner-cell-text(priority-lowest)
73{
74 color: rgb(170, 170, 170);
75}
76
77outlinerbody:-moz-outliner-cell-text(priority-low)
78{
79 color: rgb(85, 85, 85);
80}
81
82
83
84/*
85
86
87
c6a72ce5 88.tree-thread-row.unread-true {
89 font-weight: bold;
90}
91
92.prioritycol-highest
93{
94 color:red;
95}
96
97.prioritycol-high
98{
99 color: rgb(128, 0, 0);
100}
101
102.prioritycol-lowest
103{
104 color: rgb(170, 170, 170);
105}
106
107.prioritycol-low
108{
109 color: rgb(85, 85, 85);
110}
111
112.tree-cell-threadpane-icon {
113 list-style-image: url("chrome://messenger/skin/message-mail.gif");
114 min-height: 14px;
115}
116
117.tree-cell-threadpane-icon.status-new {
118 list-style-image: url("chrome://messenger/skin/message-mail-new.gif");
119}
120
121.tree-cell-threadpane-icon.message-type-news {
122 list-style-image: url("chrome://messenger/skin/message-news.gif");
123}
124
125.tree-cell-threadpane-icon.message-type-news.status-new {
126 list-style-image: url("chrome://messenger/skin/message-news-new.gif");
127}
128
129.tree-cell-threadpane-icon.message-type-mail.has-attachment-true {
130 list-style-image: url("chrome://messenger/skin/message-mail-attach.gif");
131}
132
133.tree-cell-threadpane-icon.is-imap-deleted-true {
134 list-style-image: url("chrome://messenger/skin/message-mail-imapdelete.gif");
135}
136
137.unreadcol-false {
138 list-style-image: url("chrome://messenger/skin/readmail.gif");
139 min-height: 14px;
140}
141
142.unreadcol-true {
143 list-style-image: url("chrome://messenger/skin/unreadmail.gif");
144}
145
146.flagcol-unflagged {
147 list-style-image: url("chrome://messenger/skin/readmail.gif");
148 min-height: 14px;
149}
150
151.flagcol-flagged {
152 list-style-image: url("chrome://messenger/skin/flaggedmail.gif");
153}
154
155treeitem > treerow > .threadcol-thread {
156 list-style-image: url("chrome://messenger/skin/thread-closed.gif");
157}
158
159treeitem[open="true"] > treerow > .threadcol-thread {
160 list-style-image: url("chrome://messenger/skin/thread-open.gif");
161}
162
163treeitem > treerow > .threadcol-threadWithUnread {
164 list-style-image: url("chrome://messenger/skin/thread-new-closed.gif");
165}
166
167treeitem[open="true"] > treerow > .threadcol-threadWithUnread {
168 list-style-image: url("chrome://messenger/skin/thread-new-open.gif");
169}
170
171.threadColumnHeader[currentView="threaded"]
172 {
173 list-style-image: url("chrome://messenger/skin/threadcol.gif");
174 text-align: left;
175 }
176
177.threadColumnHeader[currentView="unthreaded"]
178 {
179 list-style-image: url("chrome://messenger/skin/unthreadcol.gif");
180 text-align: center;
181 }
182
183.readColumnHeader
184 {
185 list-style-image: url("chrome://messenger/skin/unreadmail.gif");
186 text-align: center;
187 }
188
189.flagColumnHeader
190 {
191 list-style-image: url("chrome://messenger/skin/flaggedmail.gif");
192 text-align: center;
193 }
194
195treeitem[empty="true"] > treerow > .tree-cell-threadpane-icon > .tree-cell-twisty
196 {
197 visibility : hidden;
198 }
199
200#threadTree
201 {
202 border-top : none;
203 }
204
205
082dab25 206*/