##// END OF EJS Templates
Add autoscroll div for each file diff....
Jean-Philippe Lang -
r1002:49bdf62243dc
parent child
Show More
@@ -1,93 +1,93
1 1 <h2><%= l(:label_revision) %> <%= @rev %>: <%= @path.gsub(/^.*\//, '') %></h2>
2 2
3 3 <!-- Choose view type -->
4 4 <% form_tag({ :controller => 'repositories', :action => 'diff'}, :method => 'get') do %>
5 5 <% params.each do |k, p| %>
6 6 <% if k != "type" %>
7 7 <%= hidden_field_tag(k,p) %>
8 8 <% end %>
9 9 <% end %>
10 10 <p><label><%= l(:label_view_diff) %></label>
11 11 <%= select_tag 'type', options_for_select([[l(:label_diff_inline), "inline"], [l(:label_diff_side_by_side), "sbs"]], @diff_type), :onchange => "if (this.value != '') {this.form.submit()}" %></p>
12 12 <% end %>
13 13
14 <div class="autoscroll">
15 14 <% cache(@cache_key) do %>
16 15 <% @diff.each do |table_file| %>
16 <div class="autoscroll">
17 17 <% if @diff_type == 'sbs' %>
18 18 <table class="filecontent CodeRay">
19 19 <thead>
20 20 <tr>
21 21 <th colspan="4" class="filename">
22 22 <%= table_file.file_name %>
23 23 </th>
24 24 </tr>
25 25 <tr>
26 26 <th colspan="2">@<%= @rev %></th>
27 27 <th colspan="2">@<%= @rev_to %></th>
28 28 </tr>
29 29 </thead>
30 30 <tbody>
31 31 <% table_file.keys.sort.each do |key| %>
32 32 <tr>
33 33 <th class="line-num">
34 34 <%= table_file[key].nb_line_left %>
35 35 </th>
36 36 <td class="line-code <%= table_file[key].type_diff_left %>">
37 37 <pre><%=to_utf8 table_file[key].line_left %></pre>
38 38 </td>
39 39 <th class="line-num">
40 40 <%= table_file[key].nb_line_right %>
41 41 </th>
42 42 <td class="line-code <%= table_file[key].type_diff_right %>">
43 43 <pre><%=to_utf8 table_file[key].line_right %></pre>
44 44 </td>
45 45 </tr>
46 46 <% end %>
47 47 </tbody>
48 48 </table>
49 49
50 50 <% else %>
51 51 <table class="filecontent CodeRay">
52 52 <thead>
53 53 <tr>
54 54 <th colspan="3" class="filename">
55 55 <%= table_file.file_name %>
56 56 </th>
57 57 </tr>
58 58 <tr>
59 59 <th>@<%= @rev %></th>
60 60 <th>@<%= @rev_to %></th>
61 61 <th></th>
62 62 </tr>
63 63 </thead>
64 64 <tbody>
65 65 <% table_file.keys.sort.each do |key, line| %>
66 66 <tr>
67 67 <th class="line-num">
68 68 <%= table_file[key].nb_line_left %>
69 69 </th>
70 70 <th class="line-num">
71 71 <%= table_file[key].nb_line_right %>
72 72 </th>
73 73 <% if table_file[key].line_left.empty? %>
74 74 <td class="line-code <%= table_file[key].type_diff_right %>">
75 75 <pre><%=to_utf8 table_file[key].line_right %></pre>
76 76 </td>
77 77 <% else %>
78 78 <td class="line-code <%= table_file[key].type_diff_left %>">
79 79 <pre><%=to_utf8 table_file[key].line_left %></pre>
80 80 </td>
81 81 <% end %>
82 82 </tr>
83 83 <% end %>
84 84 </tbody>
85 85 </table>
86 86 <% end %>
87 </div>
87 88 <% end %>
88 89 <% end %>
89 </div>
90 90
91 91 <% content_for :header_tags do %>
92 92 <%= stylesheet_link_tag "scm" %>
93 93 <% end %>
@@ -1,492 +1,492
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 #top-menu {background: #2C4056;color: #fff;height:1.5em; padding: 2px 6px 0px 6px;}
11 11 #top-menu a {color: #fff; padding-right: 4px;}
12 12 #account {float:right;}
13 13
14 14 #header {height:5.3em;margin:0;background-color:#507AAA;color:#f8f8f8; padding: 4px 8px 0px 6px; position:relative;}
15 15 #header a {color:#f8f8f8;}
16 16 #quick-search {float:right;}
17 17
18 18 #main-menu {position: absolute; bottom: 0px; left:6px;}
19 19 #main-menu ul {margin: 0; padding: 0;}
20 20 #main-menu li {
21 21 float:left;
22 22 list-style-type:none;
23 23 margin: 0px 10px 0px 0px;
24 24 padding: 0px 0px 0px 0px;
25 25 white-space:nowrap;
26 26 }
27 27 #main-menu li a {
28 28 display: block;
29 29 color: #fff;
30 30 text-decoration: none;
31 31 margin: 0;
32 32 padding: 4px 4px 4px 4px;
33 33 background: #2C4056;
34 34 }
35 35 #main-menu li a:hover {background:#759FCF;}
36 36
37 37 #main {background: url(../images/mainbg.png) repeat-x; background-color:#EEEEEE;}
38 38
39 39 #sidebar{ float: right; width: 17%; position: relative; z-index: 9; min-height: 600px; padding: 0; margin: 0;}
40 40 * html #sidebar{ width: 17%; }
41 41 #sidebar h3{ font-size: 14px; margin-top:14px; color: #666; }
42 42 #sidebar hr{ width: 100%; margin: 0 auto; height: 1px; background: #ccc; border: 0; }
43 43 * html #sidebar hr{ width: 95%; position: relative; left: -6px; color: #ccc; }
44 44
45 45 #content { width: 80%; background: url(../images/contentbg.png) repeat-x; background-color: #fff; margin: 0px; border-right: 1px solid #ddd; padding: 6px 10px 10px 10px; z-index: 10; height:600px; min-height: 600px;}
46 46 * html #content{ width: 80%; padding-left: 0; margin-top: 0px; padding: 6px 10px 10px 10px;}
47 47 html>body #content {
48 48 height: auto;
49 49 min-height: 600px;
50 50 }
51 51
52 52 #main.nosidebar #sidebar{ display: none; }
53 53 #main.nosidebar #content{ width: auto; border-right: 0; }
54 54
55 55 #footer {clear: both; border-top: 1px solid #bbb; font-size: 0.9em; color: #aaa; padding: 5px; text-align:center; background:#fff;}
56 56
57 57 #login-form table {margin-top:5em; padding:1em; margin-left: auto; margin-right: auto; border: 2px solid #FDBF3B; background-color:#FFEBC1; }
58 58 #login-form table td {padding: 6px;}
59 59 #login-form label {font-weight: bold;}
60 60
61 61 .clear:after{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }
62 62
63 63 /***** Links *****/
64 64 a, a:link, a:visited{ color: #2A5685; text-decoration: none; }
65 65 a:hover, a:active{ color: #c61a1a; text-decoration: underline;}
66 66 a img{ border: 0; }
67 67
68 68 /***** Tables *****/
69 69 table.list { border: 1px solid #e4e4e4; border-collapse: collapse; width: 100%; margin-bottom: 4px; }
70 70 table.list th { background-color:#EEEEEE; padding: 4px; white-space:nowrap; }
71 71 table.list td { overflow: hidden; text-overflow: ellipsis; vertical-align: top;}
72 72 table.list td.id { width: 2%; text-align: center;}
73 73 table.list td.checkbox { width: 15px; padding: 0px;}
74 74
75 75 tr.issue { text-align: center; white-space: nowrap; }
76 76 tr.issue td.subject, tr.issue td.category { white-space: normal; }
77 77 tr.issue td.subject { text-align: left; }
78 78 tr.issue td.done_ratio table.progress { margin-left:auto; margin-right: auto;}
79 79
80 80 tr.message { height: 2.6em; }
81 81 tr.message td.last_message { font-size: 80%; }
82 82 tr.message.locked td.subject a { background-image: url(../images/locked.png); }
83 83 tr.message.sticky td.subject a { background-image: url(../images/sticky.png); font-weight: bold; }
84 84
85 85 table.list tbody tr:hover { background-color:#ffffdd; }
86 86 table td {padding:2px;}
87 87 table p {margin:0;}
88 88 .odd {background-color:#f6f7f8;}
89 89 .even {background-color: #fff;}
90 90
91 91 .highlight { background-color: #FCFD8D;}
92 92 .highlight.token-1 { background-color: #faa;}
93 93 .highlight.token-2 { background-color: #afa;}
94 94 .highlight.token-3 { background-color: #aaf;}
95 95
96 96 .box{
97 97 padding:6px;
98 98 margin-bottom: 10px;
99 99 background-color:#f6f6f6;
100 100 color:#505050;
101 101 line-height:1.5em;
102 102 border: 1px solid #e4e4e4;
103 103 }
104 104
105 105 div.square {
106 106 border: 1px solid #999;
107 107 float: left;
108 108 margin: .3em .4em 0 .4em;
109 109 overflow: hidden;
110 110 width: .6em; height: .6em;
111 111 }
112 112
113 113 .contextual {float:right; white-space: nowrap; line-height:1.4em;margin-top:5px;font-size:0.9em;}
114 114 .contextual input {font-size:0.9em;}
115 115
116 116 .splitcontentleft{float:left; width:49%;}
117 117 .splitcontentright{float:right; width:49%;}
118 118 form {display: inline;}
119 119 input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;}
120 120 fieldset {border: 1px solid #e4e4e4; margin:0;}
121 121 legend {color: #484848;}
122 122 hr { width: 100%; height: 1px; background: #ccc; border: 0;}
123 123 textarea.wiki-edit { width: 99%; }
124 124 li p {margin-top: 0;}
125 125 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
126 .autoscroll {overflow-x: auto; padding:1px; width:100%;}
126 .autoscroll {overflow-x: auto; padding:1px; width:100%; margin-bottom: 1.2em;}
127 127 #user_firstname, #user_lastname, #user_mail, #my_account_form select { width: 90%; }
128 128
129 129 /***** Tabular forms ******/
130 130 .tabular p{
131 131 margin: 0;
132 132 padding: 5px 0 8px 0;
133 133 padding-left: 180px; /*width of left column containing the label elements*/
134 134 height: 1%;
135 135 clear:left;
136 136 }
137 137
138 138 .tabular label{
139 139 font-weight: bold;
140 140 float: left;
141 141 text-align: right;
142 142 margin-left: -180px; /*width of left column*/
143 143 width: 175px; /*width of labels. Should be smaller than left column to create some right
144 144 margin*/
145 145 }
146 146
147 147 .tabular label.floating{
148 148 font-weight: normal;
149 149 margin-left: 0px;
150 150 text-align: left;
151 151 width: 200px;
152 152 }
153 153
154 154 #preview fieldset {margin-top: 1em; background: url(../images/draft.png)}
155 155
156 156 .tabular.settings p{ padding-left: 300px; }
157 157 .tabular.settings label{ margin-left: -300px; width: 295px; }
158 158
159 159 .required {color: #bb0000;}
160 160 .summary {font-style: italic;}
161 161
162 162 div.attachments p { margin:4px 0 2px 0; }
163 163
164 164 /***** Flash & error messages ****/
165 165 #errorExplanation, div.flash, .nodata {
166 166 padding: 4px 4px 4px 30px;
167 167 margin-bottom: 12px;
168 168 font-size: 1.1em;
169 169 border: 2px solid;
170 170 }
171 171
172 172 div.flash {margin-top: 8px;}
173 173
174 174 div.flash.error, #errorExplanation {
175 175 background: url(../images/false.png) 8px 5px no-repeat;
176 176 background-color: #ffe3e3;
177 177 border-color: #dd0000;
178 178 color: #550000;
179 179 }
180 180
181 181 div.flash.notice {
182 182 background: url(../images/true.png) 8px 5px no-repeat;
183 183 background-color: #dfffdf;
184 184 border-color: #9fcf9f;
185 185 color: #005f00;
186 186 }
187 187
188 188 .nodata {
189 189 text-align: center;
190 190 background-color: #FFEBC1;
191 191 border-color: #FDBF3B;
192 192 color: #A6750C;
193 193 }
194 194
195 195 #errorExplanation ul { font-size: 0.9em;}
196 196
197 197 /***** Ajax indicator ******/
198 198 #ajax-indicator {
199 199 position: absolute; /* fixed not supported by IE */
200 200 background-color:#eee;
201 201 border: 1px solid #bbb;
202 202 top:35%;
203 203 left:40%;
204 204 width:20%;
205 205 font-weight:bold;
206 206 text-align:center;
207 207 padding:0.6em;
208 208 z-index:100;
209 209 filter:alpha(opacity=50);
210 210 -moz-opacity:0.5;
211 211 opacity: 0.5;
212 212 -khtml-opacity: 0.5;
213 213 }
214 214
215 215 html>body #ajax-indicator { position: fixed; }
216 216
217 217 #ajax-indicator span {
218 218 background-position: 0% 40%;
219 219 background-repeat: no-repeat;
220 220 background-image: url(../images/loading.gif);
221 221 padding-left: 26px;
222 222 vertical-align: bottom;
223 223 }
224 224
225 225 /***** Calendar *****/
226 226 table.cal {border-collapse: collapse; width: 100%; margin: 8px 0 6px 0;border: 1px solid #d7d7d7;}
227 227 table.cal thead th {width: 14%;}
228 228 table.cal tbody tr {height: 100px;}
229 229 table.cal th { background-color:#EEEEEE; padding: 4px; }
230 230 table.cal td {border: 1px solid #d7d7d7; vertical-align: top; font-size: 0.9em;}
231 231 table.cal td p.day-num {font-size: 1.1em; text-align:right;}
232 232 table.cal td.odd p.day-num {color: #bbb;}
233 233 table.cal td.today {background:#ffffdd;}
234 234 table.cal td.today p.day-num {font-weight: bold;}
235 235
236 236 /***** Tooltips ******/
237 237 .tooltip{position:relative;z-index:24;}
238 238 .tooltip:hover{z-index:25;color:#000;}
239 239 .tooltip span.tip{display: none; text-align:left;}
240 240
241 241 div.tooltip:hover span.tip{
242 242 display:block;
243 243 position:absolute;
244 244 top:12px; left:24px; width:270px;
245 245 border:1px solid #555;
246 246 background-color:#fff;
247 247 padding: 4px;
248 248 font-size: 0.8em;
249 249 color:#505050;
250 250 }
251 251
252 252 /***** Progress bar *****/
253 253 table.progress {
254 254 border: 1px solid #D7D7D7;
255 255 border-collapse: collapse;
256 256 border-spacing: 0pt;
257 257 empty-cells: show;
258 258 text-align: center;
259 259 float:left;
260 260 margin: 1px 6px 1px 0px;
261 261 }
262 262
263 263 table.progress td { height: 0.9em; }
264 264 table.progress td.closed { background: #BAE0BA none repeat scroll 0%; }
265 265 table.progress td.done { background: #DEF0DE none repeat scroll 0%; }
266 266 table.progress td.open { background: #FFF none repeat scroll 0%; }
267 267 p.pourcent {font-size: 80%;}
268 268 p.progress-info {clear: left; font-style: italic; font-size: 80%;}
269 269
270 270 div#status_by { float:right; width:380px; margin-left: 16px; margin-bottom: 16px; }
271 271
272 272 /***** Tabs *****/
273 273 #content .tabs{height: 2.6em;}
274 274 #content .tabs ul{margin:0;}
275 275 #content .tabs ul li{
276 276 float:left;
277 277 list-style-type:none;
278 278 white-space:nowrap;
279 279 margin-right:8px;
280 280 background:#fff;
281 281 }
282 282 #content .tabs ul li a{
283 283 display:block;
284 284 font-size: 0.9em;
285 285 text-decoration:none;
286 286 line-height:1em;
287 287 padding:4px;
288 288 border: 1px solid #c0c0c0;
289 289 }
290 290
291 291 #content .tabs ul li a.selected, #content .tabs ul li a:hover{
292 292 background-color: #507AAA;
293 293 border: 1px solid #507AAA;
294 294 color: #fff;
295 295 text-decoration:none;
296 296 }
297 297
298 298 /***** Diff *****/
299 299 .diff_out { background: #fcc; }
300 300 .diff_in { background: #cfc; }
301 301
302 302 /***** Wiki *****/
303 303 div.wiki table {
304 304 border: 1px solid #505050;
305 305 border-collapse: collapse;
306 306 }
307 307
308 308 div.wiki table, div.wiki td, div.wiki th {
309 309 border: 1px solid #bbb;
310 310 padding: 4px;
311 311 }
312 312
313 313 div.wiki .external {
314 314 background-position: 0% 60%;
315 315 background-repeat: no-repeat;
316 316 padding-left: 12px;
317 317 background-image: url(../images/external.png);
318 318 }
319 319
320 320 div.wiki a.new {
321 321 color: #b73535;
322 322 }
323 323
324 324 div.wiki pre {
325 325 margin: 1em 1em 1em 1.6em;
326 326 padding: 2px;
327 327 background-color: #fafafa;
328 328 border: 1px solid #dadada;
329 329 width:95%;
330 330 overflow-x: auto;
331 331 }
332 332
333 333 div.wiki div.toc {
334 334 background-color: #ffffdd;
335 335 border: 1px solid #e4e4e4;
336 336 padding: 4px;
337 337 line-height: 1.2em;
338 338 margin-bottom: 12px;
339 339 margin-right: 12px;
340 340 display: table
341 341 }
342 342 * html div.wiki div.toc { width: 50%; } /* IE6 doesn't autosize div */
343 343
344 344 div.wiki div.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; }
345 345 div.wiki div.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; }
346 346
347 347 div.wiki div.toc a {
348 348 display: block;
349 349 font-size: 0.9em;
350 350 font-weight: normal;
351 351 text-decoration: none;
352 352 color: #606060;
353 353 }
354 354 div.wiki div.toc a:hover { color: #c61a1a; text-decoration: underline;}
355 355
356 356 div.wiki div.toc a.heading2 { margin-left: 6px; }
357 357 div.wiki div.toc a.heading3 { margin-left: 12px; font-size: 0.8em; }
358 358
359 359 /***** My page layout *****/
360 360 .block-receiver {
361 361 border:1px dashed #c0c0c0;
362 362 margin-bottom: 20px;
363 363 padding: 15px 0 15px 0;
364 364 }
365 365
366 366 .mypage-box {
367 367 margin:0 0 20px 0;
368 368 color:#505050;
369 369 line-height:1.5em;
370 370 }
371 371
372 372 .handle {
373 373 cursor: move;
374 374 }
375 375
376 376 a.close-icon {
377 377 display:block;
378 378 margin-top:3px;
379 379 overflow:hidden;
380 380 width:12px;
381 381 height:12px;
382 382 background-repeat: no-repeat;
383 383 cursor:pointer;
384 384 background-image:url('../images/close.png');
385 385 }
386 386
387 387 a.close-icon:hover {
388 388 background-image:url('../images/close_hl.png');
389 389 }
390 390
391 391 /***** Gantt chart *****/
392 392 .gantt_hdr {
393 393 position:absolute;
394 394 top:0;
395 395 height:16px;
396 396 border-top: 1px solid #c0c0c0;
397 397 border-bottom: 1px solid #c0c0c0;
398 398 border-right: 1px solid #c0c0c0;
399 399 text-align: center;
400 400 overflow: hidden;
401 401 }
402 402
403 403 .task {
404 404 position: absolute;
405 405 height:8px;
406 406 font-size:0.8em;
407 407 color:#888;
408 408 padding:0;
409 409 margin:0;
410 410 line-height:0.8em;
411 411 }
412 412
413 413 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
414 414 .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; }
415 415 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
416 416 .milestone { background-image:url(../images/milestone.png); background-repeat: no-repeat; border: 0; }
417 417
418 418 /***** Icons *****/
419 419 .icon {
420 420 background-position: 0% 40%;
421 421 background-repeat: no-repeat;
422 422 padding-left: 20px;
423 423 padding-top: 2px;
424 424 padding-bottom: 3px;
425 425 }
426 426
427 427 .icon22 {
428 428 background-position: 0% 40%;
429 429 background-repeat: no-repeat;
430 430 padding-left: 26px;
431 431 line-height: 22px;
432 432 vertical-align: middle;
433 433 }
434 434
435 435 .icon-add { background-image: url(../images/add.png); }
436 436 .icon-edit { background-image: url(../images/edit.png); }
437 437 .icon-copy { background-image: url(../images/copy.png); }
438 438 .icon-del { background-image: url(../images/delete.png); }
439 439 .icon-move { background-image: url(../images/move.png); }
440 440 .icon-save { background-image: url(../images/save.png); }
441 441 .icon-cancel { background-image: url(../images/cancel.png); }
442 442 .icon-pdf { background-image: url(../images/pdf.png); }
443 443 .icon-csv { background-image: url(../images/csv.png); }
444 444 .icon-html { background-image: url(../images/html.png); }
445 445 .icon-image { background-image: url(../images/image.png); }
446 446 .icon-txt { background-image: url(../images/txt.png); }
447 447 .icon-file { background-image: url(../images/file.png); }
448 448 .icon-folder { background-image: url(../images/folder.png); }
449 449 .open .icon-folder { background-image: url(../images/folder_open.png); }
450 450 .icon-package { background-image: url(../images/package.png); }
451 451 .icon-home { background-image: url(../images/home.png); }
452 452 .icon-user { background-image: url(../images/user.png); }
453 453 .icon-mypage { background-image: url(../images/user_page.png); }
454 454 .icon-admin { background-image: url(../images/admin.png); }
455 455 .icon-projects { background-image: url(../images/projects.png); }
456 456 .icon-logout { background-image: url(../images/logout.png); }
457 457 .icon-help { background-image: url(../images/help.png); }
458 458 .icon-attachment { background-image: url(../images/attachment.png); }
459 459 .icon-index { background-image: url(../images/index.png); }
460 460 .icon-history { background-image: url(../images/history.png); }
461 461 .icon-feed { background-image: url(../images/feed.png); }
462 462 .icon-time { background-image: url(../images/time.png); }
463 463 .icon-stats { background-image: url(../images/stats.png); }
464 464 .icon-warning { background-image: url(../images/warning.png); }
465 465 .icon-fav { background-image: url(../images/fav.png); }
466 466 .icon-fav-off { background-image: url(../images/fav_off.png); }
467 467 .icon-reload { background-image: url(../images/reload.png); }
468 468 .icon-lock { background-image: url(../images/locked.png); }
469 469 .icon-unlock { background-image: url(../images/unlock.png); }
470 470 .icon-note { background-image: url(../images/note.png); }
471 471 .icon-checked { background-image: url(../images/true.png); }
472 472
473 473 .icon22-projects { background-image: url(../images/22x22/projects.png); }
474 474 .icon22-users { background-image: url(../images/22x22/users.png); }
475 475 .icon22-tracker { background-image: url(../images/22x22/tracker.png); }
476 476 .icon22-role { background-image: url(../images/22x22/role.png); }
477 477 .icon22-workflow { background-image: url(../images/22x22/workflow.png); }
478 478 .icon22-options { background-image: url(../images/22x22/options.png); }
479 479 .icon22-notifications { background-image: url(../images/22x22/notifications.png); }
480 480 .icon22-authent { background-image: url(../images/22x22/authent.png); }
481 481 .icon22-info { background-image: url(../images/22x22/info.png); }
482 482 .icon22-comment { background-image: url(../images/22x22/comment.png); }
483 483 .icon22-package { background-image: url(../images/22x22/package.png); }
484 484 .icon22-settings { background-image: url(../images/22x22/settings.png); }
485 485 .icon22-plugin { background-image: url(../images/22x22/plugin.png); }
486 486
487 487 /***** Media print specific styles *****/
488 488 @media print {
489 489 #top-menu, #header, #main-menu, #sidebar, #footer, .contextual { display:none; }
490 490 #main { background: #fff; }
491 491 #content { width: 99%; margin: 0; padding: 0; border: 0; background: #fff; }
492 492 }
General Comments 0
You need to be logged in to leave comments. Login now