added page title and changes css of table as suggested in #599. Thanks sk!

git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@636 a4c988fc-2ded-0310-b66e-134b36920a42
This commit is contained in:
lrbalt 2007-11-12 08:07:06 +00:00
parent b17242308e
commit e8ac4f1500
3 changed files with 11 additions and 1 deletions

View file

@ -3,6 +3,7 @@ class DataController < ApplicationController
require 'csv'
def index
@page_title = "TRACKS::Export"
end
def import

View file

@ -10,7 +10,7 @@
</div>
<p>
<table class="users_table">
<table class="export_table">
<tr>
<th>Description</th>
<th>Download link</th>

View file

@ -932,6 +932,15 @@ table.users_table {
.users_table th {color: #fff; background-color: #000;}
.users_table td {border: none;}
table.export_table {
border: 1px solid #666;
background-color: #fff;
border-spacing: 0px;
}
.export_table th {color: #fff; background-color: #000;}
.export_table td {border: 1px; padding: 5px 0px 5px 5px;}
/* Submit button styling from ParticleTree
http://particletree.com/features/rediscovering-the-button-element/ */