thomascube
2009-05-26 9c0280b6070b52cf16396e70c180d351d993585b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/* CSS hacks for IE versions <= 7 */
 
input, textarea
{
  border-style: expression(this.type=='checkbox' || this.type=='radio' || this.id=='quicksearchbox' ? 'none' : 'solid');
  border-width: expression(this.type=='checkbox' || this.type=='radio' ? '0' : '1px');
  border-color: expression(this.type=='checkbox' || this.type=='radio' ? '' : '#666666');
  background-color: expression(this.type=='checkbox' || this.type=='radio' ? 'transparent' : '#ffffff');
}
 
#markmessagemenu,
#searchmenu,
#messagemenu
{
  filter:alpha(opacity=90);
}
 
#tabsbar
{
  width: expression((parseInt(document.documentElement.clientWidth)-240)+'px');
}
 
#userprefs-box
{
  height: expression((parseInt(document.documentElement.clientHeight)-155)+'px');
  width: expression((parseInt(document.documentElement.clientWidth)-40)+'px');
}
 
.userprefs-block
{
  width: expression(Math.min(520, parseInt(document.documentElement.clientWidth))+'px');
}
 
#folder-manager
{
  height: expression((parseInt(document.documentElement.clientHeight)-235)+'px');
}
 
#identities-list
{
  height: expression((parseInt(document.documentElement.clientHeight)-155)+'px');
}
 
#messagetoolbar
{
  width: expression((parseInt(document.documentElement.clientWidth)-400)+'px');
}
 
#mainscreen 
{
  width: expression((parseInt(document.documentElement.clientWidth)-40)+'px');
  height: expression((parseInt(document.documentElement.clientHeight)-125)+'px');
}
 
#directorylist
{
  height: expression((parseInt(document.documentElement.clientHeight)-125)+'px');  
}
 
#addresslist
{
  height: expression(parseInt(this.parentNode.offsetHeight)+'px');
}
 
#mailrightcontainer
{
  width: expression((parseInt(this.parentNode.offsetWidth)-170)+'px');
  height: expression(parseInt(this.parentNode.offsetHeight)+'px');
}
 
#messagepartcontainer
{
  width: expression((parseInt(document.documentElement.clientWidth)-40)+'px');
  height: expression((parseInt(document.documentElement.clientHeight)-100)+'px');
}
 
#mailcontframe
{
  height: expression(parseInt(this.parentNode.offsetHeight)+'px');
}
 
#mailpreviewframe
{
  height: expression((parseInt(this.parentNode.offsetHeight)-205)+'px');
}
 
#partheader
{
  width: expression((parseInt(document.documentElement.clientWidth)-240)+'px');
}
 
#mailboxlist-container
{
  height: expression(parseInt(this.parentNode.offsetHeight)+'px');
}
 
#mailfooter
{
  width: expression((parseInt(document.documentElement.clientWidth)-40)+'px');
}
 
#messagelist,
#subscription-table
{
  width: auto;
}
 
#messageframe
{
  width: expression((parseInt(this.parentNode.offsetWidth)-170)+'px');
  height: expression((parseInt(this.parentNode.offsetHeight))+'px');
}
 
#messagecanvas 
{
  width: expression((parseInt(this.parentNode.offsetWidth)-20)+'px');
}
 
#printmessageframe
{
  width: expression((parseInt(document.documentElement.clientWidth)-220)+'px');
  height: expression((parseInt(document.documentElement.clientHeight)-125)+'px');
}
 
#attachment-list
{
  height: expression(Math.min(16, parseInt(document.documentElement.clientHeight))+'px');
}
 
body.iframe 
{
  width: expression((parseInt(document.documentElement.clientWidth))+'px');
}
 
#compose-container
{
  width: expression((parseInt(document.documentElement.clientWidth)-210)+'px');
  height: expression((parseInt(document.documentElement.clientHeight)-120)+'px');
}
 
#compose-body,
#compose-headers td textarea,
#compose-headers td input
{
  width: 99%;
}
 
#addressscreen
{
  width: expression((parseInt(document.documentElement.clientWidth)-220)+'px');
  height: expression((parseInt(document.documentElement.clientHeight)-125)+'px');
}
 
#importbox
{
  height: expression((parseInt(document.documentElement.clientHeight)-135)+'px');
}
 
#contacts-table
{
  width: expression(document.getElementById('addresslist').clientWidth);
}
 
#contacts-box
{
  height: expression(parseInt(this.parentNode.offsetHeight)+'px');
  width: expression((parseInt(this.parentNode.offsetWidth)-555)+'px');
}
 
#identity-details
{
  width: expression((parseInt(document.documentElement.clientWidth)-470)+'px');
  height: expression((parseInt(document.documentElement.clientHeight)-155)+'px');
}