##// END OF EJS Templates
Removed inline styles....
Jean-Philippe Lang -
r9934:a0b2ab338e0b
parent child
Show More
@@ -14,15 +14,13
14 <%= link_to h(board.name), {:action => 'show', :id => board}, :class => "board" %><br />
14 <%= link_to h(board.name), {:action => 'show', :id => board}, :class => "board" %><br />
15 <%=h board.description %>
15 <%=h board.description %>
16 </td>
16 </td>
17 <td align="center"><%= board.topics_count %></td>
17 <td class="topic-count"><%= board.topics_count %></td>
18 <td align="center"><%= board.messages_count %></td>
18 <td class="message-count"><%= board.messages_count %></td>
19 <td>
19 <td class="last-message">
20 <small>
21 <% if board.last_message %>
20 <% if board.last_message %>
22 <%= authoring board.last_message.created_on, board.last_message.author %><br />
21 <%= authoring board.last_message.created_on, board.last_message.author %><br />
23 <%= link_to_message board.last_message %>
22 <%= link_to_message board.last_message %>
24 <% end %>
23 <% end %>
25 </small>
26 </td>
24 </td>
27 </tr>
25 </tr>
28 <% end %>
26 <% end %>
@@ -238,6 +238,8 table.attributes th { vertical-align: top; text-align: left; }
238 table.attributes td { vertical-align: top; }
238 table.attributes td { vertical-align: top; }
239
239
240 table.boards a.board, h3.comments { background: url(../images/comment.png) no-repeat 0% 50%; padding-left: 20px; }
240 table.boards a.board, h3.comments { background: url(../images/comment.png) no-repeat 0% 50%; padding-left: 20px; }
241 table.boards td.topic-count, table.boards td.message-count {text-align:center;}
242 table.boards td.last-message {font-size:80%;}
241
243
242 table.query-columns {
244 table.query-columns {
243 border-collapse: collapse;
245 border-collapse: collapse;
General Comments 0
You need to be logged in to leave comments. Login now