##// END OF EJS Templates
Fix IE6 display bug on the issue list....
Jean-Philippe Lang -
r1270:180fe8f6a47e
parent child
Show More
@@ -1,67 +1,67
1 1 <% if @query.new_record? %>
2 2 <h2><%=l(:label_issue_plural)%></h2>
3 3 <% html_title(l(:label_issue_plural)) %>
4 4
5 5 <% form_tag({ :controller => 'queries', :action => 'new' }, :id => 'query_form') do %>
6 6 <%= hidden_field_tag('project_id', @project.id) if @project %>
7 7 <fieldset id="filters"><legend><%= l(:label_filter_plural) %></legend>
8 8 <%= render :partial => 'queries/filters', :locals => {:query => @query} %>
9 <div class="buttons">
9 <p class="buttons">
10 10 <%= link_to_remote l(:button_apply),
11 11 { :url => { :set_filter => 1 },
12 12 :update => "content",
13 13 :with => "Form.serialize('query_form')"
14 14 }, :class => 'icon icon-checked' %>
15 15
16 16 <%= link_to_remote l(:button_clear),
17 17 { :url => { :set_filter => 1 },
18 18 :update => "content",
19 19 }, :class => 'icon icon-reload' %>
20 20
21 21 <% if current_role && current_role.allowed_to?(:save_queries) %>
22 22 <%= link_to l(:button_save), {}, :onclick => "$('query_form').submit(); return false;", :class => 'icon icon-save' %>
23 23 <% end %>
24 </div>
24 </p>
25 25 </fieldset>
26 26 <% end %>
27 27 <% else %>
28 28 <div class="contextual">
29 29 <% if @query.editable_by?(User.current) %>
30 30 <%= link_to l(:button_edit), {:controller => 'queries', :action => 'edit', :id => @query}, :class => 'icon icon-edit' %>
31 31 <%= link_to l(:button_delete), {:controller => 'queries', :action => 'destroy', :id => @query}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %>
32 32 <% end %>
33 33 </div>
34 34 <h2><%=h @query.name %></h2>
35 35 <div id="query_form"></div>
36 36 <% html_title @query.name %>
37 37 <% end %>
38 38 <%= error_messages_for 'query' %>
39 39 <% if @query.valid? %>
40 40 <% if @issues.empty? %>
41 41 <p class="nodata"><%= l(:label_no_data) %></p>
42 42 <% else %>
43 43 <%= render :partial => 'issues/list', :locals => {:issues => @issues, :query => @query} %>
44 44 <p class="pagination"><%= pagination_links_full @issue_pages, @issue_count %></p>
45 45
46 46 <p class="other-formats">
47 47 <%= l(:label_export_to) %>
48 48 <span><%= link_to 'Atom', {:format => 'atom', :key => User.current.rss_key}, :class => 'feed' %></span>
49 49 <span><%= link_to 'CSV', {:format => 'csv'}, :class => 'csv' %></span>
50 50 <span><%= link_to 'PDF', {:format => 'pdf'}, :class => 'pdf' %></span>
51 51 </p>
52 52 <% end %>
53 53 <% end %>
54 54
55 55 <% content_for :sidebar do %>
56 56 <%= render :partial => 'issues/sidebar' %>
57 57 <% end if @project%>
58 58
59 59 <% content_for :header_tags do %>
60 60 <%= auto_discovery_link_tag(:atom, {:query_id => @query, :format => 'atom', :page => nil, :key => User.current.rss_key}, :title => l(:label_issue_plural)) %>
61 61 <%= auto_discovery_link_tag(:atom, {:action => 'changes', :query_id => @query, :format => 'atom', :page => nil, :key => User.current.rss_key}, :title => l(:label_changes_details)) %>
62 62 <%= javascript_include_tag 'context_menu' %>
63 63 <%= stylesheet_link_tag 'context_menu' %>
64 64 <% end %>
65 65
66 66 <div id="context-menu" style="display: none;"></div>
67 67 <%= javascript_tag "new ContextMenu('#{url_for(:controller => 'issues', :action => 'context_menu')}')" %>
@@ -1,580 +1,579
1 1 body { font-family: Verdana, sans-serif; font-size: 12px; color:#484848; margin: 0; padding: 0; min-width: 900px; }
2 2
3 3 h1, h2, h3, h4 { font-family: "Trebuchet MS", Verdana, sans-serif;}
4 4 h1 {margin:0; padding:0; font-size: 24px;}
5 5 h2, .wiki h1 {font-size: 20px;padding: 2px 10px 1px 0px;margin: 0 0 10px 0; border-bottom: 1px solid #bbbbbb; color: #444;}
6 6 h3, .wiki h2 {font-size: 16px;padding: 2px 10px 1px 0px;margin: 0 0 10px 0; border-bottom: 1px solid #bbbbbb; color: #444;}
7 7 h4, .wiki h3 {font-size: 12px;padding: 2px 10px 1px 0px;margin-bottom: 5px; border-bottom: 1px dotted #bbbbbb; color: #444;}
8 8
9 9 /***** Layout *****/
10 10 #wrapper {background: white;}
11 11
12 12 #top-menu {background: #2C4056; color: #fff; height:1.8em; font-size: 0.8em; padding: 2px 2px 0px 6px;}
13 13 #top-menu ul {margin: 0; padding: 0;}
14 14 #top-menu li {
15 15 float:left;
16 16 list-style-type:none;
17 17 margin: 0px 0px 0px 0px;
18 18 padding: 0px 0px 0px 0px;
19 19 white-space:nowrap;
20 20 }
21 21 #top-menu a {color: #fff; padding-right: 8px; font-weight: bold;}
22 22 #top-menu #loggedas { float: right; margin-right: 0.5em; color: #fff; }
23 23
24 24 #account {float:right;}
25 25
26 26 #header {height:5.3em;margin:0;background-color:#507AAA;color:#f8f8f8; padding: 4px 8px 0px 6px; position:relative;}
27 27 #header a {color:#f8f8f8;}
28 28 #quick-search {float:right;}
29 29
30 30 #main-menu {position: absolute; bottom: 0px; left:6px; margin-right: -500px;}
31 31 #main-menu ul {margin: 0; padding: 0;}
32 32 #main-menu li {
33 33 float:left;
34 34 list-style-type:none;
35 35 margin: 0px 2px 0px 0px;
36 36 padding: 0px 0px 0px 0px;
37 37 white-space:nowrap;
38 38 }
39 39 #main-menu li a {
40 40 display: block;
41 41 color: #fff;
42 42 text-decoration: none;
43 43 font-weight: bold;
44 44 margin: 0;
45 45 padding: 4px 10px 4px 10px;
46 46 }
47 47 #main-menu li a:hover {background:#759FCF; color:#fff;}
48 48 #main-menu li a.selected, #main-menu li a.selected:hover {background:#fff; color:#555;}
49 49
50 50 #main {background-color:#EEEEEE;}
51 51
52 52 #sidebar{ float: right; width: 17%; position: relative; z-index: 9; min-height: 600px; padding: 0; margin: 0;}
53 53 * html #sidebar{ width: 17%; }
54 54 #sidebar h3{ font-size: 14px; margin-top:14px; color: #666; }
55 55 #sidebar hr{ width: 100%; margin: 0 auto; height: 1px; background: #ccc; border: 0; }
56 56 * html #sidebar hr{ width: 95%; position: relative; left: -6px; color: #ccc; }
57 57
58 58 #content { width: 80%; background-color: #fff; margin: 0px; border-right: 1px solid #ddd; padding: 6px 10px 10px 10px; z-index: 10; height:600px; min-height: 600px;}
59 59 * html #content{ width: 80%; padding-left: 0; margin-top: 0px; padding: 6px 10px 10px 10px;}
60 60 html>body #content {
61 61 height: auto;
62 62 min-height: 600px;
63 63 }
64 64
65 65 #main.nosidebar #sidebar{ display: none; }
66 66 #main.nosidebar #content{ width: auto; border-right: 0; }
67 67
68 68 #footer {clear: both; border-top: 1px solid #bbb; font-size: 0.9em; color: #aaa; padding: 5px; text-align:center; background:#fff;}
69 69
70 70 #login-form table {margin-top:5em; padding:1em; margin-left: auto; margin-right: auto; border: 2px solid #FDBF3B; background-color:#FFEBC1; }
71 71 #login-form table td {padding: 6px;}
72 72 #login-form label {font-weight: bold;}
73 73
74 74 .clear:after{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }
75 75
76 76 /***** Links *****/
77 77 a, a:link, a:visited{ color: #2A5685; text-decoration: none; }
78 78 a:hover, a:active{ color: #c61a1a; text-decoration: underline;}
79 79 a img{ border: 0; }
80 80
81 81 a.issue.closed, .issue.closed a { text-decoration: line-through; }
82 82
83 83 /***** Tables *****/
84 84 table.list { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 4px; }
85 85 table.list th { background-color:#EEEEEE; padding: 4px; white-space:nowrap; }
86 86 table.list td { overflow: hidden; vertical-align: top;}
87 87 table.list td.id { width: 2%; text-align: center;}
88 88 table.list td.checkbox { width: 15px; padding: 0px;}
89 89
90 table.list.issues { margin-top: 10px; }
90 91 tr.issue { text-align: center; white-space: nowrap; }
91 92 tr.issue td.subject, tr.issue td.category { white-space: normal; }
92 93 tr.issue td.subject { text-align: left; }
93 94 tr.issue td.done_ratio table.progress { margin-left:auto; margin-right: auto;}
94 95
95 96 tr.entry { border: 1px solid #f8f8f8; }
96 97 tr.entry td { white-space: nowrap; }
97 98 tr.entry td.filename { width: 30%; }
98 99 tr.entry td.size { text-align: right; font-size: 90%; }
99 100 tr.entry td.revision, tr.entry td.author { text-align: center; }
100 101 tr.entry td.age { text-align: right; }
101 102
102 103 tr.changeset td.author { text-align: center; width: 15%; }
103 104 tr.changeset td.committed_on { text-align: center; width: 15%; }
104 105
105 106 tr.message { height: 2.6em; }
106 107 tr.message td.last_message { font-size: 80%; }
107 108 tr.message.locked td.subject a { background-image: url(../images/locked.png); }
108 109 tr.message.sticky td.subject a { background-image: url(../images/sticky.png); font-weight: bold; }
109 110
110 111 tr.user td { width:13%; }
111 112 tr.user td.email { width:18%; }
112 113 tr.user td { white-space: nowrap; }
113 114 tr.user.locked, tr.user.registered { color: #aaa; }
114 115 tr.user.locked a, tr.user.registered a { color: #aaa; }
115 116
116 117 tr.time-entry { text-align: center; white-space: nowrap; }
117 118 tr.time-entry td.subject, tr.time-entry td.comments { text-align: left; white-space: normal; }
118 119 td.hours { text-align: right; font-weight: bold; padding-right: 0.5em; }
119 120 td.hours .hours-dec { font-size: 0.9em; }
120 121
121 122 table.list tbody tr:hover { background-color:#ffffdd; }
122 123 table td {padding:2px;}
123 124 table p {margin:0;}
124 125 .odd {background-color:#f6f7f8;}
125 126 .even {background-color: #fff;}
126 127
127 128 .highlight { background-color: #FCFD8D;}
128 129 .highlight.token-1 { background-color: #faa;}
129 130 .highlight.token-2 { background-color: #afa;}
130 131 .highlight.token-3 { background-color: #aaf;}
131 132
132 133 .box{
133 134 padding:6px;
134 135 margin-bottom: 10px;
135 136 background-color:#f6f6f6;
136 137 color:#505050;
137 138 line-height:1.5em;
138 139 border: 1px solid #e4e4e4;
139 140 }
140 141
141 142 div.square {
142 143 border: 1px solid #999;
143 144 float: left;
144 145 margin: .3em .4em 0 .4em;
145 146 overflow: hidden;
146 147 width: .6em; height: .6em;
147 148 }
148
149 149 .contextual {float:right; white-space: nowrap; line-height:1.4em;margin-top:5px; padding-left: 10px; font-size:0.9em;}
150 150 .contextual input {font-size:0.9em;}
151 151
152 152 .splitcontentleft{float:left; width:49%;}
153 153 .splitcontentright{float:right; width:49%;}
154 154 form {display: inline;}
155 155 input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;}
156 156 fieldset {border: 1px solid #e4e4e4; margin:0;}
157 157 legend {color: #484848;}
158 158 hr { width: 100%; height: 1px; background: #ccc; border: 0;}
159 159 textarea.wiki-edit { width: 99%; }
160 160 li p {margin-top: 0;}
161 161 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
162 162
163 #filters { margin-bottom: 1em; }
164 #filters .buttons { text-align: right; font-size: 0.9em; }
163 fieldset#filters .buttons { text-align: right; font-size: 0.9em; margin: 0 4px 0px 0; }
165 164
166 165 div#issue-changesets {float:right; width:45%; margin-left: 1em; margin-bottom: 1em; background: #fff; padding-left: 1em; font-size: 90%;}
167 166 div#issue-changesets .changeset { padding: 4px;}
168 167 div#issue-changesets .changeset { border-bottom: 1px solid #ddd; }
169 168 div#issue-changesets p { margin-top: 0; margin-bottom: 1em;}
170 169
171 170 div#activity dl { margin-left: 2em; }
172 171 div#activity dd { margin-bottom: 1em; }
173 172 div#activity dt { margin-bottom: 1px; }
174 173 div#activity dt .time { color: #777; font-size: 80%; }
175 174 div#activity dd .description { font-style: italic; }
176 175 div#activity span.project:after { content: " -"; }
177 176
178 177 div#roadmap fieldset.related-issues { margin-bottom: 1em; }
179 178 div#roadmap fieldset.related-issues ul { margin-top: 0.3em; margin-bottom: 0.3em; }
180 179 div#roadmap .wiki h1:first-child { display: none; }
181 180 div#roadmap .wiki h1 { font-size: 120%; }
182 181 div#roadmap .wiki h2 { font-size: 110%; }
183 182
184 183 div#version-summary { float:right; width:380px; margin-left: 16px; margin-bottom: 16px; background-color: #fff; }
185 184 div#version-summary fieldset { margin-bottom: 1em; }
186 185 div#version-summary .total-hours { text-align: right; }
187 186
188 187 table#time-report td.hours { text-align: right; padding-right: 0.5em; }
189 188 table#time-report tbody tr { font-style: italic; color: #777; }
190 189 table#time-report tbody tr.last-level { font-style: normal; color: #555; }
191 190 table#time-report tbody tr.total { font-style: normal; font-weight: bold; color: #555; background-color:#EEEEEE; }
192 191 table#time-report .hours-dec { font-size: 0.9em; }
193 192
194 193 .total-hours { font-size: 110%; font-weight: bold; }
195 194 .total-hours span.hours-int { font-size: 120%; }
196 195
197 196 .autoscroll {overflow-x: auto; padding:1px; width:100%; margin-bottom: 1.2em;}
198 197 #user_firstname, #user_lastname, #user_mail, #my_account_form select { width: 90%; }
199 198
200 199 .pagination {font-size: 90%}
201 200 p.pagination {margin-top:8px;}
202 201
203 202 /***** Tabular forms ******/
204 203 .tabular p{
205 204 margin: 0;
206 205 padding: 5px 0 8px 0;
207 206 padding-left: 180px; /*width of left column containing the label elements*/
208 207 height: 1%;
209 208 clear:left;
210 209 }
211 210
212 211 .tabular label{
213 212 font-weight: bold;
214 213 float: left;
215 214 text-align: right;
216 215 margin-left: -180px; /*width of left column*/
217 216 width: 175px; /*width of labels. Should be smaller than left column to create some right
218 217 margin*/
219 218 }
220 219
221 220 .tabular label.floating{
222 221 font-weight: normal;
223 222 margin-left: 0px;
224 223 text-align: left;
225 224 width: 200px;
226 225 }
227 226
228 227 #preview fieldset {margin-top: 1em; background: url(../images/draft.png)}
229 228
230 229 .tabular.settings p{ padding-left: 300px; }
231 230 .tabular.settings label{ margin-left: -300px; width: 295px; }
232 231
233 232 .required {color: #bb0000;}
234 233 .summary {font-style: italic;}
235 234
236 235 #attachments_fields input[type=text] {margin-left: 8px; }
237 236
238 237 div.attachments p { margin:4px 0 2px 0; }
239 238 div.attachments img { vertical-align: middle; }
240 239 div.attachments span.author { font-size: 0.9em; color: #888; }
241 240
242 241 p.other-formats { text-align: right; font-size:0.9em; color: #666; }
243 242 .other-formats span + span:before { content: "| "; }
244 243
245 244 a.feed { background: url(../images/feed.png) no-repeat 1px 50%; padding: 2px 0px 3px 16px; }
246 245
247 246 /***** Flash & error messages ****/
248 247 #errorExplanation, div.flash, .nodata {
249 248 padding: 4px 4px 4px 30px;
250 249 margin-bottom: 12px;
251 250 font-size: 1.1em;
252 251 border: 2px solid;
253 252 }
254 253
255 254 div.flash {margin-top: 8px;}
256 255
257 256 div.flash.error, #errorExplanation {
258 257 background: url(../images/false.png) 8px 5px no-repeat;
259 258 background-color: #ffe3e3;
260 259 border-color: #dd0000;
261 260 color: #550000;
262 261 }
263 262
264 263 div.flash.notice {
265 264 background: url(../images/true.png) 8px 5px no-repeat;
266 265 background-color: #dfffdf;
267 266 border-color: #9fcf9f;
268 267 color: #005f00;
269 268 }
270 269
271 270 .nodata {
272 271 text-align: center;
273 272 background-color: #FFEBC1;
274 273 border-color: #FDBF3B;
275 274 color: #A6750C;
276 275 }
277 276
278 277 #errorExplanation ul { font-size: 0.9em;}
279 278
280 279 /***** Ajax indicator ******/
281 280 #ajax-indicator {
282 281 position: absolute; /* fixed not supported by IE */
283 282 background-color:#eee;
284 283 border: 1px solid #bbb;
285 284 top:35%;
286 285 left:40%;
287 286 width:20%;
288 287 font-weight:bold;
289 288 text-align:center;
290 289 padding:0.6em;
291 290 z-index:100;
292 291 filter:alpha(opacity=50);
293 292 opacity: 0.5;
294 293 }
295 294
296 295 html>body #ajax-indicator { position: fixed; }
297 296
298 297 #ajax-indicator span {
299 298 background-position: 0% 40%;
300 299 background-repeat: no-repeat;
301 300 background-image: url(../images/loading.gif);
302 301 padding-left: 26px;
303 302 vertical-align: bottom;
304 303 }
305 304
306 305 /***** Calendar *****/
307 306 table.cal {border-collapse: collapse; width: 100%; margin: 8px 0 6px 0;border: 1px solid #d7d7d7;}
308 307 table.cal thead th {width: 14%;}
309 308 table.cal tbody tr {height: 100px;}
310 309 table.cal th { background-color:#EEEEEE; padding: 4px; }
311 310 table.cal td {border: 1px solid #d7d7d7; vertical-align: top; font-size: 0.9em;}
312 311 table.cal td p.day-num {font-size: 1.1em; text-align:right;}
313 312 table.cal td.odd p.day-num {color: #bbb;}
314 313 table.cal td.today {background:#ffffdd;}
315 314 table.cal td.today p.day-num {font-weight: bold;}
316 315
317 316 /***** Tooltips ******/
318 317 .tooltip{position:relative;z-index:24;}
319 318 .tooltip:hover{z-index:25;color:#000;}
320 319 .tooltip span.tip{display: none; text-align:left;}
321 320
322 321 div.tooltip:hover span.tip{
323 322 display:block;
324 323 position:absolute;
325 324 top:12px; left:24px; width:270px;
326 325 border:1px solid #555;
327 326 background-color:#fff;
328 327 padding: 4px;
329 328 font-size: 0.8em;
330 329 color:#505050;
331 330 }
332 331
333 332 /***** Progress bar *****/
334 333 table.progress {
335 334 border: 1px solid #D7D7D7;
336 335 border-collapse: collapse;
337 336 border-spacing: 0pt;
338 337 empty-cells: show;
339 338 text-align: center;
340 339 float:left;
341 340 margin: 1px 6px 1px 0px;
342 341 }
343 342
344 343 table.progress td { height: 0.9em; }
345 344 table.progress td.closed { background: #BAE0BA none repeat scroll 0%; }
346 345 table.progress td.done { background: #DEF0DE none repeat scroll 0%; }
347 346 table.progress td.open { background: #FFF none repeat scroll 0%; }
348 347 p.pourcent {font-size: 80%;}
349 348 p.progress-info {clear: left; font-style: italic; font-size: 80%;}
350 349
351 350 /***** Tabs *****/
352 351 #content .tabs {height: 2.6em; border-bottom: 1px solid #bbbbbb; margin-bottom:1.2em; position:relative;}
353 352 #content .tabs ul {margin:0; position:absolute; bottom:-2px; padding-left:1em;}
354 353 #content .tabs>ul { bottom:-1px; } /* others */
355 354 #content .tabs ul li {
356 355 float:left;
357 356 list-style-type:none;
358 357 white-space:nowrap;
359 358 margin-right:8px;
360 359 background:#fff;
361 360 }
362 361 #content .tabs ul li a{
363 362 display:block;
364 363 font-size: 0.9em;
365 364 text-decoration:none;
366 365 line-height:1.3em;
367 366 padding:4px 6px 4px 6px;
368 367 border: 1px solid #ccc;
369 368 border-bottom: 1px solid #bbbbbb;
370 369 background-color: #eeeeee;
371 370 color:#777;
372 371 font-weight:bold;
373 372 }
374 373
375 374 #content .tabs ul li a:hover {
376 375 background-color: #ffffdd;
377 376 text-decoration:none;
378 377 }
379 378
380 379 #content .tabs ul li a.selected {
381 380 background-color: #fff;
382 381 border: 1px solid #bbbbbb;
383 382 border-bottom: 1px solid #fff;
384 383 }
385 384
386 385 #content .tabs ul li a.selected:hover {
387 386 background-color: #fff;
388 387 }
389 388
390 389 /***** Diff *****/
391 390 .diff_out { background: #fcc; }
392 391 .diff_in { background: #cfc; }
393 392
394 393 /***** Wiki *****/
395 394 div.wiki table {
396 395 border: 1px solid #505050;
397 396 border-collapse: collapse;
398 397 margin-bottom: 1em;
399 398 }
400 399
401 400 div.wiki table, div.wiki td, div.wiki th {
402 401 border: 1px solid #bbb;
403 402 padding: 4px;
404 403 }
405 404
406 405 div.wiki .external {
407 406 background-position: 0% 60%;
408 407 background-repeat: no-repeat;
409 408 padding-left: 12px;
410 409 background-image: url(../images/external.png);
411 410 }
412 411
413 412 div.wiki a.new {
414 413 color: #b73535;
415 414 }
416 415
417 416 div.wiki pre {
418 417 margin: 1em 1em 1em 1.6em;
419 418 padding: 2px;
420 419 background-color: #fafafa;
421 420 border: 1px solid #dadada;
422 421 width:95%;
423 422 overflow-x: auto;
424 423 }
425 424
426 425 div.wiki div.toc {
427 426 background-color: #ffffdd;
428 427 border: 1px solid #e4e4e4;
429 428 padding: 4px;
430 429 line-height: 1.2em;
431 430 margin-bottom: 12px;
432 431 margin-right: 12px;
433 432 display: table
434 433 }
435 434 * html div.wiki div.toc { width: 50%; } /* IE6 doesn't autosize div */
436 435
437 436 div.wiki div.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; }
438 437 div.wiki div.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; }
439 438
440 439 div.wiki div.toc a {
441 440 display: block;
442 441 font-size: 0.9em;
443 442 font-weight: normal;
444 443 text-decoration: none;
445 444 color: #606060;
446 445 }
447 446 div.wiki div.toc a:hover { color: #c61a1a; text-decoration: underline;}
448 447
449 448 div.wiki div.toc a.heading2 { margin-left: 6px; }
450 449 div.wiki div.toc a.heading3 { margin-left: 12px; font-size: 0.8em; }
451 450
452 451 /***** My page layout *****/
453 452 .block-receiver {
454 453 border:1px dashed #c0c0c0;
455 454 margin-bottom: 20px;
456 455 padding: 15px 0 15px 0;
457 456 }
458 457
459 458 .mypage-box {
460 459 margin:0 0 20px 0;
461 460 color:#505050;
462 461 line-height:1.5em;
463 462 }
464 463
465 464 .handle {
466 465 cursor: move;
467 466 }
468 467
469 468 a.close-icon {
470 469 display:block;
471 470 margin-top:3px;
472 471 overflow:hidden;
473 472 width:12px;
474 473 height:12px;
475 474 background-repeat: no-repeat;
476 475 cursor:pointer;
477 476 background-image:url('../images/close.png');
478 477 }
479 478
480 479 a.close-icon:hover {
481 480 background-image:url('../images/close_hl.png');
482 481 }
483 482
484 483 /***** Gantt chart *****/
485 484 .gantt_hdr {
486 485 position:absolute;
487 486 top:0;
488 487 height:16px;
489 488 border-top: 1px solid #c0c0c0;
490 489 border-bottom: 1px solid #c0c0c0;
491 490 border-right: 1px solid #c0c0c0;
492 491 text-align: center;
493 492 overflow: hidden;
494 493 }
495 494
496 495 .task {
497 496 position: absolute;
498 497 height:8px;
499 498 font-size:0.8em;
500 499 color:#888;
501 500 padding:0;
502 501 margin:0;
503 502 line-height:0.8em;
504 503 }
505 504
506 505 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
507 506 .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; }
508 507 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
509 508 .milestone { background-image:url(../images/milestone.png); background-repeat: no-repeat; border: 0; }
510 509
511 510 /***** Icons *****/
512 511 .icon {
513 512 background-position: 0% 40%;
514 513 background-repeat: no-repeat;
515 514 padding-left: 20px;
516 515 padding-top: 2px;
517 516 padding-bottom: 3px;
518 517 }
519 518
520 519 .icon22 {
521 520 background-position: 0% 40%;
522 521 background-repeat: no-repeat;
523 522 padding-left: 26px;
524 523 line-height: 22px;
525 524 vertical-align: middle;
526 525 }
527 526
528 527 .icon-add { background-image: url(../images/add.png); }
529 528 .icon-edit { background-image: url(../images/edit.png); }
530 529 .icon-copy { background-image: url(../images/copy.png); }
531 530 .icon-del { background-image: url(../images/delete.png); }
532 531 .icon-move { background-image: url(../images/move.png); }
533 532 .icon-save { background-image: url(../images/save.png); }
534 533 .icon-cancel { background-image: url(../images/cancel.png); }
535 534 .icon-file { background-image: url(../images/file.png); }
536 535 .icon-folder { background-image: url(../images/folder.png); }
537 536 .open .icon-folder { background-image: url(../images/folder_open.png); }
538 537 .icon-package { background-image: url(../images/package.png); }
539 538 .icon-home { background-image: url(../images/home.png); }
540 539 .icon-user { background-image: url(../images/user.png); }
541 540 .icon-mypage { background-image: url(../images/user_page.png); }
542 541 .icon-admin { background-image: url(../images/admin.png); }
543 542 .icon-projects { background-image: url(../images/projects.png); }
544 543 .icon-logout { background-image: url(../images/logout.png); }
545 544 .icon-help { background-image: url(../images/help.png); }
546 545 .icon-attachment { background-image: url(../images/attachment.png); }
547 546 .icon-index { background-image: url(../images/index.png); }
548 547 .icon-history { background-image: url(../images/history.png); }
549 548 .icon-time { background-image: url(../images/time.png); }
550 549 .icon-stats { background-image: url(../images/stats.png); }
551 550 .icon-warning { background-image: url(../images/warning.png); }
552 551 .icon-fav { background-image: url(../images/fav.png); }
553 552 .icon-fav-off { background-image: url(../images/fav_off.png); }
554 553 .icon-reload { background-image: url(../images/reload.png); }
555 554 .icon-lock { background-image: url(../images/locked.png); }
556 555 .icon-unlock { background-image: url(../images/unlock.png); }
557 556 .icon-checked { background-image: url(../images/true.png); }
558 557 .icon-details { background-image: url(../images/zoom_in.png); }
559 558 .icon-report { background-image: url(../images/report.png); }
560 559
561 560 .icon22-projects { background-image: url(../images/22x22/projects.png); }
562 561 .icon22-users { background-image: url(../images/22x22/users.png); }
563 562 .icon22-tracker { background-image: url(../images/22x22/tracker.png); }
564 563 .icon22-role { background-image: url(../images/22x22/role.png); }
565 564 .icon22-workflow { background-image: url(../images/22x22/workflow.png); }
566 565 .icon22-options { background-image: url(../images/22x22/options.png); }
567 566 .icon22-notifications { background-image: url(../images/22x22/notifications.png); }
568 567 .icon22-authent { background-image: url(../images/22x22/authent.png); }
569 568 .icon22-info { background-image: url(../images/22x22/info.png); }
570 569 .icon22-comment { background-image: url(../images/22x22/comment.png); }
571 570 .icon22-package { background-image: url(../images/22x22/package.png); }
572 571 .icon22-settings { background-image: url(../images/22x22/settings.png); }
573 572 .icon22-plugin { background-image: url(../images/22x22/plugin.png); }
574 573
575 574 /***** Media print specific styles *****/
576 575 @media print {
577 576 #top-menu, #header, #main-menu, #sidebar, #footer, .contextual { display:none; }
578 577 #main { background: #fff; }
579 578 #content { width: 99%; margin: 0; padding: 0; border: 0; background: #fff; }
580 579 }
General Comments 0
You need to be logged in to leave comments. Login now