##// END OF EJS Templates
Sligth changes on my page issue tables and wiki history, changesets tables....
Jean-Philippe Lang -
r797:57d3dd3b80ed
parent child
Show More
@@ -1,20 +1,20
1 1 <table class="list">
2 2 <thead><tr>
3 3 <th></th>
4 4 <%= sort_header_tag("#{Issue.table_name}.id", :caption => '#') %>
5 5 <% query.columns.each do |column| %>
6 6 <%= column_header(column) %>
7 7 <% end %>
8 8 </tr></thead>
9 9 <tbody>
10 10 <% issues.each do |issue| %>
11 11 <tr class="issue <%= cycle('odd', 'even') %>">
12 <th class="checkbox"><%= check_box_tag "issue_ids[]", issue.id, false, :id => "issue_#{issue.id}" %></th>
12 <td class="checkbox"><%= check_box_tag "issue_ids[]", issue.id, false, :id => "issue_#{issue.id}" %></td>
13 13 <td><%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %></td>
14 14 <% query.columns.each do |column| %>
15 15 <%= content_tag 'td', column_content(column, issue), :class => column.name %>
16 16 <% end %>
17 17 </tr>
18 18 <% end %>
19 19 </tbody>
20 20 </table>
@@ -1,25 +1,25
1 1 <% if issues.length > 0 %>
2 2 <table class="list">
3 3 <thead><tr>
4 4 <th>#</th>
5 5 <th><%=l(:field_tracker)%></th>
6 6 <th><%=l(:field_subject)%></th>
7 7 </tr></thead>
8 8 <tbody>
9 9 <% for issue in issues %>
10 10 <tr class="<%= cycle("odd", "even") %>">
11 <th align="center">
11 <td class="id">
12 12 <%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %>
13 </th>
13 </td>
14 14 <td><p class="small"><%= issue.project.name %> - <%= issue.tracker.name %><br />
15 15 <%= issue.status.name %> - <%= format_time(issue.updated_on) %></p></td>
16 16 <td>
17 17 <p class="small"><%= link_to h(issue.subject), :controller => 'issues', :action => 'show', :id => issue %></p>
18 18 </td>
19 19 </tr>
20 20 <% end %>
21 21 </tbody>
22 22 </table>
23 23 <% else %>
24 24 <i><%=l(:label_no_data)%></i>
25 25 <% end %> No newline at end of file
@@ -1,30 +1,30
1 1 <% form_tag({:controller => 'repositories', :action => 'diff', :id => @project}, :method => :get) do %>
2 2 <table class="list">
3 3 <thead><tr>
4 4 <th>#</th>
5 5 <th></th>
6 6 <th></th>
7 7 <th><%= l(:label_date) %></th>
8 8 <th><%= l(:field_author) %></th>
9 9 <th><%= l(:field_comments) %></th>
10 10 </tr></thead>
11 11 <tbody>
12 12 <% show_diff = entry && entry.is_file? && revisions.size > 1 %>
13 13 <% line_num = 1 %>
14 14 <% revisions.each do |revision| %>
15 15 <% changeset = revision.is_a?(Change) ? revision.changeset : revision %>
16 16 <tr class="<%= cycle 'odd', 'even' %>">
17 <th align="center" style="width:3em;"><%= link_to (revision.revision || changeset.revision), :action => 'revision', :id => project, :rev => changeset.revision %></th>
18 <td align="center" style="width:1em;"><%= radio_button_tag('rev', changeset.revision, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('cbto-#{line_num+1}').checked=true;") if show_diff && (line_num < revisions.size) %></td>
19 <td align="center" style="width:1em;"><%= radio_button_tag('rev_to', changeset.revision, (line_num==2), :id => "cbto-#{line_num}", :onclick => "if ($('cb-#{line_num}').checked==true) {$('cb-#{line_num-1}').checked=true;}") if show_diff && (line_num > 1) %></td>
17 <td class="id"><%= link_to (revision.revision || changeset.revision), :action => 'revision', :id => project, :rev => changeset.revision %></th>
18 <td class="checkbox"><%= radio_button_tag('rev', changeset.revision, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('cbto-#{line_num+1}').checked=true;") if show_diff && (line_num < revisions.size) %></td>
19 <td class="checkbox"><%= radio_button_tag('rev_to', changeset.revision, (line_num==2), :id => "cbto-#{line_num}", :onclick => "if ($('cb-#{line_num}').checked==true) {$('cb-#{line_num-1}').checked=true;}") if show_diff && (line_num > 1) %></td>
20 20 <td align="center" style="width:15%"><%= format_time(changeset.committed_on) %></td>
21 21 <td align="center" style="width:15%"><em><%=h changeset.committer %></em></td>
22 22 <td align="left"><%= textilizable(changeset.comments) %></td>
23 23 </tr>
24 24 <% line_num += 1 %>
25 25 <% end %>
26 26 </tbody>
27 27 </table>
28 28 <%= hidden_field_tag 'path', path %>
29 29 <%= submit_tag(l(:label_view_diff), :class => 'small', :name => nil) if show_diff %>
30 30 <% end %>
@@ -1,34 +1,34
1 1 <h2><%= @page.pretty_title %></h2>
2 2
3 3 <h3><%= l(:label_history) %></h3>
4 4
5 5 <% form_tag({:action => "diff"}, :method => :get) do %>
6 6 <table class="list">
7 7 <thead><tr>
8 8 <th>#</th>
9 9 <th></th>
10 10 <th></th>
11 11 <th><%= l(:field_updated_on) %></th>
12 12 <th><%= l(:field_author) %></th>
13 13 <th><%= l(:field_comments) %></th>
14 14 </tr></thead>
15 15 <tbody>
16 16 <% show_diff = @versions.size > 1 %>
17 17 <% line_num = 1 %>
18 18 <% @versions.each do |ver| %>
19 19 <tr class="<%= cycle("odd", "even") %>">
20 <th align="center"><%= link_to ver.version, :action => 'index', :page => @page.title, :version => ver.version %></th>
21 <td align="center" width="1%"><%= radio_button_tag('version', ver.version, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('cbto-#{line_num+1}').checked=true;") if show_diff && (line_num < @versions.size) %></td>
22 <td align="center" width="1%"><%= radio_button_tag('version_from', ver.version, (line_num==2), :id => "cbto-#{line_num}", :onclick => "if ($('cb-#{line_num}').checked==true || $('version_from').value > #{ver.version}) {$('cb-#{line_num-1}').checked=true;}") if show_diff && (line_num > 1) %></td>
20 <td class="id"><%= link_to ver.version, :action => 'index', :page => @page.title, :version => ver.version %></th>
21 <td class="checkbox"><%= radio_button_tag('version', ver.version, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('cbto-#{line_num+1}').checked=true;") if show_diff && (line_num < @versions.size) %></td>
22 <td class="checkbox"><%= radio_button_tag('version_from', ver.version, (line_num==2), :id => "cbto-#{line_num}", :onclick => "if ($('cb-#{line_num}').checked==true || $('version_from').value > #{ver.version}) {$('cb-#{line_num-1}').checked=true;}") if show_diff && (line_num > 1) %></td>
23 23 <td align="center"><%= format_time(ver.updated_on) %></td>
24 24 <td><em><%= ver.author ? ver.author.name : "anonyme" %></em></td>
25 25 <td><%=h ver.comments %></td>
26 26 </tr>
27 27 <% line_num += 1 %>
28 28 <% end %>
29 29 </tbody>
30 30 </table>
31 31 <%= submit_tag l(:label_view_diff), :class => 'small' %>
32 32 <%= pagination_links_full @version_pages, :page_param => :p %>
33 33 [ <%= @version_pages.current.first_item %> - <%= @version_pages.current.last_item %> / <%= @version_count %> ]
34 34 <% end %>
@@ -1,464 +1,465
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;}
15 15 #header a {color:#f8f8f8;}
16 16 #quick-search {float:right;}
17 17
18 18 #main-menu {position: absolute; top: 5.5em; 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; position: relative; 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 table.list tbody th { padding: 0px; }
72 71 table.list td { overflow: hidden; text-overflow: ellipsis; vertical-align: top;}
72 table.list td.id { width: 2%; text-align: center;}
73 table.list td.checkbox { width: 15px; padding: 0px;}
74
75 tr.issue { text-align: center; white-space: nowrap; }
76 tr.issue td.subject, tr.issue td.category { white-space: normal; }
77 tr.issue td.subject { text-align: left; }
78
73 79 table.list tbody tr:hover { background-color:#ffffdd; }
74 80 table td {padding:2px;}
75 81 table p {margin:0;}
76 82 .odd {background-color:#f6f7f8;}
77 83 .even {background-color: #fff;}
78 84
79 85 .highlight { background-color: #FCFD8D;}
80 86
81 87 .box{
82 88 padding:6px;
83 89 margin-bottom: 10px;
84 90 background-color:#f6f6f6;
85 91 color:#505050;
86 92 line-height:1.5em;
87 93 border: 1px solid #e4e4e4;
88 94 }
89 95
90 96 div.square {
91 97 border: 1px solid #999;
92 98 float: left;
93 99 margin: .3em .4em 0 .4em;
94 100 overflow: hidden;
95 101 width: .6em; height: .6em;
96 102 }
97 103
98 104 .contextual {float:right; white-space: nowrap; line-height:1.4em;margin-top:5px;font-size:0.9em;}
99 105 .splitcontentleft{float:left; width:49%;}
100 106 .splitcontentright{float:right; width:49%;}
101 107 form {display: inline;}
102 108 input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;}
103 109 fieldset {border: 1px solid #e4e4e4; margin:0;}
110 legend {color: #484848;}
104 111 hr { width: 100%; height: 1px; background: #ccc; border: 0;}
105 112 textarea.wiki-edit { width: 99%; }
106 113 li p {margin-top: 0;}
107 114 div.issue {background:#ffffdd; padding:6px; margin-bottom:6px;border: 1px solid #d7d7d7;}
108 115 .autoscroll {overflow-x: auto; padding:1px; width:100%;}
109 116
110 117 /***** Tabular forms ******/
111 118 .tabular p{
112 119 margin: 0;
113 120 padding: 5px 0 8px 0;
114 121 padding-left: 180px; /*width of left column containing the label elements*/
115 122 height: 1%;
116 123 clear:left;
117 124 }
118 125
119 126 .tabular label{
120 127 font-weight: bold;
121 128 float: left;
122 129 text-align: right;
123 130 margin-left: -180px; /*width of left column*/
124 131 width: 175px; /*width of labels. Should be smaller than left column to create some right
125 132 margin*/
126 133 }
127 134
128 135 .tabular label.floating{
129 136 font-weight: normal;
130 137 margin-left: 0px;
131 138 text-align: left;
132 139 width: 200px;
133 140 }
134 141
135 142 #settings .tabular p{ padding-left: 300px; }
136 143 #settings .tabular label{ margin-left: -300px; width: 295px; }
137 144
138 145 .required {color: #bb0000;}
139 146 .summary {font-style: italic;}
140 147
141 148 div.attachments p { margin:4px 0 2px 0; }
142 149
143 /***** Issue list ****/
144 tr.issue { text-align: center; white-space: nowrap; }
145 tr.issue th.checkbox { width: 15px; }
146 tr.issue td.subject, tr.issue td.category { white-space: normal; }
147 tr.issue td.subject { text-align: left; }
148
149 150 /***** Flash & error messages ****/
150 151 #flash div, #errorExplanation, .nodata {
151 152 padding: 4px 4px 4px 30px;
152 153 margin-bottom: 12px;
153 154 font-size: 1.1em;
154 155 border: 2px solid;
155 156 }
156 157
157 158 #flash div {margin-top: 6px;}
158 159
159 160 #flash div.error, #errorExplanation {
160 161 background: url(../images/false.png) 8px 5px no-repeat;
161 162 background-color: #ffe3e3;
162 163 border-color: #dd0000;
163 164 color: #550000;
164 165 }
165 166
166 167 #flash div.notice {
167 168 background: url(../images/true.png) 8px 5px no-repeat;
168 169 background-color: #dfffdf;
169 170 border-color: #9fcf9f;
170 171 color: #005f00;
171 172 }
172 173
173 174 .nodata {
174 175 text-align: center;
175 176 background-color: #FFEBC1;
176 177 border-color: #FDBF3B;
177 178 color: #A6750C;
178 179 }
179 180
180 181 #errorExplanation ul { font-size: 0.9em;}
181 182
182 183 /***** Ajax indicator ******/
183 184 #ajax-indicator {
184 185 position: absolute; /* fixed not supported by IE */
185 186 background-color:#eee;
186 187 border: 1px solid #bbb;
187 188 top:35%;
188 189 left:40%;
189 190 width:20%;
190 191 font-weight:bold;
191 192 text-align:center;
192 193 padding:0.6em;
193 194 z-index:100;
194 195 filter:alpha(opacity=50);
195 196 -moz-opacity:0.5;
196 197 opacity: 0.5;
197 198 -khtml-opacity: 0.5;
198 199 }
199 200
200 201 html>body #ajax-indicator { position: fixed; }
201 202
202 203 #ajax-indicator span {
203 204 background-position: 0% 40%;
204 205 background-repeat: no-repeat;
205 206 background-image: url(../images/loading.gif);
206 207 padding-left: 26px;
207 208 vertical-align: bottom;
208 209 }
209 210
210 211 /***** Calendar *****/
211 212 table.cal {border-collapse: collapse; width: 100%; margin: 8px 0 6px 0;border: 1px solid #d7d7d7;}
212 213 table.cal th { background-color:#EEEEEE; padding: 4px; }
213 214 table.cal td {border: 1px solid #d7d7d7;}
214 215 table.cal td.today {background:#ffffdd;}
215 216
216 217 /***** Tooltips ******/
217 218 .tooltip{position:relative;z-index:24;}
218 219 .tooltip:hover{z-index:25;color:#000;}
219 220 .tooltip span.tip{display: none; text-align:left;}
220 221
221 222 div.tooltip:hover span.tip{
222 223 display:block;
223 224 position:absolute;
224 225 top:12px; left:24px; width:270px;
225 226 border:1px solid #555;
226 227 background-color:#fff;
227 228 padding: 4px;
228 229 font-size: 0.8em;
229 230 color:#505050;
230 231 }
231 232
232 233 /***** Progress bar *****/
233 234 .progress {
234 235 border: 1px solid #D7D7D7;
235 236 border-collapse: collapse;
236 237 border-spacing: 0pt;
237 238 empty-cells: show;
238 239 padding: 3px;
239 240 width: 40em;
240 241 text-align: center;
241 242 }
242 243
243 244 .progress td { height: 1em; }
244 245 .progress .closed { background: #BAE0BA none repeat scroll 0%; }
245 246 .progress .open { background: #FFF none repeat scroll 0%; }
246 247
247 248 /***** Tabs *****/
248 249 #content .tabs{height: 2.6em;}
249 250 #content .tabs ul{margin:0;}
250 251 #content .tabs ul li{
251 252 float:left;
252 253 list-style-type:none;
253 254 white-space:nowrap;
254 255 margin-right:8px;
255 256 background:#fff;
256 257 }
257 258 #content .tabs ul li a{
258 259 display:block;
259 260 font-size: 0.9em;
260 261 text-decoration:none;
261 262 line-height:1em;
262 263 padding:4px;
263 264 border: 1px solid #c0c0c0;
264 265 }
265 266
266 267 #content .tabs ul li a.selected, #content .tabs ul li a:hover{
267 268 background-color: #507AAA;
268 269 border: 1px solid #507AAA;
269 270 color: #fff;
270 271 text-decoration:none;
271 272 }
272 273
273 274 /***** Diff *****/
274 275 .diff_out { background: #fcc; }
275 276 .diff_in { background: #cfc; }
276 277
277 278 /***** Wiki *****/
278 279 div.wiki table {
279 280 border: 1px solid #505050;
280 281 border-collapse: collapse;
281 282 }
282 283
283 284 div.wiki table, div.wiki td, div.wiki th {
284 285 border: 1px solid #bbb;
285 286 padding: 4px;
286 287 }
287 288
288 289 div.wiki .external {
289 290 background-position: 0% 60%;
290 291 background-repeat: no-repeat;
291 292 padding-left: 12px;
292 293 background-image: url(../images/external.png);
293 294 }
294 295
295 296 div.wiki a.new {
296 297 color: #b73535;
297 298 }
298 299
299 300 div.wiki pre {
300 301 margin: 1em 1em 1em 1.6em;
301 302 padding: 2px;
302 303 background-color: #fafafa;
303 304 border: 1px solid #dadada;
304 305 width:95%;
305 306 overflow-x: auto;
306 307 }
307 308
308 309 div.wiki div.toc {
309 310 background-color: #ffffdd;
310 311 border: 1px solid #e4e4e4;
311 312 padding: 4px;
312 313 line-height: 1.2em;
313 314 margin-bottom: 12px;
314 315 margin-right: 12px;
315 316 display: table
316 317 }
317 318 * html div.wiki div.toc { width: 50%; } /* IE6 doesn't autosize div */
318 319
319 320 div.wiki div.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; }
320 321 div.wiki div.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; }
321 322
322 323 div.wiki div.toc a {
323 324 display: block;
324 325 font-size: 0.9em;
325 326 font-weight: normal;
326 327 text-decoration: none;
327 328 color: #606060;
328 329 }
329 330 div.wiki div.toc a:hover { color: #c61a1a; text-decoration: underline;}
330 331
331 332 div.wiki div.toc a.heading2 { margin-left: 6px; }
332 333 div.wiki div.toc a.heading3 { margin-left: 12px; font-size: 0.8em; }
333 334
334 335 /***** My page layout *****/
335 336 .block-receiver {
336 337 border:1px dashed #c0c0c0;
337 338 margin-bottom: 20px;
338 339 padding: 15px 0 15px 0;
339 340 }
340 341
341 342 .mypage-box {
342 343 margin:0 0 20px 0;
343 344 color:#505050;
344 345 line-height:1.5em;
345 346 }
346 347
347 348 .handle {
348 349 cursor: move;
349 350 }
350 351
351 352 a.close-icon {
352 353 display:block;
353 354 margin-top:3px;
354 355 overflow:hidden;
355 356 width:12px;
356 357 height:12px;
357 358 background-repeat: no-repeat;
358 359 cursor:pointer;
359 360 background-image:url('../images/close.png');
360 361 }
361 362
362 363 a.close-icon:hover {
363 364 background-image:url('../images/close_hl.png');
364 365 }
365 366
366 367 /***** Gantt chart *****/
367 368 .gantt_hdr {
368 369 position:absolute;
369 370 top:0;
370 371 height:16px;
371 372 border-top: 1px solid #c0c0c0;
372 373 border-bottom: 1px solid #c0c0c0;
373 374 border-right: 1px solid #c0c0c0;
374 375 text-align: center;
375 376 overflow: hidden;
376 377 }
377 378
378 379 .task {
379 380 position: absolute;
380 381 height:8px;
381 382 font-size:0.8em;
382 383 color:#888;
383 384 padding:0;
384 385 margin:0;
385 386 line-height:0.8em;
386 387 }
387 388
388 389 .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; }
389 390 .task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; }
390 391 .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; }
391 392 .milestone { background-image:url(../images/milestone.png); background-repeat: no-repeat; border: 0; }
392 393
393 394 /***** Icons *****/
394 395 .icon {
395 396 background-position: 0% 40%;
396 397 background-repeat: no-repeat;
397 398 padding-left: 20px;
398 399 padding-top: 2px;
399 400 padding-bottom: 3px;
400 401 }
401 402
402 403 .icon22 {
403 404 background-position: 0% 40%;
404 405 background-repeat: no-repeat;
405 406 padding-left: 26px;
406 407 line-height: 22px;
407 408 vertical-align: middle;
408 409 }
409 410
410 411 .icon-add { background-image: url(../images/add.png); }
411 412 .icon-edit { background-image: url(../images/edit.png); }
412 413 .icon-del { background-image: url(../images/delete.png); }
413 414 .icon-move { background-image: url(../images/move.png); }
414 415 .icon-save { background-image: url(../images/save.png); }
415 416 .icon-cancel { background-image: url(../images/cancel.png); }
416 417 .icon-pdf { background-image: url(../images/pdf.png); }
417 418 .icon-csv { background-image: url(../images/csv.png); }
418 419 .icon-html { background-image: url(../images/html.png); }
419 420 .icon-image { background-image: url(../images/image.png); }
420 421 .icon-txt { background-image: url(../images/txt.png); }
421 422 .icon-file { background-image: url(../images/file.png); }
422 423 .icon-folder { background-image: url(../images/folder.png); }
423 424 .icon-package { background-image: url(../images/package.png); }
424 425 .icon-home { background-image: url(../images/home.png); }
425 426 .icon-user { background-image: url(../images/user.png); }
426 427 .icon-mypage { background-image: url(../images/user_page.png); }
427 428 .icon-admin { background-image: url(../images/admin.png); }
428 429 .icon-projects { background-image: url(../images/projects.png); }
429 430 .icon-logout { background-image: url(../images/logout.png); }
430 431 .icon-help { background-image: url(../images/help.png); }
431 432 .icon-attachment { background-image: url(../images/attachment.png); }
432 433 .icon-index { background-image: url(../images/index.png); }
433 434 .icon-history { background-image: url(../images/history.png); }
434 435 .icon-feed { background-image: url(../images/feed.png); }
435 436 .icon-time { background-image: url(../images/time.png); }
436 437 .icon-stats { background-image: url(../images/stats.png); }
437 438 .icon-warning { background-image: url(../images/warning.png); }
438 439 .icon-fav { background-image: url(../images/fav.png); }
439 440 .icon-fav-off { background-image: url(../images/fav_off.png); }
440 441 .icon-reload { background-image: url(../images/reload.png); }
441 442 .icon-lock { background-image: url(../images/locked.png); }
442 443 .icon-unlock { background-image: url(../images/unlock.png); }
443 444 .icon-note { background-image: url(../images/note.png); }
444 445
445 446 .icon22-projects { background-image: url(../images/22x22/projects.png); }
446 447 .icon22-users { background-image: url(../images/22x22/users.png); }
447 448 .icon22-tracker { background-image: url(../images/22x22/tracker.png); }
448 449 .icon22-role { background-image: url(../images/22x22/role.png); }
449 450 .icon22-workflow { background-image: url(../images/22x22/workflow.png); }
450 451 .icon22-options { background-image: url(../images/22x22/options.png); }
451 452 .icon22-notifications { background-image: url(../images/22x22/notifications.png); }
452 453 .icon22-authent { background-image: url(../images/22x22/authent.png); }
453 454 .icon22-info { background-image: url(../images/22x22/info.png); }
454 455 .icon22-comment { background-image: url(../images/22x22/comment.png); }
455 456 .icon22-package { background-image: url(../images/22x22/package.png); }
456 457 .icon22-settings { background-image: url(../images/22x22/settings.png); }
457 458 .icon22-plugin { background-image: url(../images/22x22/plugin.png); }
458 459
459 460 /***** Media print specific styles *****/
460 461 @media print {
461 462 #top-menu, #header, #main-menu, #sidebar, #footer, .contextual { display:none; }
462 463 #main { background: #fff; }
463 464 #content { width: 99%; margin: 0; padding: 0; border: 0; background: #fff; }
464 465 }
General Comments 0
You need to be logged in to leave comments. Login now