##// END OF EJS Templates
added package icon on changelog...
Jean-Philippe Lang -
r161:1e5362b1f77d
parent child
Show More
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
@@ -1,28 +1,28
1 <h2><%=l(:label_change_log)%></h2>
1 <h2><%=l(:label_change_log)%></h2>
2
2
3 <div>
3 <div>
4
4
5 <div class="rightbox" style="width:140px;">
5 <div class="rightbox" style="width:140px;">
6 <%= start_form_tag %>
6 <%= start_form_tag %>
7 <strong><%=l(:label_tracker_plural)%></strong><br />
7 <p><strong><%=l(:label_tracker_plural)%></strong></p>
8 <% @trackers.each do |tracker| %>
8 <% @trackers.each do |tracker| %>
9 <%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %>
9 <%= check_box_tag "tracker_ids[]", tracker.id, (@selected_tracker_ids.include? tracker.id.to_s) %>
10 <%= tracker.name %><br />
10 <%= tracker.name %><br />
11 <% end %>
11 <% end %>
12 <p><center><%= submit_tag l(:button_apply), :class => 'button-small' %></center></p>
12 <p><center><%= submit_tag l(:button_apply), :class => 'button-small' %></center></p>
13 <%= end_form_tag %>
13 <%= end_form_tag %>
14 </div>
14 </div>
15
15
16 <% ver_id = nil
16 <% ver_id = nil
17 @fixed_issues.each do |issue| %>
17 @fixed_issues.each do |issue| %>
18 <% unless ver_id == issue.fixed_version_id %>
18 <% unless ver_id == issue.fixed_version_id %>
19 <% if ver_id %></ul><% end %>
19 <% if ver_id %></ul><% end %>
20 <h3><%= issue.fixed_version.name %></h3>
20 <h3 class="icon22 icon22-package"><%= issue.fixed_version.name %></h3>
21 <p><%= format_date(issue.fixed_version.effective_date) %><br />
21 <p><%= format_date(issue.fixed_version.effective_date) %><br />
22 <%=h issue.fixed_version.description %></p>
22 <%=h issue.fixed_version.description %></p>
23 <ul>
23 <ul>
24 <% ver_id = issue.fixed_version_id
24 <% ver_id = issue.fixed_version_id
25 end %>
25 end %>
26 <li><%= link_to "#{issue.tracker.name} #{issue.id}", :controller => 'issues', :action => 'show', :id => issue %>: <%=h issue.subject %></li>
26 <li><%= link_to "#{issue.tracker.name} #{issue.id}", :controller => 'issues', :action => 'show', :id => issue %>: <%=h issue.subject %></li>
27 <% end %>
27 <% end %>
28 </div> No newline at end of file
28 </div>
@@ -1,604 +1,605
1 /* andreas08 - an open source xhtml/css website layout by Andreas Viklund - http://andreasviklund.com . Free to use in any way and for any purpose as long as the proper credits are given to the original designer. Version: 1.0, November 28, 2005 */
1 /* andreas08 - an open source xhtml/css website layout by Andreas Viklund - http://andreasviklund.com . Free to use in any way and for any purpose as long as the proper credits are given to the original designer. Version: 1.0, November 28, 2005 */
2 /* Edited by Jean-Philippe Lang *>
2 /* Edited by Jean-Philippe Lang *>
3 /**************** Body and tag styles ****************/
3 /**************** Body and tag styles ****************/
4
4
5
5
6 #header * {margin:0; padding:0;}
6 #header * {margin:0; padding:0;}
7 p, ul, ol, li {margin:0; padding:0;}
7 p, ul, ol, li {margin:0; padding:0;}
8
8
9
9
10 body{
10 body{
11 font:76% Verdana,Tahoma,Arial,sans-serif;
11 font:76% Verdana,Tahoma,Arial,sans-serif;
12 line-height:1.4em;
12 line-height:1.4em;
13 text-align:center;
13 text-align:center;
14 color:#303030;
14 color:#303030;
15 background:#e8eaec;
15 background:#e8eaec;
16 margin:0;
16 margin:0;
17 }
17 }
18
18
19
19
20 a{
20 a{
21 color:#467aa7;
21 color:#467aa7;
22 font-weight:bold;
22 font-weight:bold;
23 text-decoration:none;
23 text-decoration:none;
24 background-color:inherit;
24 background-color:inherit;
25 }
25 }
26
26
27 a:hover{color:#2a5a8a; text-decoration:none; background-color:inherit;}
27 a:hover{color:#2a5a8a; text-decoration:none; background-color:inherit;}
28 a img{border:none;}
28 a img{border:none;}
29
29
30 p{margin:0 0 1em 0;}
30 p{margin:0 0 1em 0;}
31 p form{margin-top:0; margin-bottom:20px;}
31 p form{margin-top:0; margin-bottom:20px;}
32
32
33 img.left,img.center,img.right{padding:4px; border:1px solid #a0a0a0;}
33 img.left,img.center,img.right{padding:4px; border:1px solid #a0a0a0;}
34 img.left{float:left; margin:0 12px 5px 0;}
34 img.left{float:left; margin:0 12px 5px 0;}
35 img.center{display:block; margin:0 auto 5px auto;}
35 img.center{display:block; margin:0 auto 5px auto;}
36 img.right{float:right; margin:0 0 5px 12px;}
36 img.right{float:right; margin:0 0 5px 12px;}
37
37
38 /**************** Header and navigation styles ****************/
38 /**************** Header and navigation styles ****************/
39
39
40 #container{
40 #container{
41 width:100%;
41 width:100%;
42 min-width: 800px;
42 min-width: 800px;
43 margin:0;
43 margin:0;
44 padding:0;
44 padding:0;
45 text-align:left;
45 text-align:left;
46 background:#ffffff;
46 background:#ffffff;
47 color:#303030;
47 color:#303030;
48 }
48 }
49
49
50 #header{
50 #header{
51 height:4.5em;
51 height:4.5em;
52 margin:0;
52 margin:0;
53 background:#467aa7;
53 background:#467aa7;
54 color:#ffffff;
54 color:#ffffff;
55 margin-bottom:1px;
55 margin-bottom:1px;
56 }
56 }
57
57
58 #header h1{
58 #header h1{
59 padding:10px 0 0 20px;
59 padding:10px 0 0 20px;
60 font-size:2em;
60 font-size:2em;
61 background-color:inherit;
61 background-color:inherit;
62 color:#fff;
62 color:#fff;
63 letter-spacing:-1px;
63 letter-spacing:-1px;
64 font-weight:bold;
64 font-weight:bold;
65 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
65 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
66 }
66 }
67
67
68 #header h2{
68 #header h2{
69 margin:3px 0 0 40px;
69 margin:3px 0 0 40px;
70 font-size:1.5em;
70 font-size:1.5em;
71 background-color:inherit;
71 background-color:inherit;
72 color:#f0f2f4;
72 color:#f0f2f4;
73 letter-spacing:-1px;
73 letter-spacing:-1px;
74 font-weight:normal;
74 font-weight:normal;
75 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
75 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
76 }
76 }
77
77
78 #navigation{
78 #navigation{
79 height:2.2em;
79 height:2.2em;
80 line-height:2.2em;
80 line-height:2.2em;
81 margin:0;
81 margin:0;
82 background:#578bb8;
82 background:#578bb8;
83 color:#ffffff;
83 color:#ffffff;
84 }
84 }
85
85
86 #navigation li{
86 #navigation li{
87 float:left;
87 float:left;
88 list-style-type:none;
88 list-style-type:none;
89 border-right:1px solid #ffffff;
89 border-right:1px solid #ffffff;
90 white-space:nowrap;
90 white-space:nowrap;
91 }
91 }
92
92
93 #navigation li.right {
93 #navigation li.right {
94 float:right;
94 float:right;
95 list-style-type:none;
95 list-style-type:none;
96 border-right:0;
96 border-right:0;
97 border-left:1px solid #ffffff;
97 border-left:1px solid #ffffff;
98 white-space:nowrap;
98 white-space:nowrap;
99 }
99 }
100
100
101 #navigation li a{
101 #navigation li a{
102 display:block;
102 display:block;
103 padding:0px 10px 0px 22px;
103 padding:0px 10px 0px 22px;
104 font-size:0.8em;
104 font-size:0.8em;
105 font-weight:normal;
105 font-weight:normal;
106 text-decoration:none;
106 text-decoration:none;
107 background-color:inherit;
107 background-color:inherit;
108 color: #ffffff;
108 color: #ffffff;
109 }
109 }
110
110
111 #navigation li.submenu {
111 #navigation li.submenu {
112 background:url(../images/arrow_down.png) 96% 80% no-repeat;
112 background:url(../images/arrow_down.png) 96% 80% no-repeat;
113 }
113 }
114
114
115 #navigation li.submenu a {
115 #navigation li.submenu a {
116 padding:0px 16px 0px 22px;
116 padding:0px 16px 0px 22px;
117 }
117 }
118
118
119 * html #navigation a {width:1%;}
119 * html #navigation a {width:1%;}
120
120
121 #navigation .selected,#navigation a:hover{
121 #navigation .selected,#navigation a:hover{
122 color:#ffffff;
122 color:#ffffff;
123 text-decoration:none;
123 text-decoration:none;
124 background-color: #80b0da;
124 background-color: #80b0da;
125 }
125 }
126
126
127 /**************** Icons *******************/
127 /**************** Icons *******************/
128 .icon {
128 .icon {
129 background-position: 0% 40%;
129 background-position: 0% 40%;
130 background-repeat: no-repeat;
130 background-repeat: no-repeat;
131 padding-left: 20px;
131 padding-left: 20px;
132 padding-top: 2px;
132 padding-top: 2px;
133 padding-bottom: 3px;
133 padding-bottom: 3px;
134 vertical-align: middle;
134 vertical-align: middle;
135 }
135 }
136
136
137 #navigation .icon {
137 #navigation .icon {
138 background-position: 4px 50%;
138 background-position: 4px 50%;
139 }
139 }
140
140
141 .icon22 {
141 .icon22 {
142 background-position: 0% 40%;
142 background-position: 0% 40%;
143 background-repeat: no-repeat;
143 background-repeat: no-repeat;
144 padding-left: 24px;
144 padding-left: 26px;
145 line-height: 22px;
145 line-height: 22px;
146 vertical-align: middle;
146 vertical-align: middle;
147 }
147 }
148
148
149 .icon-add { background-image: url(../images/add.png); }
149 .icon-add { background-image: url(../images/add.png); }
150 .icon-edit { background-image: url(../images/edit.png); }
150 .icon-edit { background-image: url(../images/edit.png); }
151 .icon-del { background-image: url(../images/delete.png); }
151 .icon-del { background-image: url(../images/delete.png); }
152 .icon-move { background-image: url(../images/move.png); }
152 .icon-move { background-image: url(../images/move.png); }
153 .icon-save { background-image: url(../images/save.png); }
153 .icon-save { background-image: url(../images/save.png); }
154 .icon-pdf { background-image: url(../images/pdf.png); }
154 .icon-pdf { background-image: url(../images/pdf.png); }
155 .icon-csv { background-image: url(../images/csv.png); }
155 .icon-csv { background-image: url(../images/csv.png); }
156 .icon-file { background-image: url(../images/file.png); }
156 .icon-file { background-image: url(../images/file.png); }
157 .icon-folder { background-image: url(../images/folder.png); }
157 .icon-folder { background-image: url(../images/folder.png); }
158 .icon-package { background-image: url(../images/package.png); }
158 .icon-package { background-image: url(../images/package.png); }
159 .icon-home { background-image: url(../images/home.png); }
159 .icon-home { background-image: url(../images/home.png); }
160 .icon-user { background-image: url(../images/user.png); }
160 .icon-user { background-image: url(../images/user.png); }
161 .icon-mypage { background-image: url(../images/user_page.png); }
161 .icon-mypage { background-image: url(../images/user_page.png); }
162 .icon-admin { background-image: url(../images/admin.png); }
162 .icon-admin { background-image: url(../images/admin.png); }
163 .icon-projects { background-image: url(../images/projects.png); }
163 .icon-projects { background-image: url(../images/projects.png); }
164 .icon-logout { background-image: url(../images/logout.png); }
164 .icon-logout { background-image: url(../images/logout.png); }
165 .icon-help { background-image: url(../images/help.png); }
165 .icon-help { background-image: url(../images/help.png); }
166 .icon-attachment { background-image: url(../images/attachment.png); }
166 .icon-attachment { background-image: url(../images/attachment.png); }
167
167
168 .icon22-projects { background-image: url(../images/22x22/projects.png); }
168 .icon22-projects { background-image: url(../images/22x22/projects.png); }
169 .icon22-users { background-image: url(../images/22x22/users.png); }
169 .icon22-users { background-image: url(../images/22x22/users.png); }
170 .icon22-tracker { background-image: url(../images/22x22/tracker.png); }
170 .icon22-tracker { background-image: url(../images/22x22/tracker.png); }
171 .icon22-role { background-image: url(../images/22x22/role.png); }
171 .icon22-role { background-image: url(../images/22x22/role.png); }
172 .icon22-workflow { background-image: url(../images/22x22/workflow.png); }
172 .icon22-workflow { background-image: url(../images/22x22/workflow.png); }
173 .icon22-options { background-image: url(../images/22x22/options.png); }
173 .icon22-options { background-image: url(../images/22x22/options.png); }
174 .icon22-notifications { background-image: url(../images/22x22/notifications.png); }
174 .icon22-notifications { background-image: url(../images/22x22/notifications.png); }
175 .icon22-authent { background-image: url(../images/22x22/authent.png); }
175 .icon22-authent { background-image: url(../images/22x22/authent.png); }
176 .icon22-info { background-image: url(../images/22x22/info.png); }
176 .icon22-info { background-image: url(../images/22x22/info.png); }
177 .icon22-comment { background-image: url(../images/22x22/comment.png); }
177 .icon22-comment { background-image: url(../images/22x22/comment.png); }
178 .icon22-package { background-image: url(../images/22x22/package.png); }
178
179
179 /**************** Content styles ****************/
180 /**************** Content styles ****************/
180
181
181 html>body #content {
182 html>body #content {
182 height: auto;
183 height: auto;
183 min-height: 500px;
184 min-height: 500px;
184 }
185 }
185
186
186 #content{
187 #content{
187 width: auto;
188 width: auto;
188 height:500px;
189 height:500px;
189 font-size:0.9em;
190 font-size:0.9em;
190 padding:20px 10px 10px 20px;
191 padding:20px 10px 10px 20px;
191 margin-left: 120px;
192 margin-left: 120px;
192 border-left: 1px dashed #c0c0c0;
193 border-left: 1px dashed #c0c0c0;
193
194
194 }
195 }
195
196
196 #content h2{
197 #content h2{
197 display:block;
198 display:block;
198 margin:0 0 16px 0;
199 margin:0 0 16px 0;
199 font-size:1.7em;
200 font-size:1.7em;
200 font-weight:normal;
201 font-weight:normal;
201 letter-spacing:-1px;
202 letter-spacing:-1px;
202 color:#606060;
203 color:#606060;
203 background-color:inherit;
204 background-color:inherit;
204 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
205 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
205 }
206 }
206
207
207 #content h2 a{font-weight:normal;}
208 #content h2 a{font-weight:normal;}
208 #content h3{margin:0 0 12px 0; font-size:1.4em;color:#707070;font-family: Trebuchet MS,Georgia,"Times New Roman",serif;}
209 #content h3{margin:0 0 12px 0; font-size:1.4em;color:#707070;font-family: Trebuchet MS,Georgia,"Times New Roman",serif;}
209 #content h4{font-size: 1em; margin-bottom: 12px; margin-top: 20px; font-weight: normal; border-bottom: dotted 1px #c0c0c0;}
210 #content h4{font-size: 1em; margin-bottom: 12px; margin-top: 20px; font-weight: normal; border-bottom: dotted 1px #c0c0c0;}
210 #content a:hover,#subcontent a:hover{text-decoration:underline;}
211 #content a:hover,#subcontent a:hover{text-decoration:underline;}
211 #content ul,#content ol{margin:0 5px 16px 35px;}
212 #content ul,#content ol{margin:0 5px 16px 35px;}
212 #content dl{margin:0 5px 10px 25px;}
213 #content dl{margin:0 5px 10px 25px;}
213 #content dt{font-weight:bold; margin-bottom:5px;}
214 #content dt{font-weight:bold; margin-bottom:5px;}
214 #content dd{margin:0 0 10px 15px;}
215 #content dd{margin:0 0 10px 15px;}
215
216
216
217
217 /***********************************************/
218 /***********************************************/
218
219
219 form {
220 form {
220 display: inline;
221 display: inline;
221 }
222 }
222
223
223 blockquote {
224 blockquote {
224 padding-left: 6px;
225 padding-left: 6px;
225 border-left: 2px solid #ccc;
226 border-left: 2px solid #ccc;
226 }
227 }
227
228
228 input, select {
229 input, select {
229 vertical-align: middle;
230 vertical-align: middle;
230 margin-bottom: 4px;
231 margin-bottom: 4px;
231 }
232 }
232
233
233 input.button-small
234 input.button-small
234 {
235 {
235 font-size: 0.8em;
236 font-size: 0.8em;
236 }
237 }
237
238
238 .select-small
239 .select-small
239 {
240 {
240 font-size: 0.8em;
241 font-size: 0.8em;
241 }
242 }
242
243
243 label {
244 label {
244 font-weight: bold;
245 font-weight: bold;
245 font-size: 1em;
246 font-size: 1em;
246 color: #505050;
247 color: #505050;
247 }
248 }
248
249
249 fieldset {
250 fieldset {
250 border:1px solid #c0c0c0;
251 border:1px solid #c0c0c0;
251 padding: 6px;
252 padding: 6px;
252 }
253 }
253
254
254 legend {
255 legend {
255 color: #505050;
256 color: #505050;
256
257
257 }
258 }
258
259
259 .required {
260 .required {
260 color: #bb0000;
261 color: #bb0000;
261 }
262 }
262
263
263 .odd {
264 .odd {
264 background-color:#f6f7f8;
265 background-color:#f6f7f8;
265 }
266 }
266 .even {
267 .even {
267 background-color: #fff;
268 background-color: #fff;
268 }
269 }
269
270
270 hr { border:none; border-bottom: dotted 1px #c0c0c0; }
271 hr { border:none; border-bottom: dotted 1px #c0c0c0; }
271
272
272 div.square {
273 div.square {
273 border: 1px solid #999;
274 border: 1px solid #999;
274 float: left;
275 float: left;
275 margin: .4em .5em 0 0;
276 margin: .4em .5em 0 0;
276 overflow: hidden;
277 overflow: hidden;
277 width: .6em; height: .6em;
278 width: .6em; height: .6em;
278 }
279 }
279
280
280 table p {
281 table p {
281 margin:0;
282 margin:0;
282 padding:0;
283 padding:0;
283 }
284 }
284
285
285 ul.documents {
286 ul.documents {
286 list-style-type: none;
287 list-style-type: none;
287 padding: 0;
288 padding: 0;
288 margin: 0;
289 margin: 0;
289 }
290 }
290
291
291 ul.documents li {
292 ul.documents li {
292 background-image: url(../images/32x32/file.png);
293 background-image: url(../images/32x32/file.png);
293 background-repeat: no-repeat;
294 background-repeat: no-repeat;
294 background-position: 0 1px;
295 background-position: 0 1px;
295 padding-left: 36px;
296 padding-left: 36px;
296 margin-bottom: 10px;
297 margin-bottom: 10px;
297 margin-left: -37px;
298 margin-left: -37px;
298 }
299 }
299
300
300 /********** Table used to display lists of things ***********/
301 /********** Table used to display lists of things ***********/
301
302
302 table.list {
303 table.list {
303 width:100%;
304 width:100%;
304 border-collapse: collapse;
305 border-collapse: collapse;
305 border: 1px dotted #d0d0d0;
306 border: 1px dotted #d0d0d0;
306 margin-bottom: 6px;
307 margin-bottom: 6px;
307 }
308 }
308
309
309 table.with-cells td {
310 table.with-cells td {
310 border: 1px solid #d7d7d7;
311 border: 1px solid #d7d7d7;
311 }
312 }
312
313
313 table.list thead th {
314 table.list thead th {
314 text-align: center;
315 text-align: center;
315 background: #eee;
316 background: #eee;
316 border: 1px solid #d7d7d7;
317 border: 1px solid #d7d7d7;
317 color: #777;
318 color: #777;
318 }
319 }
319
320
320 table.list tbody th {
321 table.list tbody th {
321 font-weight: normal;
322 font-weight: normal;
322 background: #eed;
323 background: #eed;
323 border: 1px solid #d7d7d7;
324 border: 1px solid #d7d7d7;
324 }
325 }
325
326
326 /********** Validation error messages *************/
327 /********** Validation error messages *************/
327 #errorExplanation {
328 #errorExplanation {
328 width: 400px;
329 width: 400px;
329 border: 0;
330 border: 0;
330 padding: 7px;
331 padding: 7px;
331 padding-bottom: 3px;
332 padding-bottom: 3px;
332 margin-bottom: 0px;
333 margin-bottom: 0px;
333 }
334 }
334
335
335 #errorExplanation h2 {
336 #errorExplanation h2 {
336 text-align: left;
337 text-align: left;
337 font-weight: bold;
338 font-weight: bold;
338 padding: 5px 5px 10px 26px;
339 padding: 5px 5px 10px 26px;
339 font-size: 1em;
340 font-size: 1em;
340 margin: -7px;
341 margin: -7px;
341 background: url(../images/alert.png) no-repeat 6px 6px;
342 background: url(../images/alert.png) no-repeat 6px 6px;
342 }
343 }
343
344
344 #errorExplanation p {
345 #errorExplanation p {
345 color: #333;
346 color: #333;
346 margin-bottom: 0;
347 margin-bottom: 0;
347 padding: 5px;
348 padding: 5px;
348 }
349 }
349
350
350 #errorExplanation ul li {
351 #errorExplanation ul li {
351 font-size: 1em;
352 font-size: 1em;
352 list-style: none;
353 list-style: none;
353 margin-left: -16px;
354 margin-left: -16px;
354 }
355 }
355
356
356 /*========== Drop down menu ==============*/
357 /*========== Drop down menu ==============*/
357 div.menu {
358 div.menu {
358 background-color: #FFFFFF;
359 background-color: #FFFFFF;
359 border-style: solid;
360 border-style: solid;
360 border-width: 1px;
361 border-width: 1px;
361 border-color: #7F9DB9;
362 border-color: #7F9DB9;
362 position: absolute;
363 position: absolute;
363 top: 0px;
364 top: 0px;
364 left: 0px;
365 left: 0px;
365 padding: 0;
366 padding: 0;
366 visibility: hidden;
367 visibility: hidden;
367 z-index: 101;
368 z-index: 101;
368 }
369 }
369
370
370 div.menu a.menuItem {
371 div.menu a.menuItem {
371 font-size: 10px;
372 font-size: 10px;
372 font-weight: normal;
373 font-weight: normal;
373 line-height: 2em;
374 line-height: 2em;
374 color: #000000;
375 color: #000000;
375 background-color: #FFFFFF;
376 background-color: #FFFFFF;
376 cursor: default;
377 cursor: default;
377 display: block;
378 display: block;
378 padding: 0 1em;
379 padding: 0 1em;
379 margin: 0;
380 margin: 0;
380 border: 0;
381 border: 0;
381 text-decoration: none;
382 text-decoration: none;
382 white-space: nowrap;
383 white-space: nowrap;
383 }
384 }
384
385
385 div.menu a.menuItem:hover, div.menu a.menuItemHighlight {
386 div.menu a.menuItem:hover, div.menu a.menuItemHighlight {
386 background-color: #80b0da;
387 background-color: #80b0da;
387 color: #ffffff;
388 color: #ffffff;
388 }
389 }
389
390
390 div.menu a.menuItem span.menuItemText {}
391 div.menu a.menuItem span.menuItemText {}
391
392
392 div.menu a.menuItem span.menuItemArrow {
393 div.menu a.menuItem span.menuItemArrow {
393 margin-right: -.75em;
394 margin-right: -.75em;
394 }
395 }
395
396
396 /**************** Sidebar styles ****************/
397 /**************** Sidebar styles ****************/
397
398
398 #subcontent{
399 #subcontent{
399 position: absolute;
400 position: absolute;
400 left: 0px;
401 left: 0px;
401 width:110px;
402 width:110px;
402 padding:20px 20px 10px 5px;
403 padding:20px 20px 10px 5px;
403 }
404 }
404
405
405 #subcontent h2{
406 #subcontent h2{
406 display:block;
407 display:block;
407 margin:0 0 5px 0;
408 margin:0 0 5px 0;
408 font-size:1.0em;
409 font-size:1.0em;
409 font-weight:bold;
410 font-weight:bold;
410 text-align:left;
411 text-align:left;
411 color:#606060;
412 color:#606060;
412 background-color:inherit;
413 background-color:inherit;
413 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
414 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
414 }
415 }
415
416
416 #subcontent p{margin:0 0 16px 0; font-size:0.9em;}
417 #subcontent p{margin:0 0 16px 0; font-size:0.9em;}
417
418
418 /**************** Menublock styles ****************/
419 /**************** Menublock styles ****************/
419
420
420 .menublock{margin:0 0 20px 8px; font-size:0.8em;}
421 .menublock{margin:0 0 20px 8px; font-size:0.8em;}
421 .menublock li{list-style:none; display:block; padding:1px; margin-bottom:0px;}
422 .menublock li{list-style:none; display:block; padding:1px; margin-bottom:0px;}
422 .menublock li a{font-weight:bold; text-decoration:none;}
423 .menublock li a{font-weight:bold; text-decoration:none;}
423 .menublock li a:hover{text-decoration:none;}
424 .menublock li a:hover{text-decoration:none;}
424 .menublock li ul{margin:0; font-size:1em; font-weight:normal;}
425 .menublock li ul{margin:0; font-size:1em; font-weight:normal;}
425 .menublock li ul li{margin-bottom:0;}
426 .menublock li ul li{margin-bottom:0;}
426 .menublock li ul a{font-weight:normal;}
427 .menublock li ul a{font-weight:normal;}
427
428
428 /**************** Footer styles ****************/
429 /**************** Footer styles ****************/
429
430
430 #footer{
431 #footer{
431 clear:both;
432 clear:both;
432 padding:5px 0;
433 padding:5px 0;
433 margin:0;
434 margin:0;
434 font-size:0.9em;
435 font-size:0.9em;
435 color:#f0f0f0;
436 color:#f0f0f0;
436 background:#467aa7;
437 background:#467aa7;
437 }
438 }
438
439
439 #footer p{padding:0; margin:0; text-align:center;}
440 #footer p{padding:0; margin:0; text-align:center;}
440 #footer a{color:#f0f0f0; background-color:inherit; font-weight:bold;}
441 #footer a{color:#f0f0f0; background-color:inherit; font-weight:bold;}
441 #footer a:hover{color:#ffffff; background-color:inherit; text-decoration: underline;}
442 #footer a:hover{color:#ffffff; background-color:inherit; text-decoration: underline;}
442
443
443 /**************** Misc classes and styles ****************/
444 /**************** Misc classes and styles ****************/
444
445
445 .splitcontentleft{float:left; width:49%;}
446 .splitcontentleft{float:left; width:49%;}
446 .splitcontentright{float:right; width:49%;}
447 .splitcontentright{float:right; width:49%;}
447 .clear{clear:both;}
448 .clear{clear:both;}
448 .small{font-size:0.8em;line-height:1.4em;padding:0 0 0 0;}
449 .small{font-size:0.8em;line-height:1.4em;padding:0 0 0 0;}
449 .hide{display:none;}
450 .hide{display:none;}
450 .textcenter{text-align:center;}
451 .textcenter{text-align:center;}
451 .textright{text-align:right;}
452 .textright{text-align:right;}
452 .important{color:#f02025; background-color:inherit; font-weight:bold;}
453 .important{color:#f02025; background-color:inherit; font-weight:bold;}
453
454
454 .box{
455 .box{
455 margin:0 0 20px 0;
456 margin:0 0 20px 0;
456 padding:10px;
457 padding:10px;
457 border:1px solid #c0c0c0;
458 border:1px solid #c0c0c0;
458 background-color:#fafbfc;
459 background-color:#fafbfc;
459 color:#505050;
460 color:#505050;
460 line-height:1.5em;
461 line-height:1.5em;
461 }
462 }
462
463
463 a.close-icon {
464 a.close-icon {
464 display:block;
465 display:block;
465 margin-top:3px;
466 margin-top:3px;
466 overflow:hidden;
467 overflow:hidden;
467 width:12px;
468 width:12px;
468 height:12px;
469 height:12px;
469 background-repeat: no-repeat;
470 background-repeat: no-repeat;
470 cursor:pointer;
471 cursor:pointer;
471 background-image:url('../images/close.png');
472 background-image:url('../images/close.png');
472 }
473 }
473
474
474 a.close-icon:hover {
475 a.close-icon:hover {
475 background-image:url('../images/close_hl.png');
476 background-image:url('../images/close_hl.png');
476 }
477 }
477
478
478 .rightbox{
479 .rightbox{
479 background: #fafbfc;
480 background: #fafbfc;
480 border: 1px solid #c0c0c0;
481 border: 1px solid #c0c0c0;
481 float: right;
482 float: right;
482 padding: 8px;
483 padding: 8px;
483 position: relative;
484 position: relative;
484 margin: 0 5px 5px;
485 margin: 0 5px 5px;
485 }
486 }
486
487
487 .layout-active {
488 .layout-active {
488 background: #ECF3E1;
489 background: #ECF3E1;
489 }
490 }
490
491
491 .block-receiver {
492 .block-receiver {
492 border:1px dashed #c0c0c0;
493 border:1px dashed #c0c0c0;
493 margin-bottom: 20px;
494 margin-bottom: 20px;
494 padding: 15px 0 15px 0;
495 padding: 15px 0 15px 0;
495 }
496 }
496
497
497 .mypage-box {
498 .mypage-box {
498 margin:0 0 20px 0;
499 margin:0 0 20px 0;
499 color:#505050;
500 color:#505050;
500 line-height:1.5em;
501 line-height:1.5em;
501 }
502 }
502
503
503 .handle {
504 .handle {
504 cursor: move;
505 cursor: move;
505 }
506 }
506
507
507 .login {
508 .login {
508 width: 50%;
509 width: 50%;
509 text-align: left;
510 text-align: left;
510 }
511 }
511
512
512 img.calendar-trigger {
513 img.calendar-trigger {
513 cursor: pointer;
514 cursor: pointer;
514 vertical-align: middle;
515 vertical-align: middle;
515 margin-left: 4px;
516 margin-left: 4px;
516 }
517 }
517
518
518 #history p {
519 #history p {
519 margin-left: 34px;
520 margin-left: 34px;
520 }
521 }
521
522
522 /***** Contextual links div *****/
523 /***** Contextual links div *****/
523 .contextual {
524 .contextual {
524 float: right;
525 float: right;
525 font-size: 0.8em;
526 font-size: 0.8em;
526 line-height: 16px;
527 line-height: 16px;
527 padding: 2px;
528 padding: 2px;
528 }
529 }
529
530
530 .contextual select, .contextual input {
531 .contextual select, .contextual input {
531 font-size: 1em;
532 font-size: 1em;
532 }
533 }
533
534
534 /***** Gantt chart *****/
535 /***** Gantt chart *****/
535 .gantt_hdr {
536 .gantt_hdr {
536 position:absolute;
537 position:absolute;
537 top:0;
538 top:0;
538 height:16px;
539 height:16px;
539 border-top: 1px solid #c0c0c0;
540 border-top: 1px solid #c0c0c0;
540 border-bottom: 1px solid #c0c0c0;
541 border-bottom: 1px solid #c0c0c0;
541 border-right: 1px solid #c0c0c0;
542 border-right: 1px solid #c0c0c0;
542 text-align: center;
543 text-align: center;
543 overflow: hidden;
544 overflow: hidden;
544 }
545 }
545
546
546 .task {
547 .task {
547 position: absolute;
548 position: absolute;
548 height:8px;
549 height:8px;
549 font-size:0.8em;
550 font-size:0.8em;
550 color:#888;
551 color:#888;
551 padding:0;
552 padding:0;
552 margin:0;
553 margin:0;
553 line-height:0.8em;
554 line-height:0.8em;
554 }
555 }
555
556
556 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
557 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
557 .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; }
558 .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; }
558 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
559 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
559
560
560 /***** Tooltips ******/
561 /***** Tooltips ******/
561 .tooltip{position:relative;z-index:24;}
562 .tooltip{position:relative;z-index:24;}
562 .tooltip:hover{z-index:25;color:#000;}
563 .tooltip:hover{z-index:25;color:#000;}
563 .tooltip span.tip{display: none}
564 .tooltip span.tip{display: none}
564
565
565 div.tooltip:hover span.tip{
566 div.tooltip:hover span.tip{
566 display:block;
567 display:block;
567 position:absolute;
568 position:absolute;
568 top:12px; left:24px; width:270px;
569 top:12px; left:24px; width:270px;
569 border:1px solid #555;
570 border:1px solid #555;
570 background-color:#fff;
571 background-color:#fff;
571 padding: 4px;
572 padding: 4px;
572 font-size: 0.8em;
573 font-size: 0.8em;
573 color:#505050;
574 color:#505050;
574 }
575 }
575
576
576 /***** CSS FORM ******/
577 /***** CSS FORM ******/
577 .tabular p{
578 .tabular p{
578 margin: 0;
579 margin: 0;
579 padding: 5px 0 8px 0;
580 padding: 5px 0 8px 0;
580 padding-left: 180px; /*width of left column containing the label elements*/
581 padding-left: 180px; /*width of left column containing the label elements*/
581 height: 1%;
582 height: 1%;
582 }
583 }
583
584
584 .tabular label{
585 .tabular label{
585 font-weight: bold;
586 font-weight: bold;
586 float: left;
587 float: left;
587 margin-left: -180px; /*width of left column*/
588 margin-left: -180px; /*width of left column*/
588 width: 175px; /*width of labels. Should be smaller than left column to create some right
589 width: 175px; /*width of labels. Should be smaller than left column to create some right
589 margin*/
590 margin*/
590 }
591 }
591
592
592 .error {
593 .error {
593 color: #cc0000;
594 color: #cc0000;
594 }
595 }
595
596
596
597
597 /*.threepxfix class below:
598 /*.threepxfix class below:
598 Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents.
599 Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents.
599 to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html
600 to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html
600 */
601 */
601
602
602 * html .threepxfix{
603 * html .threepxfix{
603 margin-left: 3px;
604 margin-left: 3px;
604 } No newline at end of file
605 }
General Comments 0
You need to be logged in to leave comments. Login now