Changeset 59

Show
Ignore:
Timestamp:
10/24/06 00:19:02 (2 years ago)
Author:
tim
Message:

committing a status matrix

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/themes/matrix.rhtml

    r53 r59  
    11 
    2 <table> 
     2<div class="bottom"> 
     3<div class="top"> 
     4 
     5 
     6<table id="matrix"> 
    37 <thead> 
    48  <tr> 
     
    1115 <tbody> 
    1216  <% @themes.each do |@theme| %> 
    13    <tr> 
     17   <tr class="<%= cycle('even', 'odd') %>"> 
    1418    <td><%= link_to(@theme.display_name, :controller=>"themes", :action=>"view", :id=>@theme.id) %></td> 
    1519    <% @versions.each do |@version| %> 
     
    2731 </tbody> 
    2832</table> 
     33 
     34</div> 
     35</div> 
  • trunk/public/stylesheets/default.css

    r42 r59  
    165165  border: none; 
    166166} 
     167 
     168.even {  
     169  background-color: #ffffff; 
     170} 
     171 
     172.odd {  
     173  background-color: #f4f4f4; 
     174} 
     175