Removed inline styles.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10117 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
308010c7c9
commit
a0b2ab338e
|
@ -14,15 +14,13 @@
|
||||||
<%= link_to h(board.name), {:action => 'show', :id => board}, :class => "board" %><br />
|
<%= link_to h(board.name), {:action => 'show', :id => board}, :class => "board" %><br />
|
||||||
<%=h board.description %>
|
<%=h board.description %>
|
||||||
</td>
|
</td>
|
||||||
<td align="center"><%= board.topics_count %></td>
|
<td class="topic-count"><%= board.topics_count %></td>
|
||||||
<td align="center"><%= board.messages_count %></td>
|
<td class="message-count"><%= board.messages_count %></td>
|
||||||
<td>
|
<td class="last-message">
|
||||||
<small>
|
|
||||||
<% if board.last_message %>
|
<% if board.last_message %>
|
||||||
<%= authoring board.last_message.created_on, board.last_message.author %><br />
|
<%= authoring board.last_message.created_on, board.last_message.author %><br />
|
||||||
<%= link_to_message board.last_message %>
|
<%= link_to_message board.last_message %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</small>
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -238,6 +238,8 @@ table.attributes th { vertical-align: top; text-align: left; }
|
||||||
table.attributes td { vertical-align: top; }
|
table.attributes td { vertical-align: top; }
|
||||||
|
|
||||||
table.boards a.board, h3.comments { background: url(../images/comment.png) no-repeat 0% 50%; padding-left: 20px; }
|
table.boards a.board, h3.comments { background: url(../images/comment.png) no-repeat 0% 50%; padding-left: 20px; }
|
||||||
|
table.boards td.topic-count, table.boards td.message-count {text-align:center;}
|
||||||
|
table.boards td.last-message {font-size:80%;}
|
||||||
|
|
||||||
table.query-columns {
|
table.query-columns {
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
|
|
Loading…
Reference in New Issue