Project

General

Profile

« Previous | Next » 

Revision 808

Sligth changes on my page issue tables and wiki history, changesets tables.

View differences:

trunk/app/views/issues/_list.rhtml
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 %>
trunk/app/views/issues/_list_simple.rhtml
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>
trunk/app/views/repositories/_revisions.rhtml
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>
trunk/app/views/wiki/history.rhtml
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>
trunk/public/stylesheets/application.css
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;}
......
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;}
......
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;

Also available in: Unified diff