diff --git a/db/schema.rb b/db/schema.rb index 025df78..c943a52 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -9,7 +9,7 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 20090114005523) do +ActiveRecord::Schema.define(:version => 20090103012646) do create_table "ansuz_themes", :force => true do |t| t.string "name" @@ -35,9 +35,6 @@ t.datetime "created_at" t.datetime "updated_at" t.string "url" - t.integer "creator_id" - t.integer "updater_id" - t.integer "deleter_id" end create_table "content_section_versions", :force => true do |t| @@ -170,6 +167,7 @@ t.string "name" t.string "title" t.string "full_title" + t.string "status" t.text "body" t.datetime "created_at" t.datetime "updated_at" @@ -180,9 +178,7 @@ t.boolean "published", :default => true t.boolean "linked", :default => true t.boolean "show_sub_menu", :default => false - t.string "status" t.datetime "publish_at" - t.datetime "expires_on" end add_index "pages", ["publish_at"], :name => "index_pages_on_publish_at" @@ -203,11 +199,6 @@ t.string "display_type" end - create_table "plugin_schema_info", :id => false, :force => true do |t| - t.string "plugin_name" - t.integer "version" - end - create_table "posts", :force => true do |t| t.integer "user_id" t.integer "topic_id" diff --git a/public/stylesheets/admin.css b/public/stylesheets/admin.css index 181bcfa..75ae8ad 100644 --- a/public/stylesheets/admin.css +++ b/public/stylesheets/admin.css @@ -457,3 +457,22 @@ ul.admin_actions li{ .blog_post p{ margin-bottom: 1em; } +/* -- tree ---*/ +table.tree tr{ + border: 0 !important; + font-size: 1.4em; + height: 35px !important; + min-height: 35px !important; +} +table.tree tr a{ + font-weight: 600; +} +th.status{ + width: 135px; +} +table.tree tr.even:hover td { + background-color:#fbfbfb !important; +} +table.tree tr.odd:hover td { + background-color:#ebebeb !important; +} \ No newline at end of file