diff options
author | francis <francis> | 2007-09-10 19:00:04 +0000 |
---|---|---|
committer | francis <francis> | 2007-09-10 19:00:04 +0000 |
commit | 945e6eb04f925fc1fc1c52467a635885858256c5 (patch) | |
tree | 79e60cdd36e48c718ee7f3294f9edea9e5cfcd53 | |
parent | 2f61ce926c4311ff95597c1c871081a1fb46a4d6 (diff) |
Some files I forgot to add.
-rw-r--r-- | db/migrate/008_request_has_public_body.rb | 9 | ||||
-rw-r--r-- | public/stylesheets/admin.css | 22 | ||||
-rw-r--r-- | todo.txt | 2 |
3 files changed, 31 insertions, 2 deletions
diff --git a/db/migrate/008_request_has_public_body.rb b/db/migrate/008_request_has_public_body.rb new file mode 100644 index 000000000..c7a2e9f34 --- /dev/null +++ b/db/migrate/008_request_has_public_body.rb @@ -0,0 +1,9 @@ +class RequestHasPublicBody < ActiveRecord::Migration + def self.up + add_column :info_requests, :public_body_id, :integer + end + + def self.down + remove_column :info_requests, :public_body_id + end +end diff --git a/public/stylesheets/admin.css b/public/stylesheets/admin.css new file mode 100644 index 000000000..57d31fb24 --- /dev/null +++ b/public/stylesheets/admin.css @@ -0,0 +1,22 @@ +/* FOIFA admin CSS */ + +table { + border-collapse: collapse; +} + +td, th { + border: solid 1px #000000; +} + +tr.odd { + background-color: #bbbbbb; +} + +tr.even { + background-color: #dddddd; +} + +.entry_changed { + font-weight: bold; +} + @@ -1,5 +1,3 @@ - -Store the letter Give a better login dialog public_body_id not set in outgoing_message (maybe not needed) |