Changeset 59
- Timestamp:
- 10/24/06 00:19:02 (2 years ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
app/views/themes/matrix.rhtml (modified) (3 diffs)
-
public/stylesheets/default.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/themes/matrix.rhtml
r53 r59 1 1 2 <table> 2 <div class="bottom"> 3 <div class="top"> 4 5 6 <table id="matrix"> 3 7 <thead> 4 8 <tr> … … 11 15 <tbody> 12 16 <% @themes.each do |@theme| %> 13 <tr >17 <tr class="<%= cycle('even', 'odd') %>"> 14 18 <td><%= link_to(@theme.display_name, :controller=>"themes", :action=>"view", :id=>@theme.id) %></td> 15 19 <% @versions.each do |@version| %> … … 27 31 </tbody> 28 32 </table> 33 34 </div> 35 </div> -
trunk/public/stylesheets/default.css
r42 r59 165 165 border: none; 166 166 } 167 168 .even { 169 background-color: #ffffff; 170 } 171 172 .odd { 173 background-color: #f4f4f4; 174 } 175
