##// END OF EJS Templates
Grey scale icon for issue not watched....
Jean-Philippe Lang -
r464:4499c7a030a0
parent child
Show More
@@ -1,120 +1,120
1 1 <div class="contextual">
2 2 <%= l(:label_export_to) %><%= link_to 'PDF', {:action => 'export_pdf', :id => @issue}, :class => 'icon icon-pdf' %>
3 3 </div>
4 4
5 5 <h2><%= @issue.tracker.name %> #<%= @issue.id %> - <%=h @issue.subject %></h2>
6 6
7 7 <div class="box">
8 8 <table width="100%">
9 9 <tr>
10 10 <td style="width:15%"><b><%=l(:field_status)%> :</b></td><td style="width:35%"><%= @issue.status.name %></td>
11 11 <td style="width:15%"><b><%=l(:field_priority)%> :</b></td><td style="width:35%"><%= @issue.priority.name %></td>
12 12 </tr>
13 13 <tr>
14 14 <td><b><%=l(:field_assigned_to)%> :</b></td><td><%= @issue.assigned_to ? link_to_user(@issue.assigned_to) : "-" %></td>
15 15 <td><b><%=l(:field_category)%> :</b></td><td><%=h @issue.category ? @issue.category.name : "-" %></td>
16 16 </tr>
17 17 <tr>
18 18 <td><b><%=l(:field_author)%> :</b></td><td><%= link_to_user @issue.author %></td>
19 19 <td><b><%=l(:field_start_date)%> :</b></td><td><%= format_date(@issue.start_date) %></td>
20 20 </tr>
21 21 <tr>
22 22 <td><b><%=l(:field_created_on)%> :</b></td><td><%= format_date(@issue.created_on) %></td>
23 23 <td><b><%=l(:field_due_date)%> :</b></td><td><%= format_date(@issue.due_date) %></td>
24 24 </tr>
25 25 <tr>
26 26 <td><b><%=l(:field_updated_on)%> :</b></td><td><%= format_date(@issue.updated_on) %></td>
27 27 <td><b><%=l(:field_done_ratio)%> :</b></td><td><%= @issue.done_ratio %> %</td>
28 28 </tr>
29 29 <tr>
30 30 <td><b><%=l(:field_fixed_version)%> :</b></td><td><%= @issue.fixed_version ? @issue.fixed_version.name : "-" %></td>
31 31 <td><b><%=l(:label_spent_time)%> :</b></td>
32 32 <td><%= @issue.spent_hours > 0 ? (link_to lwr(:label_f_hour, @issue.spent_hours), {:controller => 'timelog', :action => 'details', :issue_id => @issue}, :class => 'icon icon-time') : "-" %></td>
33 33 </tr>
34 34 <tr>
35 35 <% n = 0
36 36 for custom_value in @custom_values %>
37 37 <td><b><%= custom_value.custom_field.name %> :</b></td><td><%= h(show_value(custom_value)) %></td>
38 38 <% n = n + 1
39 39 if (n > 1)
40 40 n = 0 %>
41 41 </tr><tr>
42 42 <%end
43 43 end %>
44 44 </tr>
45 45 </table>
46 46 <hr />
47 47 <br />
48 48
49 49 <b><%=l(:field_description)%> :</b><br /><br />
50 50 <%= textilizable @issue.description %>
51 51 <br />
52 52
53 53 <div class="contextual">
54 54 <%= link_to_if_authorized l(:button_edit), {:controller => 'issues', :action => 'edit', :id => @issue}, :class => 'icon icon-edit' %>
55 55 <%= link_to_if_authorized l(:button_log_time), {:controller => 'timelog', :action => 'edit', :issue_id => @issue}, :class => 'icon icon-time' %>
56 56 <% if @logged_in_user %>
57 57 <% if @issue.watched_by?(@logged_in_user) %>
58 58 <%= link_to l(:button_unwatch), {:controller => 'watchers', :action => 'remove', :issue_id => @issue}, :class => 'icon icon-fav' %>
59 59 <% else %>
60 <%= link_to l(:button_watch), {:controller => 'watchers', :action => 'add', :issue_id => @issue}, :class => 'icon icon-fav' %>
60 <%= link_to l(:button_watch), {:controller => 'watchers', :action => 'add', :issue_id => @issue}, :class => 'icon icon-fav-off' %>
61 61 <% end %>
62 62 <% end %>
63 63 <%= link_to_if_authorized l(:button_move), {:controller => 'projects', :action => 'move_issues', :id => @project, "issue_ids[]" => @issue.id }, :class => 'icon icon-move' %>
64 64 <%= link_to_if_authorized l(:button_delete), {:controller => 'issues', :action => 'destroy', :id => @issue}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>
65 65 </div>
66 66
67 67 <% if authorize_for('issues', 'change_status') and @status_options and !@status_options.empty? %>
68 68 <% form_tag({:controller => 'issues', :action => 'change_status', :id => @issue}) do %>
69 69 <%=l(:label_change_status)%> :
70 70 <select name="new_status_id">
71 71 <%= options_from_collection_for_select @status_options, "id", "name" %>
72 72 </select>
73 73 <%= submit_tag l(:button_change) %>
74 74 <% end %>
75 75 <% end %>
76 76 &nbsp;
77 77 </div>
78 78
79 79 <div id="history" class="box">
80 80 <h3><%=l(:label_history)%>
81 81 <% if @journals_count > @journals.length %>(<%= l(:label_last_changes, @journals.length) %>)<% end %></h3>
82 82 <%= render :partial => 'history', :locals => { :journals => @journals } %>
83 83 <% if @journals_count > @journals.length %>
84 84 <p><center><small><%= link_to l(:label_change_view_all), :action => 'history', :id => @issue %></small></center></p>
85 85 <% end %>
86 86 </div>
87 87
88 88 <div class="box">
89 89 <h3><%=l(:label_attachment_plural)%></h3>
90 90 <table width="100%">
91 91 <% for attachment in @issue.attachments %>
92 92 <tr>
93 93 <td><%= link_to attachment.filename, { :action => 'download', :id => @issue, :attachment_id => attachment }, :class => 'icon icon-attachment' %> (<%= number_to_human_size(attachment.filesize) %>)</td>
94 94 <td><%= format_date(attachment.created_on) %></td>
95 95 <td><%= attachment.author.display_name %></td>
96 96 <td><div class="contextual"><%= link_to_if_authorized l(:button_delete), {:controller => 'issues', :action => 'destroy_attachment', :id => @issue, :attachment_id => attachment }, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %></div></td>
97 97 </tr>
98 98 <% end %>
99 99 </table>
100 100 <br />
101 101 <% if authorize_for('issues', 'add_attachment') %>
102 102 <% form_tag({ :controller => 'issues', :action => 'add_attachment', :id => @issue }, :multipart => true, :class => "tabular") do %>
103 103 <p id="attachments_p"><label><%=l(:label_attachment_new)%>
104 104 <%= image_to_function "add.png", "addFileField();return false" %></label>
105 105 <%= file_field_tag 'attachments[]', :size => 30 %> <em>(<%= l(:label_max_size) %>: <%= number_to_human_size(Setting.attachment_max_size.to_i.kilobytes) %>)</em></p>
106 106 <%= submit_tag l(:button_add) %>
107 107 <% end %>
108 108 <% end %>
109 109 </div>
110 110
111 111 <% if authorize_for('issues', 'add_note') %>
112 112 <div class="box">
113 113 <h3><%= l(:label_add_note) %></h3>
114 114 <% form_tag({:controller => 'issues', :action => 'add_note', :id => @issue}, :class => "tabular" ) do %>
115 115 <p><label for="notes"><%=l(:field_notes)%></label>
116 116 <%= text_area_tag 'notes', '', :cols => 60, :rows => 10, :class => 'wiki-edit' %></p>
117 117 <%= submit_tag l(:button_add) %>
118 118 <% end %>
119 119 </div>
120 120 <% end %>
@@ -1,637 +1,638
1 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 2 /* Edited by Jean-Philippe Lang *>
3 3 /**************** Body and tag styles ****************/
4 4
5 5 #header * {margin:0; padding:0;}
6 6 p, ul, ol, li {margin:0; padding:0;}
7 7
8 8 body{
9 9 font:76% Verdana,Tahoma,Arial,sans-serif;
10 10 line-height:1.4em;
11 11 text-align:center;
12 12 color:#303030;
13 13 background:#e8eaec;
14 14 margin:0;
15 15 }
16 16
17 17 a{color:#467aa7;font-weight:bold;text-decoration:none;background-color:inherit;}
18 18 a:hover{color:#2a5a8a; text-decoration:none; background-color:inherit;}
19 19 a img{border:none;}
20 20
21 21 p{margin:0 0 1em 0;}
22 22 p form{margin-top:0; margin-bottom:20px;}
23 23
24 24 img.left,img.center,img.right{padding:4px; border:1px solid #a0a0a0;}
25 25 img.left{float:left; margin:0 12px 5px 0;}
26 26 img.center{display:block; margin:0 auto 5px auto;}
27 27 img.right{float:right; margin:0 0 5px 12px;}
28 28
29 29 /**************** Header and navigation styles ****************/
30 30
31 31 #container{
32 32 width:100%;
33 33 min-width: 800px;
34 34 margin:0;
35 35 padding:0;
36 36 text-align:left;
37 37 background:#ffffff;
38 38 color:#303030;
39 39 }
40 40
41 41 #header{
42 42 height:4.5em;
43 43 margin:0;
44 44 background:#467aa7;
45 45 color:#ffffff;
46 46 margin-bottom:1px;
47 47 }
48 48
49 49 #header h1{
50 50 padding:10px 0 0 20px;
51 51 font-size:2em;
52 52 background-color:inherit;
53 53 color:#fff;
54 54 letter-spacing:-1px;
55 55 font-weight:bold;
56 56 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
57 57 }
58 58
59 59 #header h2{
60 60 margin:3px 0 0 40px;
61 61 font-size:1.5em;
62 62 background-color:inherit;
63 63 color:#f0f2f4;
64 64 letter-spacing:-1px;
65 65 font-weight:normal;
66 66 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
67 67 }
68 68
69 69 #navigation{
70 70 height:2.2em;
71 71 line-height:2.2em;
72 72 margin:0;
73 73 background:#578bb8;
74 74 color:#ffffff;
75 75 }
76 76
77 77 #navigation li{
78 78 float:left;
79 79 list-style-type:none;
80 80 border-right:1px solid #ffffff;
81 81 white-space:nowrap;
82 82 }
83 83
84 84 #navigation li.right {
85 85 float:right;
86 86 list-style-type:none;
87 87 border-right:0;
88 88 border-left:1px solid #ffffff;
89 89 white-space:nowrap;
90 90 }
91 91
92 92 #navigation li a{
93 93 display:block;
94 94 padding:0px 10px 0px 22px;
95 95 font-size:0.8em;
96 96 font-weight:normal;
97 97 text-decoration:none;
98 98 background-color:inherit;
99 99 color: #ffffff;
100 100 }
101 101
102 102 #navigation li.submenu {background:url(../images/arrow_down.png) 96% 80% no-repeat;}
103 103 #navigation li.submenu a {padding:0px 16px 0px 22px;}
104 104 * html #navigation a {width:1%;}
105 105
106 106 #navigation .selected,#navigation a:hover{
107 107 color:#ffffff;
108 108 text-decoration:none;
109 109 background-color: #80b0da;
110 110 }
111 111
112 112 /**************** Icons *******************/
113 113 .icon {
114 114 background-position: 0% 40%;
115 115 background-repeat: no-repeat;
116 116 padding-left: 20px;
117 117 padding-top: 2px;
118 118 padding-bottom: 3px;
119 119 vertical-align: middle;
120 120 }
121 121
122 122 #navigation .icon {
123 123 background-position: 4px 50%;
124 124 }
125 125
126 126 .icon22 {
127 127 background-position: 0% 40%;
128 128 background-repeat: no-repeat;
129 129 padding-left: 26px;
130 130 line-height: 22px;
131 131 vertical-align: middle;
132 132 }
133 133
134 134 .icon-add { background-image: url(../images/add.png); }
135 135 .icon-edit { background-image: url(../images/edit.png); }
136 136 .icon-del { background-image: url(../images/delete.png); }
137 137 .icon-move { background-image: url(../images/move.png); }
138 138 .icon-save { background-image: url(../images/save.png); }
139 139 .icon-cancel { background-image: url(../images/cancel.png); }
140 140 .icon-pdf { background-image: url(../images/pdf.png); }
141 141 .icon-csv { background-image: url(../images/csv.png); }
142 142 .icon-html { background-image: url(../images/html.png); }
143 143 .icon-txt { background-image: url(../images/txt.png); }
144 144 .icon-file { background-image: url(../images/file.png); }
145 145 .icon-folder { background-image: url(../images/folder.png); }
146 146 .icon-package { background-image: url(../images/package.png); }
147 147 .icon-home { background-image: url(../images/home.png); }
148 148 .icon-user { background-image: url(../images/user.png); }
149 149 .icon-mypage { background-image: url(../images/user_page.png); }
150 150 .icon-admin { background-image: url(../images/admin.png); }
151 151 .icon-projects { background-image: url(../images/projects.png); }
152 152 .icon-logout { background-image: url(../images/logout.png); }
153 153 .icon-help { background-image: url(../images/help.png); }
154 154 .icon-attachment { background-image: url(../images/attachment.png); }
155 155 .icon-index { background-image: url(../images/index.png); }
156 156 .icon-history { background-image: url(../images/history.png); }
157 157 .icon-feed { background-image: url(../images/feed.png); }
158 158 .icon-time { background-image: url(../images/time.png); }
159 159 .icon-stats { background-image: url(../images/stats.png); }
160 160 .icon-warning { background-image: url(../images/warning.png); }
161 161 .icon-fav { background-image: url(../images/fav.png); }
162 .icon-fav-off { background-image: url(../images/fav_off.png); }
162 163
163 164 .icon22-projects { background-image: url(../images/22x22/projects.png); }
164 165 .icon22-users { background-image: url(../images/22x22/users.png); }
165 166 .icon22-tracker { background-image: url(../images/22x22/tracker.png); }
166 167 .icon22-role { background-image: url(../images/22x22/role.png); }
167 168 .icon22-workflow { background-image: url(../images/22x22/workflow.png); }
168 169 .icon22-options { background-image: url(../images/22x22/options.png); }
169 170 .icon22-notifications { background-image: url(../images/22x22/notifications.png); }
170 171 .icon22-authent { background-image: url(../images/22x22/authent.png); }
171 172 .icon22-info { background-image: url(../images/22x22/info.png); }
172 173 .icon22-comment { background-image: url(../images/22x22/comment.png); }
173 174 .icon22-package { background-image: url(../images/22x22/package.png); }
174 175 .icon22-settings { background-image: url(../images/22x22/settings.png); }
175 176
176 177 /**************** Content styles ****************/
177 178
178 179 html>body #content {
179 180 height: auto;
180 181 min-height: 500px;
181 182 }
182 183
183 184 #content{
184 185 width: auto;
185 186 height:500px;
186 187 font-size:0.9em;
187 188 padding:20px 10px 10px 20px;
188 189 margin-left: 120px;
189 190 border-left: 1px dashed #c0c0c0;
190 191
191 192 }
192 193
193 194 #content h2, #content div.wiki h1 {
194 195 display:block;
195 196 margin:0 0 16px 0;
196 197 font-size:1.7em;
197 198 font-weight:normal;
198 199 letter-spacing:-1px;
199 200 color:#606060;
200 201 background-color:inherit;
201 202 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
202 203 }
203 204
204 205 #content h2 a{font-weight:normal;}
205 206 #content h3{margin:0 0 12px 0; font-size:1.4em;color:#707070;font-family: Trebuchet MS,Georgia,"Times New Roman",serif;}
206 207 #content h4{font-size: 1em; margin-bottom: 12px; margin-top: 20px; font-weight: normal; border-bottom: dotted 1px #c0c0c0;}
207 208 #content a:hover,#subcontent a:hover{text-decoration:underline;}
208 209 #content ul,#content ol{margin:0 5px 16px 35px;}
209 210 #content dl{margin:0 5px 10px 25px;}
210 211 #content dt{font-weight:bold; margin-bottom:5px;}
211 212 #content dd{margin:0 0 10px 15px;}
212 213
213 214 #content .tabs{height: 2.6em;}
214 215 #content .tabs ul{margin:0;}
215 216 #content .tabs ul li{
216 217 float:left;
217 218 list-style-type:none;
218 219 white-space:nowrap;
219 220 margin-right:8px;
220 221 background:#fff;
221 222 }
222 223 #content .tabs ul li a{
223 224 display:block;
224 225 font-size: 0.9em;
225 226 text-decoration:none;
226 227 line-height:1em;
227 228 padding:4px;
228 229 border: 1px solid #c0c0c0;
229 230 }
230 231
231 232 #content .tabs ul li a.selected, #content .tabs ul li a:hover{
232 233 background-color: #80b0da;
233 234 border: 1px solid #80b0da;
234 235 color: #fff;
235 236 text-decoration:none;
236 237 }
237 238
238 239 /***********************************************/
239 240
240 241 form {display: inline;}
241 242 blockquote {padding-left: 6px; border-left: 2px solid #ccc;}
242 243 input, select {vertical-align: middle; margin-bottom: 4px;}
243 244
244 245 input.button-small {font-size: 0.8em;}
245 246 textarea.wiki-edit { width: 99.5%; }
246 247 .select-small {font-size: 0.8em;}
247 248 label {font-weight: bold; font-size: 1em; color: #505050;}
248 249 fieldset {border:1px solid #c0c0c0; padding: 6px;}
249 250 legend {color: #505050;}
250 251 .required {color: #bb0000;}
251 252 .odd {background-color:#f6f7f8;}
252 253 .even {background-color: #fff;}
253 254 hr { border:0; border-top: dotted 1px #fff; border-bottom: dotted 1px #c0c0c0; }
254 255 table p {margin:0; padding:0;}
255 256
256 257 .highlight { background-color: #FCFD8D;}
257 258
258 259 div.square {
259 260 border: 1px solid #999;
260 261 float: left;
261 262 margin: .4em .5em 0 0;
262 263 overflow: hidden;
263 264 width: .6em; height: .6em;
264 265 }
265 266
266 267 ul.documents {
267 268 list-style-type: none;
268 269 padding: 0;
269 270 margin: 0;
270 271 }
271 272
272 273 ul.documents li {
273 274 background-image: url(../images/32x32/file.png);
274 275 background-repeat: no-repeat;
275 276 background-position: 0 1px;
276 277 padding-left: 36px;
277 278 margin-bottom: 10px;
278 279 margin-left: -37px;
279 280 }
280 281
281 282 /********** Table used to display lists of things ***********/
282 283
283 284 table.list {
284 285 width:100%;
285 286 border-collapse: collapse;
286 287 border: 1px dotted #d0d0d0;
287 288 margin-bottom: 6px;
288 289 }
289 290
290 291 table.with-cells td {
291 292 border: 1px solid #d7d7d7;
292 293 }
293 294
294 295 table.list td {
295 296 padding:2px;
296 297 }
297 298
298 299 table.list thead th {
299 300 text-align: center;
300 301 background: #eee;
301 302 border: 1px solid #d7d7d7;
302 303 color: #777;
303 304 }
304 305
305 306 table.list tbody th {
306 307 font-weight: bold;
307 308 background: #eed;
308 309 border: 1px solid #d7d7d7;
309 310 color: #777;
310 311 }
311 312
312 313 /********** Validation error messages *************/
313 314 #errorExplanation {
314 315 width: 400px;
315 316 border: 0;
316 317 padding: 7px;
317 318 padding-bottom: 3px;
318 319 margin-bottom: 0px;
319 320 }
320 321
321 322 #errorExplanation h2 {
322 323 text-align: left;
323 324 font-weight: bold;
324 325 padding: 5px 5px 10px 26px;
325 326 font-size: 1em;
326 327 margin: -7px;
327 328 background: url(../images/alert.png) no-repeat 6px 6px;
328 329 }
329 330
330 331 #errorExplanation p {
331 332 color: #333;
332 333 margin-bottom: 0;
333 334 padding: 5px;
334 335 }
335 336
336 337 #errorExplanation ul li {
337 338 font-size: 1em;
338 339 list-style: none;
339 340 margin-left: -16px;
340 341 }
341 342
342 343 /*========== Drop down menu ==============*/
343 344 div.menu {
344 345 background-color: #FFFFFF;
345 346 border-style: solid;
346 347 border-width: 1px;
347 348 border-color: #7F9DB9;
348 349 position: absolute;
349 350 top: 0px;
350 351 left: 0px;
351 352 padding: 0;
352 353 visibility: hidden;
353 354 z-index: 101;
354 355 }
355 356
356 357 div.menu a.menuItem {
357 358 font-size: 10px;
358 359 font-weight: normal;
359 360 line-height: 2em;
360 361 color: #000000;
361 362 background-color: #FFFFFF;
362 363 cursor: default;
363 364 display: block;
364 365 padding: 0 1em;
365 366 margin: 0;
366 367 border: 0;
367 368 text-decoration: none;
368 369 white-space: nowrap;
369 370 }
370 371
371 372 div.menu a.menuItem:hover, div.menu a.menuItemHighlight {
372 373 background-color: #80b0da;
373 374 color: #ffffff;
374 375 }
375 376
376 377 div.menu a.menuItem span.menuItemText {}
377 378
378 379 div.menu a.menuItem span.menuItemArrow {
379 380 margin-right: -.75em;
380 381 }
381 382
382 383 /**************** Sidebar styles ****************/
383 384
384 385 #subcontent{
385 386 position: absolute;
386 387 left: 0px;
387 388 width:95px;
388 389 padding:20px 20px 10px 5px;
389 390 overflow: hidden;
390 391 }
391 392
392 393 #subcontent h2{
393 394 display:block;
394 395 margin:0 0 5px 0;
395 396 font-size:1.0em;
396 397 font-weight:bold;
397 398 text-align:left;
398 399 color:#606060;
399 400 background-color:inherit;
400 401 font-family: Trebuchet MS,Georgia,"Times New Roman",serif;
401 402 }
402 403
403 404 #subcontent p{margin:0 0 16px 0; font-size:0.9em;}
404 405
405 406 /**************** Menublock styles ****************/
406 407
407 408 .menublock{margin:0 0 20px 8px; font-size:0.8em;}
408 409 .menublock li{list-style:none; display:block; padding:1px; margin-bottom:0px;}
409 410 .menublock li a{font-weight:bold; text-decoration:none;}
410 411 .menublock li a:hover{text-decoration:none;}
411 412 .menublock li ul{margin:0; font-size:1em; font-weight:normal;}
412 413 .menublock li ul li{margin-bottom:0;}
413 414 .menublock li ul a{font-weight:normal;}
414 415
415 416 /**************** Footer styles ****************/
416 417
417 418 #footer{
418 419 clear:both;
419 420 padding:5px 0;
420 421 margin:0;
421 422 font-size:0.9em;
422 423 color:#f0f0f0;
423 424 background:#467aa7;
424 425 }
425 426
426 427 #footer p{padding:0; margin:0; text-align:center;}
427 428 #footer a{color:#f0f0f0; background-color:inherit; font-weight:bold;}
428 429 #footer a:hover{color:#ffffff; background-color:inherit; text-decoration: underline;}
429 430
430 431 /**************** Misc classes and styles ****************/
431 432
432 433 .splitcontentleft{float:left; width:49%;}
433 434 .splitcontentright{float:right; width:49%;}
434 435 .clear{clear:both;}
435 436 .small{font-size:0.8em;line-height:1.4em;padding:0 0 0 0;}
436 437 .hide{display:none;}
437 438 .textcenter{text-align:center;}
438 439 .textright{text-align:right;}
439 440 .important{color:#f02025; background-color:inherit; font-weight:bold;}
440 441
441 442 .box{
442 443 margin:0 0 20px 0;
443 444 padding:10px;
444 445 border:1px solid #c0c0c0;
445 446 background-color:#fafbfc;
446 447 color:#505050;
447 448 line-height:1.5em;
448 449 }
449 450
450 451 a.close-icon {
451 452 display:block;
452 453 margin-top:3px;
453 454 overflow:hidden;
454 455 width:12px;
455 456 height:12px;
456 457 background-repeat: no-repeat;
457 458 cursor:pointer;
458 459 background-image:url('../images/close.png');
459 460 }
460 461
461 462 a.close-icon:hover {
462 463 background-image:url('../images/close_hl.png');
463 464 }
464 465
465 466 .rightbox{
466 467 background: #fafbfc;
467 468 border: 1px solid #c0c0c0;
468 469 float: right;
469 470 padding: 8px;
470 471 position: relative;
471 472 margin: 0 5px 5px;
472 473 }
473 474
474 475 .overlay{
475 476 position: absolute;
476 477 margin-left:0;
477 478 z-index: 50;
478 479 }
479 480
480 481 .layout-active {
481 482 background: #ECF3E1;
482 483 }
483 484
484 485 .block-receiver {
485 486 border:1px dashed #c0c0c0;
486 487 margin-bottom: 20px;
487 488 padding: 15px 0 15px 0;
488 489 }
489 490
490 491 .mypage-box {
491 492 margin:0 0 20px 0;
492 493 color:#505050;
493 494 line-height:1.5em;
494 495 }
495 496
496 497 .handle {
497 498 cursor: move;
498 499 }
499 500
500 501 .login {
501 502 width: 50%;
502 503 text-align: left;
503 504 }
504 505
505 506 img.calendar-trigger {
506 507 cursor: pointer;
507 508 vertical-align: middle;
508 509 margin-left: 4px;
509 510 }
510 511
511 512 #history p {
512 513 margin-left: 34px;
513 514 }
514 515
515 516 .progress {
516 517 border: 1px solid #D7D7D7;
517 518 border-collapse: collapse;
518 519 border-spacing: 0pt;
519 520 empty-cells: show;
520 521 padding: 3px;
521 522 width: 40em;
522 523 text-align: center;
523 524 }
524 525
525 526 .progress td { height: 1em; }
526 527 .progress .closed { background: #BAE0BA none repeat scroll 0%; }
527 528 .progress .open { background: #FFF none repeat scroll 0%; }
528 529
529 530 /***** Contextual links div *****/
530 531 .contextual {
531 532 float: right;
532 533 font-size: 0.8em;
533 534 line-height: 16px;
534 535 padding: 2px;
535 536 }
536 537
537 538 .contextual select, .contextual input {
538 539 font-size: 1em;
539 540 }
540 541
541 542 /***** Gantt chart *****/
542 543 .gantt_hdr {
543 544 position:absolute;
544 545 top:0;
545 546 height:16px;
546 547 border-top: 1px solid #c0c0c0;
547 548 border-bottom: 1px solid #c0c0c0;
548 549 border-right: 1px solid #c0c0c0;
549 550 text-align: center;
550 551 overflow: hidden;
551 552 }
552 553
553 554 .task {
554 555 position: absolute;
555 556 height:8px;
556 557 font-size:0.8em;
557 558 color:#888;
558 559 padding:0;
559 560 margin:0;
560 561 line-height:0.8em;
561 562 }
562 563
563 564 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
564 565 .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; }
565 566 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
566 567 .milestone { background-image:url(../images/milestone.png); background-repeat: no-repeat; border: 0; }
567 568
568 569 /***** Tooltips ******/
569 570 .tooltip{position:relative;z-index:24;}
570 571 .tooltip:hover{z-index:25;color:#000;}
571 572 .tooltip span.tip{display: none; text-align:left;}
572 573
573 574 div.tooltip:hover span.tip{
574 575 display:block;
575 576 position:absolute;
576 577 top:12px; left:24px; width:270px;
577 578 border:1px solid #555;
578 579 background-color:#fff;
579 580 padding: 4px;
580 581 font-size: 0.8em;
581 582 color:#505050;
582 583 }
583 584
584 585 /***** CSS FORM ******/
585 586 .tabular p{
586 587 margin: 0;
587 588 padding: 5px 0 8px 0;
588 589 padding-left: 180px; /*width of left column containing the label elements*/
589 590 height: 1%;
590 591 }
591 592
592 593 .tabular label{
593 594 font-weight: bold;
594 595 float: left;
595 596 margin-left: -180px; /*width of left column*/
596 597 width: 175px; /*width of labels. Should be smaller than left column to create some right
597 598 margin*/
598 599 }
599 600
600 601 .error {
601 602 color: #cc0000;
602 603 }
603 604
604 605 #settings .tabular p{ padding-left: 250px; }
605 606 #settings .tabular label{ margin-left: -250px; width: 245px; }
606 607
607 608 /*.threepxfix class below:
608 609 Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents.
609 610 to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html
610 611 */
611 612
612 613 * html .threepxfix{
613 614 margin-left: 3px;
614 615 }
615 616
616 617 /***** Wiki sections ****/
617 618 #content div.wiki { font-size: 110%}
618 619
619 620 #content div.wiki h2, div.wiki h3 { font-family: Trebuchet MS,Georgia,"Times New Roman",serif; color:#606060; }
620 621 #content div.wiki h2 { font-size: 1.4em;}
621 622 #content div.wiki h3 { font-size: 1.2em;}
622 623
623 624 div.wiki table {
624 625 border: 1px solid #505050;
625 626 border-collapse: collapse;
626 627 }
627 628
628 629 div.wiki table, div.wiki td {
629 630 border: 1px solid #bbb;
630 631 padding: 4px;
631 632 }
632 633
633 634 div.wiki code {
634 635 font-size: 1.2em;
635 636 }
636 637
637 638 #preview .preview { background: #fafbfc url(../images/draft.png); }
General Comments 0
You need to be logged in to leave comments. Login now