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